How to determine what release of CA Optimizer/II is initialized on initialized on the LPAR.
search cancel

How to determine what release of CA Optimizer/II is initialized on initialized on the LPAR.

book

Article ID: 262457

calendar_today

Updated On:

Products

Optimizer/II

Issue/Introduction

 The CA Optimizer/II product in running in our environment. How can we confirm which release of CA Optimizer/II is initialized on the LPAR.

Environment

Z/OS

Resolution

A procedure called CAILPAQ is provided to invoke the Initialization Summary program. The Initialization Summary Report displays the CA Optimizer/II load modules loaded
into the CSA at initialization time. The report displays the load modules release level. The JCL is located  in PDS HLQ.CARCPROC

//CAILPAQ  PROC OPTLIB='CAI.CARXLOAD',          * PRODUCT LOAD LIB 
//             SYSOUT='*'                       * SYSOUT CLASS     
//LPAQ     EXEC PGM=CAOULPAQ,REGION=256K                           
//STEPLIB  DD  DISP=SHR,DSN=&OPTLIB                                
//SYSPRINT DD  SYSOUT=&SYSOUT                                      
//         PEND                                                    

You can run the following JCL to produce the report.

//JOBCARD
/LPAQ     EXEC PGM=CAOULPAQ,REGION=256K                             
//STEPLIB  DD  DISP=SHR,DSN=HLQ.CARXLOAD                                  
//SYSPRINT DD  SYSOUT=*