Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
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?