Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
web service saved search call- trying to get memberID values in c#
hi i am calling a web service , which is calling a savedsearch.. see below.
soap data is included...
i am trying to get the internalId values in c#.
--------------------this is the C# code call-----------------------------
public List<PBDRaw> SearchItem(string searchId)
{
List<PBDRaw> items = new List<PBDRaw>();
ItemSearchAdvanced _itemSearch = new ItemSearchAdvanced();
_itemSearch.savedSearchId = searchId;
try
{
SearchResult results = _service.search(_itemSearch);
if (results.status.isSuccess)
{
foreach (SearchRow searchRow in results.searchRowList)
{
ItemSearchRow itemSearchRow = (ItemSearchRow)searchRow;
PBDRaw item = new PBDRaw();
if (itemSearchRow.basic != null)
{
item.Name = itemSearchRow.basic.itemId[0].searchValue;
if (itemSearchRow.basic.salesDescription != null)
{
item.Description = itemSearchRow.basic.salesDescription[0].searchValue;