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!
How to get custom field value from saved search
Hello,
We have a saved search that includes a couple of custom fields as columns. We are trying to write a SuiteTalk C# program to use this saved search and display the saved search results on the screen. Fr various reasons we need to do this outside of NetSuite.
We have no problem doing this until we get the columns in the saved search that are from custom fields. We cannot figure out how to get the values from these columns. Is this possible and if so how.
we are using
foreach (ItemSearchRow itmSearchRow in searchResult.searchRowList)
{
string partnum = "";
partnum = itmSearchRow.basic.itemId[0].searchValue;
0