...
The following patterns are recognized as parameters to be substituted:
%param%
\${param}
Where param
can be
- a task parameter
- an order parameter
- a node parameter
- a JobScheduler parameter
- some special parameter (see below list)
Note: Substitution applies exclusively to the current job run. This means that the values of the parameters will be unchanged after the execution of the job. If you have an order parameter param_x
whose value is value
is \${param_y}
and there are two steps in the job chain, the value of param_x
after the execution of the first node will still be
value
is
is \
${param_y}
Handling of substitution up to release 1.10
...