You can move fields and lists (the Contacts list on entry forms, for example) between subtabs on entry forms. After you have made changes on the Custom Form page, click Save & Move Elements to move fields and lists on the form to other subtabs. Note : The Move Form Elements page enables you to move elements… Continue reading Moving Fields and Lists Between Subtabs
Month: May 2024
Response and Supply Planning Tools
To implement effective supply chain response planning to manage today’s complex sources of supply and prevent disruptions, companies need adequately networked solutions. First, companies require increased visibility in the form of clean, accurate data at every step of their supply chains, as well as the ability to analyze that data in a timely manner. Ultimately,… Continue reading Response and Supply Planning Tools
Adjust in Real Time to Supply Chain Issues with NetSuite
The right supply chain management solution can make a world of difference in ensuring that a company is able to anticipate and respond to disruption in its increasingly elaborate supply networks. To continually develop and refine their supply chain response efforts, companies need planning tools that can leverage advanced analytics and optimization algorithms. NetSuite Supply… Continue reading Adjust in Real Time to Supply Chain Issues with NetSuite
How to Respond to Supply Chain Disruption
A more sustainable approach is to invest in agile and repeatable processes for supply chain response planning. By working in conjunction with other partners in the supply network, the organization will set itself up to better analyze trends and anticipate disruption, enabling it to take action based on real-time information. Some investments that can enhance… Continue reading How to Respond to Supply Chain Disruption
Supply Chain Issues and Trends
The challenge of balancing supply chain costs and customer needs is not a new one. But the confluence of a number of trends on both the supply and demand sides has added to the difficulty of achieving a profitable middle ground. Customer expectations are advancing at a quicker rate than ever before, with consumers demanding immediate… Continue reading Supply Chain Issues and Trends
Function to open the popup window for entering the required lot number and quantity for inventory detail..
From the Suitelet page 1, upon clicking the Inventory Detail will open a popup window by using client script. Function used in client script is added below. function showPopupWindow(recValue) { try { let locationId = recValue.getValue({ fieldId: ‘custpage_location’ }); let itemId = recValue.getCurrentSublistValue({ fieldId: ‘custpage_item’, sublistId: ‘item_sublist’ }); let itemName = recValue.getCurrentSublistText({ fieldId: ‘custpage_item’, sublistId:… Continue reading Function to open the popup window for entering the required lot number and quantity for inventory detail..
Use of window.opener in suitelet page.
The values from the child suitelet can be set to the parent suitelet using window.opener. let CS_SCRIPT_PATH = ‘/SuiteScripts/Jobin and Jismi/Credit Memo Vendor Portal MYNE-503/jj_cs_bill_credit_vendor_portal_myne503.js’; const onRequest = (scriptContext) => { try { if (scriptContext.request.method == ‘GET’) { let itemName, itemQuantity, itemLocation, itemId; if (scriptContext.request.parameters.item) { itemName = scriptContext.request.parameters.item; } if (scriptContext.request.parameters.quantity) { itemQuantity =… Continue reading Use of window.opener in suitelet page.
SuiteQL
SuiteQL is a query language based on the SQL-92 revision of the SQL database query language. It provides advanced query capabilities you can use to access your NetSuite records and data, and it supports querying the analytics data source. SuiteQL is currently available using SuiteAnalytics Connect, the N/query module in SuiteScript, and SuiteTalk REST web… Continue reading SuiteQL
Email Reminder of Purchase order pending receipt
SCENARIO The client requires to send mail reminders to creators of PO to receive the PO once its approved. SOLUTION Create a saved search and schedule email to the approver. Go to Report>Saved Search>New Search Select Type of search as Transaction In criteria provide following: Date Created: select relevant date Main Line: True Type: Purchase… Continue reading Email Reminder of Purchase order pending receipt