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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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