Organization

The organization object contains information about an organization record.

Organizations in Current RMS are billing entities. They're customers or vendors that you bill.

You can set an organization as a sub-rent supplier and raise a purchase order for them. You can also invoice an organization.

Members

Contacts, organizations, vehicles, venues, and users are all known as members in the database. Members have some shared attributes, along with attributes that are specific to that particular member type.

When you're checking a list of members, you can use the type object to determine what type of member you're working with.

For example, the participants object against an opportunity returns participant objects for any members who are participants on the opportunity. To print only organizations:

<ul>
  {% for participant in order.participants %}
    {% if participant.type == "Organization" %}
      <li>{{ participant.name }}</li>
    {% endif %}
  {% endfor %}
</ul>

Document layouts

The organization object can be accessed in document layouts created against the following modules:

Member

From an organization record:

From a contact record:

Opportunity

To print information about the opportunity's related organization:

To print organizations that are a participant against an opportunity:

To print organizations that are sub-rent suppliers for opportunity items:

To print organizations that are sub-contract suppliers for service bookings:

Project

To print information about the project's related organization:

To print organizations that are a participant against a project:

Purchase order

Where the supplier is an organization:

To print organizations against a purchase order's related contact:

Invoice

To print information about the invoice's related organization:

Quarantine

To print information about the sub-rent supplier against a quarantine:

To print information about the source opportunity's related organization:

To print information about the next opportunity booking's related organization:

Activity

To print information about organizations that are participants against an activity:

Discussion templates

The organization object can be accessed in discussion templates created against the following modules:

Member

From an organization record:

From a contact record:

Opportunity

To print information about the opportunity's related organization:

To print organizations that are a participant against an opportunity:

To print organizations that are sub-rent suppliers for opportunity items:

To print organizations that are sub-contract suppliers for service bookings:

Project

To print information about the project's related organization:

To print organizations that are a participant against a project:

Purchase order

Where the supplier is an organization:

To print organizations against a purchase order's related contact:

Invoice

To print information about the invoice's related organization:

Quarantine

To print information about the sub-rent supplier against a quarantine:

To print information about the source opportunity's related organization:

To print information about the next opportunity booking's related organization:

active_sub_rentals

Returns opportunity item asset objects for active opportunities where this organization is a sub-rent supplier.

Opportunity item assets

activities

Returns activity objects for the activities relating to an organization.

Input

Output

Activity

address

Returns the primary address for an organization.

Input

Output

address_detail

Returns address objects for an organization's primary address.

Input

Output

Address detail

attachments

Returns attachment objects for attachments stored against an organization.

Input

Output

Attachments

contacts

Returns contact objects for linked contacts against an organization.

Input

Output

Contact

description

Returns the description for an organization.

Input

Output

discount_category_name

Returns the discount category name for an organization.

Input

Output

email

Returns the first work email address stored against an organization

Input

Output

emails

Returns email objects for email addresses stored against an organization.

Input

Output

Emails

icon_url

Returns a URL pointing at the organization's picture. The full size image is returned.

Input

Output

image_attachments

Returns attachment objects for attachments stored against an organization. Only returns those that have a file type of image.

Input

Output

Attachments

id

Returns an organization's ID.

The ID is an internal reference for a record. It's not exposed in our web interface.

Input

Output

invoice_term_length

Returns the value of the invoice term type. Typically used with invoice_term_name to print invoice terms on documents.

The term length is the number in the “Terms” field.

Input

Output

invoice_term_name

Returns the invoice term type. Typically used with invoice_term_length to print invoice terms on documents.

The term length is the number in the “Invoice Term Type” field.

Input

Output

invoices

Returns invoice objects for invoices against an organization. All invoices and credits are returned.

Input

Output

Invoice

is_cash?

Returns true where the cash customer toggle is set to YES; false otherwise.

Input

Output

lawful_basis_type_id

Returns the legal basis type ID for an organization.

Type

Legal basis type

11001

Legitimate interest - prospect

11002

Legitimate interest - existing customer

11003

Performance of a contract

11004

Freely given consent

11005

Employee

11006

Unknown

Input

Output

lawful_basis_type_name

Returns an organization's legal basis type name.

You may add legal basis types in System Setup > List of Values.

  • Legitimate interest - prospect

  • Legitimate interest - existing customer

  • Performance of a contract

  • Freely given consent

  • Employee

  • Unknown

Input

Output

live_invoices

Returns invoice objects for invoices against an organization. Only live invoices and credits are returned, i.e those not voiced, paid, or posted.

Input

Output

live_opportunities

Returns opportunity objects for opportunities against an organization. Only live opportunities are returned, i.e those that are open or active.

Input

Output

Opportunity

live_purchase_orders

Returns purchase order objects for purchase orders against an organization. Only live purchase orders are returned.

Input

Output

mobile

Returns an orgnaization's cell phone number. The first telephone number with the type “cell” or “mobile” is returned.

Input

Output

name

Returns the name of an organization.

Input

Output

number

Returns the account number for an organization.

Input

Output

on_stop?

Returns true if the “On Stop” toggle is set to YES against this customer; false otherwise.

Input

Output

opportunities

Returns opportunity objects for opportunities against an organization. All opportunities are returned, regardless of state or status.

Input

Output

Opportunity

phones

Returns telephone objects for telephone numbers listed against the organization.

Input

Output

Phones

price_category_name

Returns the price category against the organization.

Input

Output

purchase_orders

Returns purchase order objects for purchase orders against an organization. All purchase orders are returned.

Input

Output

purchase_tax_class_name

Returns the purchase tax class name against an organization.

Input

Output

rating

Returns a number 0-5 for the star rating against an organization. Typically used to print a star rating.

Input

Output

sale_tax_class_name

Returns the sale tax class name against an organization.

Input

Output

tax_class_name

See: sale_tax_class_name .

tax_number

Returns the tax number against an organization.

Input

Output

telephone

Returns an orgnaization's telephone. The first telephone number with the type “work” is returned.

Input

Output

thumbnail_icon_url

Returns a URL pointing at the organization's picture. A thumbnail size image is returned.

Input

Output

transactions

Returns invoice transaction objects for transactions against invoices for an organization.

Input

Output

Last updated

Was this helpful?