GIM54502E during TSS maintenance apply
search cancel

GIM54502E during TSS maintenance apply

book

Article ID: 235118

calendar_today

Updated On:

Products

Top Secret

Issue/Introduction

The following error was observed when applying a PTF on Top Secret:

GIM54502E ** ALLOCATION FAILED FOR CBAVXML BECAUSE THERE IS NO DD STATEMENT IN THE JCL AND NO DDDEF ENTRY IN TARGET ZONE     
             CAIT0.    

                                                                                                    
   

What are the CBAVXML definitions?           

Environment

Release : 16.0

Component : Top Secret for z/OS

Resolution

CBAVXML DDDEF entry should be defined in the Target zone (usually CAIT0). The dataset definitions for CBAVXML are:

Organization  . . . : PO   
Record format . . . : VB   
Record length . . . : 512  
Block size  . . . . : 32760
1st extent tracks . : 30   
Secondary tracks  . : 30    
Data set name type  : Library  

 

Sample job to do this allocation:

//ALLOCDS  EXEC PGM=IEFBR14                                    

//CBAVXML  DD DISP=(,CATLG),                                   

//         DSN=TSSHLQ.CBAVXML,                                

//         RECFM=VB,LRECL=512,BLKSIZE=27998,                   

//         DSNTYPE=PDS,                                        

//         SPACE=(TRK,(52,5,50))                               

/*                                                             

//SMPE    EXEC PGM=GIMSMP                                      

//SMPCSI  DD DISP=SHR,DSN=tsshlq.CSI                          

//SMPCNTL DD *                                                 

SET BDY(CAIT0). /* CHANGE TO YOUR TARGET ZONE IF DIFFERENT */  

UCLIN.                                                         

ADD DDDEF(CBAVXML)                                             

    DA(TSSHLQ.CBAVXML) SHR .                                  

ENDUCL.