CA Endevor processor failing +BC1PC1PR: F000 ABEND CODE=RECL NUMBER=0001
search cancel

CA Endevor processor failing +BC1PC1PR: F000 ABEND CODE=RECL NUMBER=0001

book

Article ID: 204042

calendar_today

Updated On:

Products

Endevor Endevor Natural Integration Endevor - ECLIPSE Plugin Endevor - Enterprise Workbench

Issue/Introduction

The Endevor processor step gets the following error:

C1X0012I  STEP STRLST INVOKING PROGRAM CONLIST            
C1X0013I  PARM=STORE                                      
C1X0011S  STEP STRLST PROGRAM CONLIST ABENDED, CODE=U0001
C1G0129E  STEP STRLST RC (U0001) EXCEEDS THE MAX RC (0000)

 

 

Environment

Release : 18.0   18.1

Component : CA Endevor Software Change Manager

Cause

A  CODE=RECL NUMBER=0001  indicates that there is a conflict in the DCB LRECL of the input and output files. 

Resolution

In this case the CONLIST step had a C1BANNER temp file with an LRECL of 137:

//C1BANNER DD  UNIT=&TMPUNIT,SPACE=(TRK,(1,1)),                
//             DCB=(RECFM=FBA,LRECL=137,BLKSIZE=6171,DSORG=PS) 

 

The Listing Library being written to had a DCB of -

DSORG=PO RECFM=VBA LRECL=137 BLKSIZE=6233

 
Variable Blocked records require a 4-byte RDW (Record Descriptor Word)  so the maxium size of the logical record is 133. 
 
 
Change the LRECL of C1BANNER to 133