Values to associate with choice labels for scripting
-
- UpdatedAug 3, 2023
- 1 minute read
- Vancouver
- Platform Field Administration
When you write a script that references a choice list, you need to know the value that is associated with each choice.
For example, to check whether the incident_state field is active, you could not use the
condition current.incident_state == "active"
because the value associated with
the choice labeled Active is the integer 2.
Instead, you would use the condition current.incident_state == 2
.
The Type field on the choice list dictionary entry determines the data type of the values.
To determine the value associated with a choice, right-click the field label and select Show Choice List, and then locate the choice for which you need to know the value.

- For client-side scripts,such as client scripts: "" (empty string)
- For server-side scripts, such as business rules: "0" (string of the number zero)
Related Content
- System dictionary
The system dictionary is a table, called Dictionary Entry [sys_dictionary], that contains details for each table and the definition for every column on each table in an instance.