SCENARIO In datasets, quantity fields are automatically rounded to two decimal places when added. For example, if the actual data is “Gold Screw – 0.045 gm” and “Gold Chain – 0.050 gm,” the dataset displays both as 0.05 gm. SOLUTION Apply the formula TO_CHAR({field_id}, ‘9999999990.000’) ‘9999999990.000’ ensures three decimal places are always shown. You can… Continue reading THREE DECIMAL PLACES IN WORKBOOK
Author: Nimmy John
TO DISPLAY THE ASSEMBLY ITEM WITHOUT ITS COMPONENTS IN A TRANSACTION DATASET
REQUIREMENT When creating a dataset for sales orders, you may want to include line items. If a line item contains an assembly item, NetSuite automatically adds both the assembly item and its component items to the dataset. This may give discrepancies as you find totals for certain fields. SOLUTION In order to handle the requirement… Continue reading TO DISPLAY THE ASSEMBLY ITEM WITHOUT ITS COMPONENTS IN A TRANSACTION DATASET
CUSTOM ROLE LOGIN ISSUE
If you’ve created a custom role and assigned it to your account but are unable to log in using that role, what could be the reason? The issue may be due to the role having SSO (Single Sign-On) permissions enabled. If this is the case, you won’t be able to log in using the standard… Continue reading CUSTOM ROLE LOGIN ISSUE
DISPLAYING TIME ELAPSED IN DAYS AND HOURS
What to be done??? Normalize the values with TO_NUMBER and TO_NCHAR, then concatenate them using the following formula: CONCAT(CONCAT(‘Days: ‘,TO_NCHAR(FLOOR(TO_NUMBER(TO_NCHAR({timeelapsed}/24))))), CONCAT(‘ Hours: ‘,TO_NCHAR(MOD(TO_NUMBER(TO_NCHAR({timeelapsed})),24)))) What would be the output??? String
FIND NUMBER OF DAYS TILL DATE FROM A GIVEN DATE IN ANALYTICS
Suppose you have a field in a record which displays date for a perticular event/process. You are required to prepare a report using workbook in which one of the fields is days since the date given in the corresponding record. Say for example) In the sales order record, Order Date = 23-May-2025. I have to… Continue reading FIND NUMBER OF DAYS TILL DATE FROM A GIVEN DATE IN ANALYTICS
Filter Values from a Multi-Select Item Field to a Line (column) Field
To source values from a Multi-Select Field to a Custom Line Field: Step 1: Create a Custom List: 1. Navigate to Customization > List, Records, & Fields > Lists > New. The Custom List page is displayed. 2. In the Name field, enter a name for the list. 3. In the Value field, enter a value for the list. 4. Click Add. 5. Repeat steps 3 and 4… Continue reading Filter Values from a Multi-Select Item Field to a Line (column) Field
How to Allow Non-GL Changes in NetSuite: A Guide
When working with financial data in NetSuite, there are certain changes that impact the General Ledger (GL) and others that do not. In many scenarios, especially for accounting purposes, it’s necessary to update transactions without affecting the General Ledger. This process is known as allowing non-GL changes. Understanding Non-GL Changes in NetSuite “Non-GL changes” refer… Continue reading How to Allow Non-GL Changes in NetSuite: A Guide
Finding the Cost of Goods Sold (COGS) Account on Items
NetSuite provides you a way to assign accounts to an item for things like COGS (Cost of Goods Sold), Asset, Income, and various other accounts. If an item in NetSuite does not have an COGS or Asset account assigned to it, you will not be able to create an order with that item. This means… Continue reading Finding the Cost of Goods Sold (COGS) Account on Items
Troubleshooting connection time out errors
To troubleshoot this connection time out issue, do the following: Ensure that you have NetSuite Connector IP addresses whitelisted. Refer to the list of IP addresses that NetSuite Connector requires to be whitelisted to make a connection, see NetSuite Connector IP Addresses to Safelist (Allowlist). Ensure that your NetSuite Account Number is correct in NetSuite Connector.… Continue reading Troubleshooting connection time out errors
Vendor Credit Using CSV Import
2 CSV files below need to be prepared prior to CSV import then follow the steps provided: Create a CSV file with the following information Primary File contains Internal ID of the Vendor Credit Secondary File contains: Vendor Credit Internal ID Vendor Internal ID Vendor Bill Internal ID Amount to Apply Navigate to Setup > Import/Export > Import CSV Records… Continue reading Vendor Credit Using CSV Import