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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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