SetPoolVariable

Sets the value of a pool variable.

If the variable does not exist, it is created. If the variable already exists, it is overwritten.

SYNTAX
SetPoolVariable(poolName, varName, value) 
ARGUMENTS

poolName Pool name
varName Variable name
value Value to set

EXAMPLE
VarName = "Var_"

i = 10

while (i < 10)

   PoolVarName = VarName + i

   SetPoolVariable("System", PoolVarName, i)

   i = i + 1

end-while