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.
Exception returned from updateList() on SalesOrders
Netsuite is throwing an exception when we try to updateList on an array of SalesOrder objects:
EXCEPTION: com.netledger.dto.NLSoapFault: No data was found
at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
at OrderShipper.NetsuiteWS.NetSuiteService.updateList(Record[] record)
at OrderShipper.Class1.Main(String[] args)
Our code simply sets the internalId and the memo field of a SalesOrder to a value and calls updateList. It's the same code that's been working for almost a year in production. Editing the code to use update() instead of updateList() produces the same error.