Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
How to access address related fields in transactions via SuiteScript 2.0
Objective
Access address (billingaddress and shippingaddress) related fields in transactions via SuiteScript 2.0
Where can I use this?
If you're creating/updating transactions via SuiteScript 2.0 and you want to access certain address related fields, then this article will help you.
How?
In SuiteScript 2.0, you have to get the address subrecord first with Record.getSubrecord(options) if you're using the N/record module. Its equivalent method in N/currentRecord module is CurrentRecord.getSubrecord(options).
Once you have the subrecord, you can use Record.getValue(options) to get its fields or Record.setValue(options) to set its fields. With N/currentRecord module, you can use