Copy a VSE Non-Labeled Tape to a VSE Sequential File

This Process copies the second data set on a non-labeled tape from one VSE node to a sequential file on another VSE node.

VSETAPE  PROCESS      PNODE=SC.VSE.NODE1 SNODE=SC.VSE.NODE2
STEP01   COPY  FROM  (DSN=VSE.NLTAPE                                  -
                      UNIT=CART                                       -
                      DCB=(DSORG=PS,LRECL=80,BLKSIZE=18000,RECFM=FB)  -
                      LABEL=(2,NL)                                    -
                      VOL=SER=123456                                  -
                      PNODE)                                          -
               TO    (DSN=VSE.SEQFILE                                 -
                      UNIT=TAPE                                       -
                      SPACE=(3645,(60))                               -
                      DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=14400)  -
                      DISP=NEW                                        -
                      SNODE)