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!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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