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.
Changed functionality of search ops "is" and "equalto"
Has anyone else noticed that searches that used to work with an "is" operator now only work with "equalto"?
e.g. The following search worked for a number of weeks using "is" in the "otherrefnum" filter. According to the reference "is" is the appropriate operator for a "text" field. Sometime over the last week this search now requires "equalto" as shown. "Equalto" is only supposed to work with "Currency,
Decimal Number, Time of Day"
var orderSearch = nlapiSearchRecord('salesorder', null, [
new nlobjSearchFilter('otherrefnum', null, 'equalto', orderId),
new nlobjSearchFilter('trandate', null, 'onorafter', 'weeksago3')]);
0