Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Get Search Result
Hi All,
I am a newbie to webservice using C#.
I am trying to read the result from a saved search which have been created in Netsuite. And use the result to write to an external file.
I have created a saved search in Netsuite with internal ID 226.
this saved search have column item internal ID, Name and Quantity available.
ItemSearchAdvanced itemSearch = new ItemSearchAdvanced(); itemSearch.savedSearchId = "226"; SearchResult result = _service.search(itemSearch);
I have written until this. and i want to get the result and write to a txt file.
I saw there is quite a lot of information how to write the saved search in help topic, but there is no sample to read the created saved search in NetSuite.
0