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.
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.
User Event to insert a line in a Sales Order
Hi all
I am hoping someone might be able to point me in the right direction here.
I have an After Submit user event script which works its way up the items list on a Sales Order and inserts a new line item part way up the list based on certain criteria.
I can get to the point where I have loaded the record, and am ready to insert the new line, so I use the following script:
salesOrder.insertLineItem('item', i+1); salesOrder.setCurrentLineItemValue('item', 'item', 5297); salesOrder.setCurrentLineItemValue('item', 'description', 'This is the new line'); salesOrder.commitLineItem('item');I then submit the record.
0