Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Searching more than 1000 records
I have created this function to get an array of the item list.
var returnCols = [];
returnCols[0] = new nlobjSearchColumn('name');
returnCols[1] = new nlobjSearchColumn('description');
returnCols[2] = new nlobjSearchColumn('manufacturer');
returnCols[3] = new nlobjSearchColumn('price');
returnCols[4] = new nlobjSearchColumn('cost');
itemList = nlapiSearchRecord('item', null, null, returnCols);
However, it is only returning 1000 items and I need it to return the entire collection of items.
The array of items is needed to construct a list of manufacturers as well as a custom built search plugin. (one which allows searching by manufacturer by clicking on a manufacturer in the list).
The search plugin is working except now that there are over 1000 items in the inventory, the plugin can only see the first 1000.