Address detail
The address detail object contains information about addresses entered into Current RMS.
In most cases where you want to access an address, simply use the record‘s address object. For example, to output your company address:
{{ company.addresss }}If you need to access a particular component of an address, use the address_detail object. For example, to output your company's country:
{{ company.address_detail.country }}The address_detail object always relates to another object. For example, this will not output anything:
{{ address_detail.country }}Prefixing it with company., venue., or another object where address is an object will resolve this.
Opportunities, invoices, and purchase orders have a billing and a delivery address, so use billing_address_detail and delivery_address_detail to access those address components. For example, to print the billing address country on an opportunity document:
{{ order.billing_address_detail.country }}Document layouts
The address_detail object can be accessed in document layouts created against the following modules:
Invoice
Opportunity
Project
Product
Quarantine
Member
Purchase order
Discussion templates
The address_detail object can be accessed discussion templates created against the following modules:
None
Organization
Contact
User account
Venue
Activity
Invoice
Opportunity
Project
Product
Service
Quarantine
Purchase order
city
cityReturns the address city.
Input
{{ company.address_detail.city }}Output
Cypress Creekcountry
country Returns the address country.
Input
{{ company.address_detail.country }}Output
United Statescounty
county For countries with regions, returns the address county.
Input
{{ company.address_detail.county }}Output
Nottinghamshirename
name Returns the address name.
Input
{{ company.address_detail.name }}Output
Globex Corporationpostcode
postcodeReturns the zip code or post code.
Input
{{ company.address_detail.postcode }}Output
90210single_line_address
single_line_addressReturns the address on a single line.
Input
{{ company.address_detail.single_line_address}}Output
333 North Sam Houston Parkway East, Ste 1100, Suite 1100, Houston, TX 77060state
stateFor countries with states, returns the address state.
Input
{{ company.address_detail.state }}Output
Texasstreet
streetReturns the address street.
Input
{{ company.address_detail.street }}Output
15201 Maple Systems RoadLast updated
Was this helpful?