HFZPUT command

You can use the HFZPUT command to save the content of a REXX stem variable in the current fault entry. This might be useful if, for example, a Formatting user exit obtains information related to an abend that is not otherwise captured by Z Abend Investigator, such as the on duty systems operator.

Figure 1. HFZPUT command syntax

1  HFZPUT stem_name

Parameters

stem_name
Specifies the name of a REXX stem variable.

Return codes

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

Example


/* REXX */
mydata.0 = 1
mydata.1 = "Duty operator: Fred"
HFZPUT mydata
exit 0