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!
Update Existing Record using SuiteScript
OK - first a confession - I have no idea what I'm doing with SuiteScript !
I'm looking at SuiteAnswer ID 74546 which shows how you can use SuiteScript and Workflow to update an existing Contact Record from a Lead Record.
I want to update a Sales Order Record from details in the Fulfilment Record - so I'm trying to adapt this to work for me.
I'm sure there are multiple things wrong with what I'm trying to do, but this is what I've done:
1. I've updated the script file and uploaded it:
function setSalesOrder() {
var salesorder_id = nlapiGetContext().getSetting('SCRIPT','custscript_salesorder_id');
0