Tiina Böös
03/19/2026, 11:47 AMCeligo AI
03/19/2026, 11:47 AMAI generated answer (using internal Slack threads):Based on the provided Slack threads, it seems that the users are discussing how to query and access custom records in NetSuite, but there is no specific mention of finding custom record instances that have a value in a name translation. However, to find custom record instances that have a value in a name translation, you would typically use a search operation in SuiteScript. You would create a search on the custom record type, and add a filter to check if the name translation field is not empty. Here is a general example of how you might do this:
javascript
var mySearch = search.create({
type: 'customrecord_my_custom_record',
filters: [
['nametranslation', 'isnotempty', '']
],
columns: ['internalid', 'nametranslation']
});
mySearch.run().each(function(result) {
// Process each record that has a value in the name translation field
return true;
});
Please replace 'customrecord_my_custom_record' with your actual custom record type ID. This script will return all instances of the custom record that have a value in the name translation field.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
03/19/2026, 11:48 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.783325315
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.780029416
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.778503478
Celigo AI
03/19/2026, 11:48 AM