Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Record.getSublist() for custom sublist
Hello,
I am trying to perform an update using the "Script Debugger" and SS 2.0.
I have a record that is a custom record type, and I am trying to get values from a sublist of that record.
I have the following code:
require(['N/search', 'N/record', 'N/log'], function(search, record, log){ var assetRecord = record.load({ type : 'customrecord_ncfar_asset', id : '132' }); //This assetLists array gives me a sublist with the name 'systemnotes' var assetLists = assetRecord.getSublists(); for (i=0;i<assetLists.length;i++){ log.debug(assetRecord.getSublists()[i]); } //So I try to load that 'systemnotes' sublist var objSublist = assetRecord.getSublist({ sublistId: 'systemnotes' }); //This debug gives an error log.debug(objSublist.id); }); 0