Environment variables

Environment variables are used in UI customizations. Depending on the context there are more or less variables available.

Variables can be used in conjunction with other text values, as they are replaced before the text is used or displayed on the UI.

The syntax for variables is:

${variableName}

For example:

Hello ${user.name}

Variables can be used in the following contexts:

  1. In the Search View
    1. Filter Title
    2. Filter Default value
    3. Columns Display name
  2. In the Calendar View:
    1. Filter Title (since 1.5.1)
    2. Filter Default value (since 1.5.1)
  3. In the Frame View
    1. Filter Title (since 1.5.2)
    2. Filter Default value (since 1.5.2)
  4. In the Edit View
    1. Title edit
    2. Input fields of type Link (since 1.5.1)
    3. Default value of input fields (since 1.6.2)

Global variables

Global variables are available throughout the entire system.

Variable nameTypeDescription
user.keyintThe key of the current logged user.
user.namestringThe name of the current logged user.
user.bu.keyintThe business unit key of the current logged user.
user.o.keyintThe organization key of the current logged user.
date.todaydateThe current date
date.nowdatetimeThe current date and time
date.firstDayOfYeardateThe first day of this year.
date.lastDayOfYeardateThe last day of this year.
date.firstDayOfMonthdateThe first day of this month.
date.lastDayOfMonthdateThe last day of this month.
date.firstDayOfLastMonthdateThe first day of last month.
date.lastDayOfLastMonthdateThe last day of last month.
date.firstDayOfWeekdateThe first day of this week.
date.lastDayOfWeekdateThe last day of this week.
date.lastWorkingDayOfWeekdateThe last working day of this week.

Entity variables

Entity variables are available only in the Edit View and are filled with values from the currently edited entity.

Variable nameTypeDescription
keyintThe key of the current entity.
date_createddatetimeThe date and time the current entity was created.
date_updateddatetimeThe date and time the current entity was updated.
id_userintThe key of the user that owns the current entity.
id_business_unitintThe key of the business unit of the current entity.
id_organizationintThe key of the organization of the current entity.
propertyName-All other entity properties. The variable name is actually the property name.

Calendar variables

Calendar variables are available only in the Calendar View for each layer.

Variable nameTypeDescription
view.startDatedatetimeThe start date of the selection.
view.endDatedatetimeThe end date of the selection.