IDIGET command
You can use the IDIGET command to retrieve the content of a REXX stem variable from the current fault entry during reanalysis processing. This might be useful if, for example, a Formatting user exit saved information using the IDIPUT command during real-time processing.
Parameters
- stem_name
- Specifies the name of a REXX stem variable. The name of the stem variable must be the same as the name used with IDIPUT.
Return codes
The IDIGET command provides the
following return codes:
- 0
- Successful completion.
- 4
- An error occurred.
Example
/* REXX */
IDIGET xyz
if rc = 0 then do i = 1 to xyz.0
say xyz.i
end
exit 0