local-variable-name | specify the name of a local macro variable that contains the output parameter value. The macro variable is set to the output parameter value at the completion of stored process execution. If local-variable-name is omitted, the parameter name is used as the local variable name. The local variable is not set if the stored process fails to set an output parameter value. |
… %let tempVal = 5; %let tempVal2 = 10; %global resultValue; %let resultValue = %eval(&tempVal2 + &tempVal); …