My Stuff
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.
Comments
-
However there is a disclaimer to this approach. If the results have two fields of same name such as internalid, only the last field called in the nlobjseachcolumn will be available. at which point using getValue or getText is required to specify. But if each column in your search in unique, this works nicely.
-
I like to do this little trick to convert the results into json objects for (var i=0; i < searchResults.length; i++) { var dataObj = JSON.parse(JSON.stringify(searchResults[i])); // Now you can Access fields as JSON object values // Example: dataObj.internalId.internalid or dataObj.internalid.name }
-
I get that issue to when using Chrome or Safari. The issue does not happen when using FireFox