Copy a z/OS Sequential Data Set or PDS to a VSE-Controlled Tape Data Set

This Process copies either a z/OS sequential data set or a z/OS partitioned data set into a CA-DYNAM/T or CA-EPIC non-controlled tape data set. The input resides on z/OS and the output file is written to tape (or cartridge) on VSE.

ZOS2DYT1 PROC    SNODE=SC.OS390.NODE0                                          -
                 PNODE=SC.VSE21.USER01
STEP0001 COPY  FROM ( SNODE                                                    -
                    DSN=RPITT1.LARGE.OS390.FILE                                -
                    DISP=SHR                                                   -
                    )                                                          -
               TO   ( PNODE                                                    -
                    DSN=USER01.TEST.NONDYNAM                                   -
                    UNIT=TNOASGN                                               -
                    LABEL=(1,SL)                                               -
                    DISP=(NEW,CATLG)                                           -
                    DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=1600)              -
                    )