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.
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.
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