Automatic Location Assignment and Supply Allocation

This article describes how Automatic Location Assignment works along with Supply Allocation When allocating inventory to sales order lines, the Supply Allocation feature considers both current and future inventory. The Automatic Location Assignment (ALA) feature works with the Supply Allocation feature to accelerate and enhance the order fulfillment process: ALA calls Supply Allocation to determine… Continue reading Automatic Location Assignment and Supply Allocation

Convert Total to Words in PDF

Solution Create a custom text field and apply formula for converting the amount to wordsThe formula is given below CASE WHEN {total}=0 THEN ‘ZERO’ELSE TO_CHAR(TO_DATE(TO_CHAR(TRUNC({total}, 0)),’J’),’JSP’) || ‘ ‘ || ‘AND ‘ || (CASE WHEN LENGTH(TO_CHAR(REGEXP_REPLACE({total}, ‘^[0-9]+.’, ”))) = 1 THENTO_CHAR(TO_DATE(TO_CHAR(TRUNC(REGEXP_REPLACE({total}, ‘^[0-9]+.’, ”), 0)*10),’J’),’JSP’) || ‘ ONLY’ELSE TO_CHAR(TO_DATE(TO_CHAR(TRUNC(REGEXP_REPLACE({total}, ‘^[0-9]+.’, ”), 0)),’J’),’JSP’) || ‘  ONLY’END)END Then… Continue reading Convert Total to Words in PDF

AUTOMATION TESTING

Another software testing method is automation testing, which is used some specific tools to execute the test scripts without any human interference. It is the most acceptable way to enhance the efficiency, productivity, and test coverage of Software testing. With the help of an automation testing tool, we can easily approach the test data, handle the test implementation, and compares… Continue reading AUTOMATION TESTING

Custom Module Creation for Button

Creation of custom module for button appearance in records. define([], () => { /** * Description Custom button creation in records */ const createCustomButton = (form,label,functionName) => { form.addButton({ id : ‘custpage_’ + label, label: label, functionName: functionName }) form.clientScriptFileId = 39399; } return {createCustomButton} }); Call the function in script and pass the label… Continue reading Custom Module Creation for Button

Dynamic connection to Excel

Requirement We need to create a Suitelet page to load the saved search and the search results should be loaded to the Excel sheet by connecting Excel to the Netsuite using the Suitelet URL. Suitelet should be respond with CSV file format. Solution We will be creating a suitelet script to load the saved search… Continue reading Dynamic connection to Excel

Displaying the availability of items on a sales order from a warehouse

//Info: CDUS-1010 REQUIREMENT  Would NetSuite be able to show us how many items we have in both warehouses at the same time when we type the SKU? So, when we are entering orders, the system automatically shows us how many items we have in either Miami or Dallas warehouse depending on the primary location or… Continue reading Displaying the availability of items on a sales order from a warehouse