1. Navigate to Reports > Saved Searches > All Saved Searches > New 2. Select Transactions 3. On the Criteria tab > Standard Sub tab: Add the fields —Type = is Credit Memo—Created From: Type = is Invoice—COGS Line = false—Tax Line = false—Shipping Line = false—Main Line = false 4. On the Results tab > Columns sub tab : Click on Remove All button and then Add the… Continue reading How to Show Invoices, Items and Quantity in Saved Search for Credit Memos
Month: October 2022
Access to Custom Records from the Vendor Center
Note : Vendor Center roles by default cannot be customized to be given access to Custom Record Types. Create a custom tab:1. Navigate to Lists > Website > Tabs > New.2. Click New Presentation Tab.2. Enter Name.3. Unmark the Display In Website checkbox.4. Audience tab > Roles > Select Vendor Center.5. Click Save. Create a custom record:1. Navigate to Customization > Lists, Records, & Fields > Record Types > New.2. Enter Name.3. In the Access Type field select Use Permissions List.4. In the Permissions tab > Add Vendor Center with Edit Level.5. Click Save.6.… Continue reading Access to Custom Records from the Vendor Center
Multi-Currency and Credit Limit
Credit Limit is calculated based on the Total of all Currency in the customer record using the exchange rate. Example: 1. Customer have the following currency: a. Primary = USD b. Secondary = Euro C. Exchange Rate = $1 to Euro 0.89 2. Credit Limit = 2,000. 3. Balances: a. USD = 1,000.00 b. EUR… Continue reading Multi-Currency and Credit Limit
Display Customer ID in my account profile information page with title
JIRA code:840 Created a new extension “profile information”. Added customer name in template . Template file: Entry file:
OIUS-226 : Sales Order Approval Workflow
Link : Sales Order Appoval Workflow
Online lead from custom template
This is a custom template That can be used for creating online customer forms in Netsuite. The online customer forms can be used to create a new lead from the website. While submitting the form a lead record will be created on the NetSuite.
css tips
To change this, style the placeholder with the non-standard ::placeholder selector. Example .product-views-option-text-input::placeholder { font-family: ‘Poppins’; color: #000000; } To avoid the issue when clicking a blue hover in mobile an ipad devices.add these style for that coresponding class. -webkit-tap-highlight-color: transparent;outline: none;-ms-touch-action: manipulation;touch-action: manipulation;For example.footer-head {color: #000;font-size: 20px;font-weight: 600;font-family: ‘Poppins’;text-transform: capitalize;-webkit-tap-highlight-color: transparent;outline: none;-ms-touch-action: manipulation;touch-action: manipulation; }
Convert date to format YYYYMMDD
The below function can be used to convert a date value to format YYYYMMDD. function (inputDate) { // convert to YYYYMMDD var date = new Date(inputDate); var d = date.getDate(); var m = date.getMonth() + 1; var y = date.getFullYear() var dateString = (y+(m <= 9 ? ‘0’ + m : m)+(d <= 9 ?… Continue reading Convert date to format YYYYMMDD
FIXED ASSET MANAGEMENT – DEPRECIATION METHODS
❖ A depreciation method must be assigned to each asset so that NetSuite can accurately calculate the depreciation.❖ Common depreciation methods are automatically configured. But we can also create custom methods.❖ When we create assets manually, we can select the specific depreciation method. However, if assets are generated, then the depreciation is automatically pulled from… Continue reading FIXED ASSET MANAGEMENT – DEPRECIATION METHODS
CSS Error Hides First div Element on Product Details Page
Step 1. Override the Item.Details.View.js File To override the Item.Details.View.js file, located in the ItemDetails module, create a directory in which to store your custom modules. For example, Modules/extensions. Open this directory and create a subdirectory to maintain your customizations. Give this directory a name similar to the module being customized. For example, create Modules/extensions/ItemDetailsExtension@1.0.0 In your new ItemDetailsExtension@1.0.0 directory,… Continue reading CSS Error Hides First div Element on Product Details Page