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.
Scripting address records in 2014.2
Has anyone started scripting address records in 2014.2 yet? I'm having a hard time grabbing the data inside these new records.
I have worked with subrecords before, in the case of items and inventory details, but I'm a bit fuzzy on whether addresses are sublist subrecords or body subrecords. Looking at the docs, these two are treated differently.
Here's what I'm trying:
var record = nlapiLoadRecord('customer', id, {recordmode: 'dynamic'}); var noOfAddresses = record.getLineItemCount('addressbook'); for (var i=1; i<=noOfAddresses; i++) { record.selectLineItem('addressbook',i); var addressbookaddress = record.viewCurrentLineItemSubrecord('addressbook','addressbookaddress'); var addr1 = addressbookaddress.getCurrentLineItemValue('addressbook', 'addr1'); var addr2 = addressbookaddress.getCurrentLineItemValue('addressbook', 'addr2'); etc, etc. 0