IDIPUT command

You can use the IDIPUT 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 Fault Analyzer, such as the on duty systems operator.

Figure 1. IDIPUT command syntax

1  IDIPUT stem_name

Parameters

stem_name
Specifies the name of a REXX stem variable.

Return codes

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

Example


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