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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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