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

Returns the address city.

Input

Output

country

Returns the address country.

Input

Output

county

For countries with regions, returns the address county.

Input

Output

name

Returns the address name.

Input

Output

postcode

Returns the zip code or post code.

Input

Output

single_line_address

Returns the address on a single line.

Input

Output

state

For countries with states, returns the address state.

Input

Output

street

Returns the address street.

Input

Output

Last updated

Was this helpful?