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!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
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
using grouping with filterExpression
can anyone point me towards the correct usage of grouping with a filterExpression?
psuedoLogic: I want to grab the status of several work orders related to the line items on a sales order
currently I have
var lineCount = record.getLineItemCount('item'); var lineData = []; for (var i = 1; i <= lineCount; i++) { woid = record.getLineItemValue('item', 'woid', i); if (woid !== null) { lineData.push({lineid: i, woid: woid}); //filters.push(new nlobjSearchFilter('internalid', null, 'is', woid)); filters.push(['internalid', 'is', woid]); filters.push('or'); } } filters.pop(); var columns = [ new nlobjSearchColumn('tranid'), new nlobjSearchColumn('internalid'), new nlobjSearchColumn('statusref'), ]; var results = nlapiSearchRecord('workorder', null, filters, columns); 0