GIM40501E APPLYING RO99859?
search cancel

GIM40501E APPLYING RO99859?

book

Article ID: 92962

calendar_today

Updated On:

Products

COMMON SERVICES FOR Z/OS 90S SERVICES Common Services

Issue/Introduction


You have just made an apply check for the PTF RO99859 and you got: 

Error RO99859  CAS9E10  GIM40501E      1   THE DISTLIB IN THE MCS (AAW0ZFS1) FOR SHELLSCR ESMSH DOES NOT MATCH THE DISTLIB VALUE (AEG1SHSC) IN THE SHELLSCR ENTRY FOR ESMSH.

You checked the two DISTLIBS AAW0ZFS1 and AEG1SHSC1. They were allocated with original install JCL values and seem correct.
Both libraries are empty. 

//AEG1SHSC DD DSN=yourHLQL.CCS.R141.AEG1SHSC, 
// DISP=(NEW,CATLG,DELETE), 
// DSNTYPE=PDS, 
// DCB=(BLKSIZE=27998,DSORG=PO,LRECL=255,RECFM=VB), 
// VOL=SER=SYSM06,UNIT=3390, 
// SPACE=(TRK,(5,5,5)) 
//* 

//AAW0ZFS1 DD DSN=yourHLQ.CCS.R141.AAW0ZFS1, 
// DISP=(NEW,CATLG,DELETE), 
// DCB=(LRECL=6140,BLKSIZE=6144,RECFM=VB,DSORG=PO), 
// VOL=SER=SYSM06, 
// SPACE=(CYL,(20,10,20))
 

Why do I have this message applying the PTF RO99859? 

Environment

CA COMMON SERVICES 14.1 - z/OS supported releases - 

Resolution

Did you check the HOLDDATA For RO99859? 

Here are the steps that you have to perform: 

                      *******************************              
                      * STEPS    TO    PERFORM *                         
                      *******************************             
                                                                         
1.  APPLY PTF RO96371 if it has not yet been applied.                    
                                                                         
2.  Execute the "UCLIN" JCL below to change the DISTLIB for ESMSH to AAW0ZFS1.                                                            
                                                                         
3.  APPLY this PTF.                                                      
                                                                         
4.  To ACCEPT this PTF:                                                  
    a.  If RO96371 has not been ACCEPTed, specify both RO96371 and this PTF in the same SELECT statement.                                
    b.  If RO96371 has already been ACCEPTed, specify this PTF only.     
                                                                         
5.  After ACCEPTing this PTF, delete the ESMSH member from the AEG1SHSC distribution data set if it exists.                                  
                                                                         
                      *************************                       
                      *      "UCLIN" JCL       *                         
                      *************************                        
//JOBNAME  JOB (ACCT INFO),'JOB DESC',CLASS=X,                           
//         MSGCLASS=X,NOTIFY=&SYSUID,LINES=9999,TIME=1440                
//********************************************************************   
//*                                                                  *   
//*  This JCL contains statements that changes DISTLIB for ESMSH to  *   
//*  AAW0ZFS1 in the both the Target Zone and Distribution Zone.     *   
//*                                                                  *   
//*  This JCL must be submitted before performing the SMP/E APPLY,   *   
//*  and it must be run after PTF RO96371 has been applied.          *   
//*                                                                  *    
//*  Change the following references in the JCL to the standards     *    
//*  for your site.                                                  *    
//*                                                                  *    
//*  Change the JOB card information above.                          *    
//*                                                                  *    
//*  Change all occurrences of GLOBALHLQ                             *    
//*    to the HLQ for the SMPE CSI where you installed the           *    
//*    Common Services Base.                                         *    
//*                                                                  *    
//*  Change all occurrences of ZNCAIT0                               *    
//*    to the Target Zone name in the CA Common Services CSI.        *    
//*                                                                  *    
//*  Change all occurrences of ZNCAID0                               *    
//*    to the Distribution Zone name in the Common Services CSI.     *    
//*                                                                  *    
//SMPE     EXEC PGM=GIMSMP,REGION=0M,PARM='DATE=U'                        
//*                                                                       
//SMPCSI   DD DISP=OLD,DSN=GLOBALHLQ.CSI                                  
//SMPLOG   DD DUMMY                                                       
//SMPHOLD  DD DUMMY                                                       
//SMPPTFIN DD DUMMY                                                       
//SMPCNTL  DD *                                                           
  SET BDY(ZNCAIT0).                                                       
  UCLIN.                                                                  
  REP SHELLSCR(ESMSH) DISTLIB(AAW0ZFS1) FMID(CAS9E10).                    
  ENDUCL.                                                                 
  SET BDY(ZNCAID0).                                                       
  UCLIN.                                                                  
  REP SHELLSCR(ESMSH) DISTLIB(AAW0ZFS1) SYSLIB(CAW0ZFS1) FMID(CAS9E10).   
  ENDUCL.                                                                 
//*