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 Sales Order Status to Deposited
I am new to SuiteTalk.
I am trying to update a sales order status from "Not Deposit" to "Deposit" using .Net
Here's a snippet of my code but it is not updating the status. What am I missing here? Please advise. Thanks
CashSale cs = new CashSale();
cs.internalId = "12345";
cs.status = "_cashSaleDeposited";
WriteResponse response = _service.update(cs);
0