HFZGET command

You can use the HFZGET 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 HFZPUT command during real-time processing.

Figure 1. HFZGET command syntax

1  HFZGET stem_name

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 HFZPUT.

Return codes

The HFZGET command provides the following return codes:
0
Successful completion.
4
An error occurred.

Example


/* REXX */
HFZGET xyz
if rc = 0 then do i = 1 to xyz.0
    say xyz.i      
end                 
exit 0