JCL to run DFHMSCAN

To run DFHMSCAN, you need the following JCL:

//SCANJOB  JOB ACCOUNTING INFO,CLASS=A
//SCAN     EXEC PGM=DFHMSCAN,PARM=‘pppppppp’
//STEPLIB  DD DSN=CICSTS31.CICS.SDFHLOAD,DISP=SHR
//INPUT    DD DSN=xxxxxxx.LOADLIB,DISP=SHR
//OUTPUT   DD SYSOUT=A
//SUMMARY  DD SYSOUT=A
//
PARM='pppppppp'
The PARM option of the EXEC statement has two possible values, which specify the processing and the report required:
'$SUMMARY'
The DFHMSCAN program scans every module in the load library, and produces an overall report. This is the default action if PARM is not coded. See Producing a summary report from DFHMSCAN.
'NAME1,NAME2,...'
The DFHMSCAN program scans the named modules and produces a detailed report for each one. See Producing a detailed report from DFHMSCAN.
DSN=xxxxxxx.LOADLIB
"xxxxxxx" is the load module library to be scanned. Only one load module library can be specified.

Related reference
Identify macro-level programs utility program (DFHMSCAN)
How DFHMSCAN works
Producing a summary report from DFHMSCAN
Producing a detailed report from DFHMSCAN
Limitations of the DFHMSCAN program
[[ Contents Previous Page | Next Page Index ]]