Generating JCL to run the installation verification program
Use the following procedure to verify BMC AMI Ops product installation by running BBAIVP, a batch job that examines load modules. You can also run BBAIVP after applying maintenance to verify the applied maintenance.
Member BBAIVP contains sample JCL that you can use to run program BBAIVP. BBAIVP reports:
- Any modules that are marked as not executable
- Programs that should be marked as re-entrant but are not marked
- Modules that contain unexpected unresolved references
- The library and number of modules that BBAIVP checked
To verify product installation
In BBSAMP member BBAIVP, replace ???????? with your high-level qualifier.The REPORT statement (or a SYSPRINT statement) shown in the following figure specifies the data set for the BBAIVP report. The SYSLIB statement specifies the data set for BBAIVP to check.
//IVP EXEC PGM=BBAIVP
//STEPLIB DD DISP=SHR,DSN=????????.BBLOAD
//REPORT DD SYSOUT=*
//SYSLIB DD DISP=SHR,DSN=????????.BBLINK- Submit BBAIVP for processing.
Check your job output for the following condition codes:
Code
Explanation
00
No errors were found.
08
One or more unresolved references were found (see the report for details).
12
One or more modules were found not marked as re-entrant but should be (see the report for details).
16
An operational error occurred. A message was written to the REPORT file or to SYSLOG.
Related topic