Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Updating SalesOrder Order and Record Status not working
Hello, I'm trying to update a sales order, using the SuiteTalk API:
//Update sales order test
SalesOrder so = new SalesOrder();
so.internalId = "136782";
so.status = "_pendingBilling";
so.shipDateSpecified = true;
so.orderStatusSpecified = true;
so.orderStatus = SalesOrderOrderStatus._pendingBilling;
var writeResponse = p._service.update(so);
The response I get is:
Message: Invalid orderstatus reference key F.
Code : INVALID_KEY_OR_REF
:h_a_w:
Whenn I comment out so.orderStatus, I get a successful response from the update. However, the status never gets updated. I could not find anything in the documentation nor in the forums, so I'm hoping that someone could help shed some light as to what I may be missing. Also, the following are my preferences: