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
Category: NS Integration
All articles / code related to Netsuite integration
create function with object for key-value mapping
/** * Function used to get the internal Id of the currency * @param {string} currency – Zoho Opportunity stage * @returns {number} currencyID – Internal ID of the currency */ function getCurrency(currency) { … Continue reading create function with object for key-value mapping
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
Diffent status code in zoho api calls
The 200 series : OK – HTTP 200 The API request is successful. Created – HTTP 201 Message: record added. Request fulfilled for record insertion. Accepted – HTTP 202 The request has been accepted. Generally, the server takes time to complete the process. No Content – HTTP 204 There is no content available for the… Continue reading Diffent status code in zoho api calls
Fetch and Process Data From ZOHO CRM
In zoho crm integration with NetSuite,we can fetch and process the zoho data using API call. Create a header object for api call: let headerObj = { Authorization: “Zoho-oauthtoken “ + accessToken, “If-Modified-Since”: lastRunTime, … Continue reading Fetch and Process Data From ZOHO CRM
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?
How to upload a Client Certificate in Postman?
To Upload a SSL Certificate in Postman: Go to Settings > Settings > Certificates. Click Add Certificate button. Add Host Upload CRT file from your local system. Upload Key file from your local system.