Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
kit items in invoice search results
I did an invoice search in SuiteScript:
var filt = [], col = [], res;
filt.push(new nlobjSearchFilter('tranid', null, 'is', tranid));
col.push(new nlobjSearchColumn('tranid'));
col.push(new nlobjSearchColumn('entity'));
col.push(new nlobjSearchColumn('trandate'));
col.push(new nlobjSearchColumn('item'));
col.push(new nlobjSearchColumn('quantity'));
col.push(new nlobjSearchColumn('amount'));
col.push(new nlobjSearchColumn('otherrefnum'));
col.push(new nlobjSearchColumn('shipto'));
col.push(new nlobjSearchColumn('shiplabel'));
col.push(new nlobjSearchColumn('shipaddressee'));
col.push(new nlobjSearchColumn('shipaddress1'));
col.push(new nlobjSearchColumn('shipaddress2'));
col.push(new nlobjSearchColumn('shipcity'));
col.push(new nlobjSearchColumn('shipstate'));
col.push(new nlobjSearchColumn('shipzip'));
col.push(new nlobjSearchColumn('shipcountry'));