How to create copy of LISTING outside of Endevor
search cancel

How to create copy of LISTING outside of Endevor

book

Article ID: 238769

calendar_today

Updated On:

Products

Endevor

Issue/Introduction

Telon code is currently stored in Endevor.  The extra steps to add the remainder of the code are added to the generate processors.  A copy of the compile is only kept in the list library. 

Some users would like to have a copy of the compile listing in a PDS outside of Endevor.  Is there a way to save a copy to a PDS within the generate step?

Environment

Release : 18.1

Component : Endevor Software Change Manager

Resolution

Within the processor after the compile & link and before the CONLIST step add an IEBGENER step to put listing in a PDS.  

//******************************************************  
//**   IEBGENER TO PUT COBLIST IN PDS                  *  
//******************************************************  
//COPYLST  EXEC PGM=IEBGENER                              
//SYSIN    DD DUMMY                                       
//SYSPRINT DD SYSOUT=*                                    
//SYSUT1   DD DISP=SHR,DSN=&&COBLIST                      
//SYSUT2   DD DISP=SHR,DSN=ipfrx.iqual.LISTING(&MEMBER)    

&&COBLIST can be whatever listing is required to be written out to the PDS.