Set up Inventory Count for items

Inventory count is a feature in NetSuite to track the on-hand item quantities of the item as stock that will reduce overhead costs in the business. Suite answer- 30576, 28061,30577, 28000, 28071 Enable the Inventory count feature Go to Setup > Company > Setup Tasks > Enable Features. Click the Items & Inventory subtab. Check the Inventory Count box. Click Save.… Continue reading Set up Inventory Count for items

Import of bill credit

To import the Bill credit from the raw data prepare the import file in CSV format Sample model To import the file Setup> import/export> Import CSV files Run/ Save and run the import. We can see the import status by checking the job status.

Location import

At the time of data migration, we have to import the locations to the Net suite from the client’s server. To import the location prepare the template for the location. Sample template file. Import the file in to net suite Setup> Import/ export> Import CSV records Select the file that you want to import. Map… Continue reading Location import

Bill Of Material Import

A Bill of Materials (BOM) includes the quantities of raw materials, assemblies, sub-components, and parts needed to manufacture a product. To import the BOM create the BOM template based on the requirement. To import BOM Setup> Import/ Export> Import CSV records. Enter the import type ” Supply chain”, Record Type- “Bill of Material” Add the… Continue reading Bill Of Material Import

Saved Search to see if there are any attachments in the record

The client wants to see a field in the saved search to show whether the record is attached with any files or not. If there is an attachment the field should show “Yes” otherwise the field should show “No” Formula CASE WHEN {custrecord_attached_url_case.internalid} IS NOT NULL THEN ‘YES’ ELSE ‘NO’ END

Import of closed A/R or A/P transactions

When we migrate the transactions from the client’s computer there will be some transactions that are closed ones. To add these transactions we have different methods. We can import these transactions as journal entries. When importing the journal records we have to find out which of the accounts should be added for each transaction. Import… Continue reading Import of closed A/R or A/P transactions

Adding A Week field In The Workbook

The client wants to add a week field in the workbook. The week format should be week number/month/year Solution Add a formula field to see the week. Add the below formula to see the week number. ‘W’||to_char({trandate},’IW’)||’/’||to_char({trandate},’MON’)||’/’||to_char({trandate},’YYYY’)