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.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
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