Available in: Logi Info | Source code name: ProcedureParams | Introduced in: 12.6 |
Sets Procedure-level variables. Set any number of variables by adding attributes to this element.
Set the attribute name to the name of the Procedure variable, and the value to the variable's value.
You then reference the variables later with @Procedure tokens. For example: @Procedure.myProcedureID.myVariable~
The value can be a script formula by entering an equals sign ("=") in the first position. For example if you want to convert the a request variable called Name to upper case, you could create a new ProcedureParam called UpperName. Then enter the value as: =UCase("@Request.Name~") |