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.
Add Item to Sales Order
I am New to Scripting but feel I am getting close to my solution.
Am trying to build an Action Script to add an Item to a Sales Order upon Submit when certain conditions are met in the workflow.
It seems to be triggering correctly under the right conditions but I am getting the following error.
"ReferenceError: "AddItem" is not defined. (AddItemto Order2.js#23)"
Thinking I have just missed something basic.
This is currently my script add the Item to the Sales Order.
function addDiscountLineItem(newRec)
{
var lineCount = newRec.getLineItemCount('item');
nlapiLogExecution('debug','debug','LineCount: '+lineCount);
/*
newRec.setFieldValue('discountitem',15228);
0