Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to 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;