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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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