TeleFlow BasicScript SettingVariables
From TeleFlow
Setting TeleFlow variables in the Run Basic Script step is accomplished by simply assigning a value to a TeleFlow variable with an '=' sign.
For example, the following line will set (or create, if it doesn't already exist) the global variable @MY_VARIABLE to 5:
- @MY_VARIABLE = 3 + 2
To set or create a local variable using Run Basic Script, use the "LOCAL" tag just prior to the variable name. For example, the following line will create/set local variable @MY_LOCAL_VARIABLE to 6:
- LOCAL @MY_LOCAL_VARIABLE = 3 + 3
Related Steps
