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.
getSublistFields doesn't return list of fields
I am trying to get a list of 'calls' associated with a Support Case record via a Workflow Action Script.
getSublists returns a list of sublist that includes 'calls'. However, I can't get to 'calls'.
What am I missing?
Code snippet:
var rec = record.load({
type: record.Type.SUPPORT_CASE,
id: scriptObj.getParameter({name: 'custscript3'}),
isDynamic: true
});
var mySublists = rec.getSublists();
log.debug({
title: 'Sublists:',
details: mySublists
});
var sublistFields = rec.getSublistFields({ // This is line #38
sublistId: 'calls'
});
log.debug({
title: 'Sublist Fields:',
details: sublistFields
});
The log shows:
Sublists: ["recmachcustrecord_bako_case_no","messages","calls","usernotes","activities","mediaitem","tasks","events","transactions","escalatehist","escalateto","systemnotes","activeworkflows","workflowhistory"]