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.
Problem with Server Side script on Custom Record Online External form
I am running into a problem when I run a server side script on an Online External form for a Custom Record. The script basically does a search for contacts and has an if statement to check if matches were returned. Here is what the code looks like:-
--------------------------------------------------------
var filters= new Array(); //set filters....
filters[0]= new nlobjSearchFilter ('firstname',null,'is','Anne',null);
filters[1]= new nlobjSearchFilter ('lastname',null,'is','Jack',null);
var columns= new Array(); //set columns....
columns[0] = new nlobjSearchColumn('title');
var searchresults = nlapiSearchRecord('contact', null, filters, columns ); //perform the search...
//BUG....code does not go into for loop below...!!!!!!