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!
Updating Item Fulfillment shipStatus Not Working
I'm trying to change an Item Fulfillment's shipStatus field from picked to shipped with the code below but it never updates. I checked the SOAP and the SOAP doesn't say anything about the shipStatus getting changed. Is there something wrong with my code?
C#
ItemFulfillment newItemF = new ItemFulfillment();
newItemF.internalId = item.internalId;
newItemF.shipStatus = ItemFulfillmentShipStatus._shipped;
WriteResponse res = _service.update(newItemF);
Thanks,
HH
0