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.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Problem in SearchRecord Length of Schedular Script
Hi All,
we are using schedularScript inorder to Search for Salesorder with filteration on a boolean field whose value is equal to true,so when we do searching on that records on that particular criteria we actually have one record in database but our search result length is always returning a garbage value.
AnyHelp on this is Appreciated.
our code is:
function SCHDSubmit()
{
var filters = new Array();
filters[0] = new nlobjSearchFilter('custbody_exec_location_script', null, 'is', 'T');
var searchresults = nlapiSearchRecord( 'salesorder', null, filters, null);
for (var i = 0; i < searchresults.length ; i++)
{
var result= searchresults[i];
nlapiLogExecution('DEBUG', 'length', searchresults.length);
0