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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
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