Updating Keyed Sublists in SOAP Web Services

Keyed sublists have an indexing line element or internal ID that can be used as a key. Keyed sublists allow you to set the replaceAll attribute to FALSE to update only the lines you are submitting in your SOAP request. When working with keyed sublists, the value of the replaceAll attribute has the following effects: replaceAll =… Continue reading Updating Keyed Sublists in SOAP Web Services

Get the deleted record data from zoho crm and update the change in NetSuite accordingly.

to fetch the deleted data,we can use Request URL: https://www.zohoapis.com/crm/v2/{module_api_name}/deleted /**       * Defines the function that fetches deleted Zoho data.       * @param {Object} customRecord – The custom record containing Zoho last run information       * @param {string} accessToken – The access token to authenticate with Zoho API       * @param {string} lastRunTime – The last run time… Continue reading Get the deleted record data from zoho crm and update the change in NetSuite accordingly.

Inventory Turnover

What is inventory turnover? Inventory turnover is a measure of the length of time between when inventory was received and used or sold. The shorter the time between these two points, the more efficient and cost-effective the inventory management process is. Inventory that stays on hand for longer than necessary represent costs to the small… Continue reading Inventory Turnover

Inventory Management Strategies for Manufacturing

If manufacturers want to maintain the flow of their supply chains and manufacturing processes, they must precisely monitor and control inventory levels. Their objectives, the industries they engage with, and the goods they sell will all influence how they choose to manage their inventory. The following inventory control techniques help reduce waste and missed opportunities… Continue reading Inventory Management Strategies for Manufacturing

How can I use a Certificate file in NetSuite to sign a HTTP request with Suitescript?

Jira Task : INVER-47 SS2.0 module N/https/clientCertificate holds the answer. Instead of using https.post() use clientCertificate.post() which can send SSL requests with a digital certificate. define([‘N/https/clientCertificate’], /** * @param{clientCertificate} clientCertificate */ (clientCertificate) => { /* 1st create certificate in NetSuite UI (Setup > Pereferences > Certificates) */ const certId = ‘custcertificate_xy’; /* 2nd use certificates… Continue reading How can I use a Certificate file in NetSuite to sign a HTTP request with Suitescript?