Suppressing real-time reports

To suppress the writing of any Fault Analyzer reports to the JES spool, you can add the following DD statement to the job or startup procedure:
//IDIREPRT DD DUMMY
Alternatively, an Analysis Control user exit can be used to allocate IDIREPRT to DUMMY, as shown in the following REXX example:
/* REXX */

/*************************************************/
/* Sample Analysis Control user exit to suppress */ 
/* the analysis report.                          */
/*************************************************/
"IDIALLOC DD(IDIREPRT) DUMMY"
exit 0

If the above sample exit existed as member ABC in data set X.Y.Z, then providing the following options in either the IDICNF00 configuration member or the IDIOPTS user options file would cause it to be invoked:

DataSets(IDIEXEC(X.Y.Z))
Exits(CONTROL(REXX(ABC)))

Note that the real-time report is able to be written to the history file, regardless of the above suppression of the JES spool report, and can be viewed from there using the Fault Analyzer ISPF interface.

In a CICS® environment, it is preferable to use the DeferredReport option instead, which is also the default. For details, see DeferredReport.