Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
SSS_INVALID_SRCH_OPERATOR error while using nlobjSearchFilter
Hi everyone,
I got a problem with searchfilter in this code.
while running this script it is displaying the error Error: SSS_INVALID_SRCH_OPERATOR
Here in this script i am searching according to some values in some custom item fields to be compared.
var filters = new Array();
filters[0] = new nlobjSearchFilter('custitem5', null, 'is', nlapiGetCurrentLineItemValue('item', 'custcol22'));
filters[1] = new nlobjSearchFilter('custitem6', null, 'is', nlapiGetCurrentLineItemValue('item', 'custcol21'));
filters[2] = new nlobjSearchFilter('custitem3', null, 'is', nlapiGetCurrentLineItemValue('item', 'custcol4'));
filters[3] = new nlobjSearchFilter('custitem2', null, 'is', nlapiGetCurrentLineItemValue('item', 'custcol5'));
// Define search columns
var columns = new Array();
columns[0] = new nlobjSearchColumn('itemid');