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