Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Hash Variables gives users greater flexibility and freedom in accessing useful information or relevant runtime run-time values from the system.

A hash variable is a special hash-escaped keyword that can be used in

...

NameDescription
Prefixform
Description

To get field value from form table.

Attributes
  • #form.tableName.fieldId#
  • #form.tableName.fieldId[recordId]# (Available in 3.1 and above)
Scope of Use
  • In a Process Tool part of a Process.
  • In a Form.
  • In a process design.
Sample Attributes#form.registration.registeredDate# //will use the current record ID
#form.registration.registeredDate[0001]# //0001 is the record ID to seek for
#form.registration.registeredDate[{variable.recordId}]# //using nested Hash Variable with curly bracket.

...