Discussions
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?