Need to generate a report that will list all packages that were backed-out regardless if the package has been backed-in.
search cancel

Need to generate a report that will list all packages that were backed-out regardless if the package has been backed-in.

book

Article ID: 69546

calendar_today

Updated On:

Products

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

Issue/Introduction

 Need to generate a report that will list all packages that were backed-out regardless if the package has been backed-in.

 

 

 

 

Environment

All Supported releases 

Resolution

Use the CSV List Package ID function. In the data returned, there is a Package Backout/Backin Information section that will indicate if the Package was ever backed out.  

Sample JCL: 

//*----------------------------------------------------------
//*   STEP 1 -- EXECUTE CSV UTILITY                          
//*----------------------------------------------------------
//STEP1     EXEC PGM=NDVRC1,REGION=4M,                       
//         PARM='CONCALL,DDN:CONLIB,BC1PCSV0'                
//STEPLIB  DD DISP=SHR,DSN=YOUR.ENDEVOR.CSIQAUTU             
//         DD DISP=SHR,DSN=YOUR.ENDEVOR.CSIQAUTH             
//         DD DISP=SHR,DSN=YOUR.ENDEVOR.CSIQLOAD             
//PKGSCL   DD DSN=UPRFX.PKG.CSV,                             
//         DISP=(NEW,CATLG,DELETE),                          
//         SPACE=(CYL,(5,50),RLSE),                          
//         DCB=(DSORG=PS,RECFM=VB,LRECL=4092,BLKSIZE=4096)   
//C1MSGS1  DD SYSOUT=*                                       
//BSTERR   DD SYSOUT=*                                       
//BSTIPT01 DD *                                              
LIST PACKAGE ID '*'                                          
 TO DDNAME PKGSCL                                            
.                                                            
                                                             

 

See TEC616102 for information on how to import the CSV generated data into Microsoft EXCEL for reporting.

 

 

 

Additional Information