Substitution instruction
The substitution functionality in the template language is used to replace text in the template with values from the attached data source. This allows the template to be replaced with actual application data for each specific record.
The substitution statement has the following format:
[n.{FieldName}]
Breakdown of [n.{Substitution}] syntax
Statement Breakdown | Description |
|---|---|
n | The data source number. |
FieldName | Any valid field name for the associated data source. |
IMPORTANT:
- Template language substitutionsIn addition to being replaced within the body of a template, substitutions are also valid in the template language itself:
- Looping queries
- Conditional statements
- Project parametersWith ACM, the project parameters are global to all objects in a specific project. In order to simplify the substitution syntax, project parameters may be accessed directly within the template language.The project parameter syntax is defined as follows:[p.{AnyValidProjectParameterName}]
Provide Feedback