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.
Max number of search filters
I'm currently investigating how to stop a script written by someone else hitting governance limits. The underlying cause is running too many searches, so I'm looking at the feasibility of consolidating these into a single search.
If I add filters from an array as per Netsuite's recommendation, ie.
var itemIntIds = [83,59];
var filters = new Array();
for(j = 0; j < itemIntIds.length; j++){
filters[0] = new nlobjSearchFilter("recordid", null, "anyof", itemIntIds[j]);
}
Is there a limit to how many filters Netsuite will accept?
0