Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
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"]