Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Transform sales order to item fulfillment
Hi
I have done some script already, but right now I am meeting an obstacle. Hope someone can help me out.
My purpose for the script is pretty simple - create item fulfillment record after sales order creation.
the code is as below.
var itemfulfillment = nlapiTransformRecord('salesorder', recordId, 'itemfulfillment');
nlapiSubmitRecord(itemfulfillment);
The script is deployed on "Sales Order" record, and execute "after submit".
My testing sales order is very simple, it has only one line item.
When I run the script, it keeps showing the following message:
You must enter at least one line item for this transaction.
Is anything that I have to do before transform the sales order to item fulfillment?
0