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.
search multiple select field on custom record
I thought this would be really easy to do with Suitescript but I can't get it to work:
I have a custom record called Service Issue - where Case is a parent record to it. So essentially the Service Issue has a multi-select field called Case.
I just want to calculate the number of cases in the Multiple select field within the Service Issue record and populate the value in another field. Thought a scripted search would do the trick.
var current_si = nlapiGetRecordId();
// Service Issue record is 'customrecord36'
var si_filter = new nlobjSearchFilter('id', null, 'is', current_si);
0