Discussions
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?