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.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Retrieving the internalId from a Saved Search result
The following will successfully retrieve the display name for an item record return using a saved search from WSDL 2009.1:
(vb.net below)
DirectCast(DirectCast(searchResult.searchRowList(i), ItemSearchRow).basic.displayName(0), SearchColumnStringField).searchValue
or
(c# below)
((SearchColumnStringField)((ItemSearchRow)searchResult.searchRowList(i)).basic.displayName(0)).searchValue
What would I use to retrieve the Internal Id for that same item record?
Any suggestions would be great, I have not been able to figure it out.
0