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.
Looping in a script
Hi
I am trying to write a script to delete the results of a saved search but its only deleting 500 records and then fails.
Please help.
Here's the script:
"
function executeSavedSearch()
{
var results = nlapiSearchRecord('itemfulfillment', 535, null, null);
var maxrec = 300;
var requeue = false;
var context = nlapiGetContext();
var len = results.length;
if(results == null )
return true;
// If search result length > 300 we want to requeue.
if( results.length >= maxrec)
requeue = true;
if ( len < maxrec ) maxrec = len;
nlapiLogExecution('DEBUG', '-- Search Length= --', len);
// Now go thru each result set of the search and process
for ( var i = 0; results != null && i < len; i++ )