Proper Syntax Values for Conditional Bindings
Proper syntax for a conditional binding is:
cond(<condition 1>;<value 1>;<condition 2>;<value 2>; ...
;<default value>)
For example, the variable AC_CT
can be rebound to the following
expression:
cond(ACCT_INTRL_ID==$ACCOUNT; $AC_CT; $AC_CT + 1)
In this example, the variable AC_CT
is set equal to its current value if
the condition is satisfied (that is, if the attribute ACCT_INTRL_ID
equals the variable $ACCOUNT
and is set to
(AC_CT+1)
).