Printing and viewing dumps

You can print or view the different types of ABEND dumps as follows:

SYSABEND and SYSUDUMP dumps: These two dumps are formatted as they are created. They can be:

Figure 1 shows JCL that uses the IEBPTPCH facility to print a formatted dump data set. In this example, a SYSABEND dump is printed. The same JCL can be used for a SYSUDUMP. Because the system formats the dump when creating it, the IEBPTPCH utility program can print the dump. The dump is in a data set named DUMPDS on tape.

Figure 1. Example: Using IEBPTPCH to print a dump
             ⋮
//PRINT     EXEC  PGM=IEBPTPCH
//SYSPRINT  DD    SYSOUT=A
//SYSUT1    DD    DSN=DUMPDS,UNIT=TAPE,DISP=(OLD,DELETE)
//SYSUT2    DD    SYSOUT=A
//SYSIN     DD    *
   PRINT    PREFORM=A,TYPORG=PS
/*

SYSMDUMP dumps: This dump is unformatted when created. The system can write the dump to tape or direct access. Use IPCS to format the dump and then view it at a terminal or print it. SYSMDUMP dumps are especially useful for diagnosing errors because IPCS can produce specific information for specific requests. See z/OS MVS IPCS User's Guide for more information.