Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
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: