Discussions
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?