Discussions
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
Updating itemList - How do I update items on a sales order?
I am trying to update an item serial number in a sales order itemlist using web services.
Updating a field at the sales order level (for instance email) is a snap, but there seems to be no way to update an itemList.
Dim so As SalesOrder
so.internalId = myInternalID
so.email = “anyone@anywhere.com”
Dim res = n_Service.update(so)
res returns a successful update. This example works… but how do I get to the items list for an update?
Using this method I can only update fields that are not in any itemlist.
When searching I set _searchPreferences.bodyFieldsOnly = False … this allows me to see an item list. Is there anyone that can give me an example of updating information in that item list using web services? Is this even possible?