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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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