CADSTMIG failed with SB37 on the ARCHVOL dataset
search cancel

CADSTMIG failed with SB37 on the ARCHVOL dataset

book

Article ID: 226598

calendar_today

Updated On:

Products

Dispatch Output Mgmt

Issue/Introduction

When DSEXTMIG ran - the dsnhlq...ARCHVOL dataset encountered a SB37 in the MIGRATE3 step.

Would it be possible on the MIGRATE3 step (portion shown below) to add a space parameter for the ARCHVOL DD?

//MIGRATE3 EXEC PGM=CADSPSAR,REGION=0M,COND=(8,LT,MIGRATE1)   
//STEPLIB  DD DSN=&LOADLIB,DISP=SHR                           
//HELPTEXT DD  DSN=&DSHLQ..HELPTEXT,DISP=SHR                  
//SYSGEN   DD  DSN=&DSHLQ..SYSGEN,DISP=SHR                    
//AR       DD  DSN=&DSHLQ..AR,DISP=SHR                        
//ARM      DD  DSN=&DSHLQ..ARM,DISP=SHR                       
//ARCHVOL  DD DSN=&DSHLQ..ARCHVOL,DISP=(MOD,DELETE,KEEP) 

If this wouldn't work, what can be done to resolve this issue?

Environment

Release : 11.7

Component : CA Dispatch

Resolution

The CADSTMIG proc, as provided by CA, includes the following STEP which is the step you should be executing to allocate your larger ARCHVOL file.

//*------------------------------------------------------------------*
//*  ALLOCATE ARCHVOL DATASET                                         
//*------------------------------------------------------------------*
//MIGRATE2 EXEC PGM=IEFBR14,REGION=2048K,COND=(4,EQ,MIGRATE1)         
//ARCHVOL  DD DSN=&DSHLQ..ARCHVOL,                                    
//            DISP=(,CATLG,CATLG),                                    
//            UNIT=&DSKUNIT,                                          
//            VOL=SER=&WVOL,                                          
//            SPACE=(CYL,(1,1)),                                      
//            DCB=(RECFM=FB,LRECL=10)                                 
//*------------------------------------------------------------------*

Please make sure the CADSTMIG PROC you are executing includes this MIGRATE2 step and increase the SPACE allocation for the ARCHVOL file here to avoid the SB37 abend.