trigger call to external webservice on record change in netsuite
Let’s say I want to add, change, or delete a PO line in NetSuite, and I need another system to know when I do that. How do I go about doing it?
Netsuite suite script not working and not loading iframe content inside Netsuite portlet
Netsuite portlet application not loading my suitescript. My script defined as below
What is the maximum number of lines that can be added to a NetSuite Sales Order via SuiteScript
I’m using a Suitelet to create Sales Orders and want to know how many lines I can add to the Sales Order and still save without getting an error. I know that NetSuite has documented limits for CSV (5000), Web Services (5000), and UI (500), but I am interested in SuiteScript here.
Item Fulfillment – Inventory Detail when setting itemreceive to false
Essentially, I have an existing fulfillment that needs to get updated based on what actually gets shipped from the warehouse. If non of an item are shipped, I need to mark the checkbox itemreceive aka “Fulfill” as false. I’m doing this via suitescript 2.1. When I mark this field, I get the error “Please configure the inventory detail in line 3 of the item list.” I thought perhaps this was an issue with the way I was looping through the lines, but when I tried setting a specific IF explicitly, I still received the same error. Here is the relevant code:
How to fetch Entry Forms (within Customize tab) in NetSuite using REST APIs or Restlets?
I’ve encountered a hurdle where I need to retrieve the ‘Entry Form’ (shown in UI within Customize tab) of type CRM using either REST API or RestLets. My main challenge is locating the record_type corresponding to the Entry Forms. Once I know the record_type of these forms, I can use the services/record/v1/<record_type> REST API, or a SuiteScript RestLet’s ‘N/record’ module to fetch these forms.