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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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