Perhaps, the name of your user-defined statement is XYZ and it has 2 parameters, 1 input parameter and 1 output, both of string data type. You can then call it like below
Dim myVar1, string, "test input value"
DimMyVar2, string
'call user-defined statement
XZY myVar1, myVar2
' display resulting value
MessageBox MyVar2
: I have a script in the script library with an ouput parameter. How do I
: retrieve the value in my job? I know the output paramter has a value.
: Thanks.
|