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!
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