Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
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'));