Example 24: Copy source code members without their ISPF standard attributes

        //JOB0024  JOB ...                                                                                            
        //CLEARIT  EXEC PGM=IQIBUTIL                                                                                  
        //STEPLIB  DD DISP=SHR,DSN=IQI.SIQILOAD                                                                       
        //SRCELIB  DD DISP=SHR,DSN=MYDEV.BASE.COBOL                                                                   
        //COPYLIB  DD DISP=SHR,DSN=MYDEV.COPY.COBOL                                                                   
        //SYSIN    DD *                                                                                               
           COPYGRP O=COPYLIB,                                                                                         
               STATS=CLEAR,SKIP=SEQNO,                                                                                
               LIST=YES                                                                                               
           I=((SRCELIB,R))                                                                                            
        /*         

In this example, we copy all source code members into an output library without their record sequence numbers. The copied members will have no ISPF statistics in the output library directory.

Note: DD statements SYSPRINT and IQIBUPRT are omitted, resulting in a dynamic allocation of a SYSOUT data set with DD name IQIBUPRT. This data set will contain all the output normally intended for SYSPRINT.
Note: DD statement IQIBUDFL is omitted. The DSC site-wide default options are either found in PARMLIB member IQIDFLTS or implicitly determined.