Additional information about CA 7 HIPER PTF LU09021
search cancel

Additional information about CA 7 HIPER PTF LU09021

book

Article ID: 260741

calendar_today

Updated On:

Products

CA 7 Workload Automation

Issue/Introduction

Where can additional information be found about CA 7 HIPER PTF LU09021?

The PTF text states "SCHIDs may be dropped when modifying schedules": is there any way to know when this could occur?

Resolution

The drop of SCHIDs could occur when the SCHID has more than 20 elements. In order to list the SCHIDs with more that 20 elements, execute the following JCL:

//STEP1 EXEC PGM=DBSQLPR                                      
//STEPLIB  DD  DISP=SHR,DSN=your.datacom.CUSLIB          >>>>change
//                DD  DISP=SHR,DSN=your.datacom.CAAXLOAD    >>>>change
//SYSPRINT DD SYSOUT=*                                        
//STDOUT DD SYSOUT=*                                          
//OPTIONS DD *                                                
PRTWIDTH=255                                                  
INPUTWIDTH=70                                                 
ROWLIMIT=5000                                                 
AUTHID=MFWA                                                   
NOTYPE                                                        
//SYSIN DD *  
 SELECT SUBSTR(OBJECT_NAME,1,8) AS JOB,
 SCHID, SEQUENCE
 FROM CA7_SCHEDULE_ELM
 WHERE DB= 'your_logical_database_name'       >>>>change
 AND SEQUENCE > 20 ;