Running a CA Endevor CONRPT80 Footprint report against a LOADLIB with 3000 load members and get this error:
C1BR3000: E003 FOOTPRINT DATA EXTRACTION FAILED (C1BR3030 RCODE=X'0010')
C1BR1000: E003 DATA EXTRACTION FAILED (C1BR3000 RCODE=X'0010') - PROCESSING TERMINATED
I can ran the report again other LOADLIBs successfully.
The message manual is NOT enlightening..
Checking the JES log found the following error messages -
IEC030I B37-04,IFG0554A,#6580DEJ,REPORTS,BSTPCH,A278,WRKT0M,
SYS18025.T125255.RA000.#6580DEJ.R0178802
ERROR DESCRIPTION: IEC030I
During end-of-volume processing, one of the following occurred: For an
output data set all space was used, or for DASD the maximum extent
limit was reached. Another volume could not be mounted.
END ERROR DESCRIPTION: IEC030I
And -
+ABEND SB37 OCCURRED IN PROGRAM BC1PFOT1
The BSTPCH file ran out of space.
In the CA Endevor CONRPT80 JCL increase the primary and secondary SPACE allocations of BSTPCH from (1,2):
//BSTPCH DD DSN=&TEMP,DISP=(NEW,DELETE,DELETE),
// UNIT=SYSDA,SPACE=(CYL,(1,2)),
// DCB=(RECFM=FB,LRECL=838)
To (10,10) -
//BSTPCH DD DSN=&TEMP,DISP=(NEW,DELETE,DELETE),
// UNIT=SYSDA,SPACE=(CYL,(10,10)),
// DCB=(RECFM=FB,LRECL=838)