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.
attaching new message to existing case
I the following script to auto create support cases:
var newrecord = nlapiCreateRecord( 'supportcase' );
newrecord.setFieldValue( 'assigned', a );
newrecord.setFieldValue( 'company', b );
newrecord.setFieldValue( 'title', c );
newrecord.setFieldValue( 'incomingmessage', d );
var caseid = nlapiSubmitRecord( newrecord, false, true );
// this script will be used in an automated process, hence ignoring mandatory fields and sourcing
This works terrifically, creating a new Case and assigning 'incomingmessage' to a new message attached to the newly created case.
As a followup I tried to attach a second message to the case with the following script:
var record = nlapiLoadRecord( 'supportcase', caseid );
record.setFieldValue( 'incomingmessage', 'All your base are belong to us.' );