Generating the SLIB report
The reporting feature of the runtime unit helps you determine which SLIBs were processed, how they were processed, and when they were last assembled.
To generate the SLIB report
To use the SLIB reporting feature in Batch Execution JCL Generation, perform the following steps:
Add the ddname JGENSRPT to your batch JCL stream in the step that executes AJXBMAIN with a DCB of the following parameters:
//JGENSRPT DD SYSOUT=*,
// DCB=(LRECL=80,BLKSIZE=6160,RECFM=FB,DSORG=PS)Resubmit your job.If you need to produce this report in the foreground, you can use the TSO ALLOC command to allocate the ddname to any data set with RECFM=FB and LRECL=80. An example follows:
TSO ALLOC FI(JGENSRPT) DA('dataSet.name')SHRIn this example, dataSet.name is an existing sequential data set of RECFM=FB and LRECL=80.
The following figure shows a sample runtime report.
Sample runtime report
Usage Compile Compile Usage
Skelname Type Date Time Count
-------- ----- -------- ------- -----
AJX$ACMX Compiled 03/15/2016 11.41 1
AJXJOB0 Compiled 03/15/2016 12.28 1
AJX#USRV Compiled 03/15/2016 11.54 1
AJXJOB5 Compiled 03/15/2016 11.52 1
AJXSTEP1 Compiled 03/15/2016 11.26 1
AJXSTEP7 Compiled 03/15/2016 11.35 1
AJXSTEPU Compiled 03/24/2016 09.21 1
AJXSYSX$ Compiled 03/15/2016 11.51 1
AJXSYSMD Compiled 03/15/2016 12.17 1
AJXSTWK0 Compiled 03/15/2016 12.14 1
AJXSYSTS Compiled 03/15/2016 12.02 1
AJXISPFM Compiled 03/15/2016 11.28 1
AJXCLIBU Compiled 03/15/2016 11.20 1
AJXMLIBU Compiled 03/15/2016 11.56 2
AJXISPFS Compiled 03/15/2016 11.43 1
AJXSLIBU Compiled 03/15/2016 11.24 1
AJXTLIBU Compiled 03/15/2016 11.38 1
AJXPLIBU Compiled 03/15/2016 11.29 1
AJX#PRNT Compiled 03/15/2016 12.26 1
AJXNOSTS Compiled 03/15/2016 12.10 1
AJXWORK0 Compiled 03/15/2016 11.31 1
AJXWORK1 Compiled 03/15/2016 11.16 2
AJXWKUNT Compiled 03/15/2016 12.18 2
AJX#MTAP Compiled 03/15/2016 11.36 9
AJXESTIM Compiled 03/15/2016 12.14 6
AJX#DSNS Compiled 03/15/2016 11.42 5
AJX#SMSP Compiled 03/15/2016 11.25 5
AJXSRTOH Compiled 03/15/2016 11.23 1
AJXSORT2 Compiled 03/15/2016 12.15 1
AJXDISC0 Compiled 03/15/2016 11.30 1
AJXDISC1 Compiled 03/15/2016 11.59 1
AJXDISUT Compiled 03/15/2016 11.59 1
AJXMAP0 Compiled 03/15/2016 11.22 1
AJXMAP1 Compiled 03/15/2016 11.47 1
AJXMAPUT Compiled 03/15/2016 12.16 1
AJXERR0 Compiled 03/15/2016 11.33 1
AJXERR1 Compiled 03/15/2016 11.44 1
AJXERRUT Compiled 03/15/2016 11.19 1
AJXSORT0 Compiled 03/15/2016 11.41 1
AJXSORT1 Compiled 03/15/2016 12.04 5
AJX#SORT Compiled 03/15/2016 11.25 5
AJXSTEP9 Compiled 03/15/2016 12.04 1
AJXJOB9 Compiled 03/15/2016 11.31 1
--------
Totals 75
Number of FTINCLs 20
Number of )IMs 55
SLIBs processed 43
Number of JCLRECs 166
Runtime units lastcc 0
Runtime units maxrc 0The report summary at the end of the above figure provides the information shown in the following table.
Runtime report statistics
Statistic
Description
Number of FTINCLs
Number of file tailoring FTINCL requests
Number of )IMs
Number of imbeds that are encountered when FTINCLs are processed
SLIBs processed
Number of SLIBs
Number of JCLRECs
Number of JCL records
Runtime units lastcc
Last condition code encountered
Runtime units maxrc
Highest return code encountered
Related topic