Copy a File from z/OS to VM

This Process copies a z/OS data set to a file on the 191 disk of VM user IVVB. If the file exists, the IBM® Connect:Direct® system replaces it. If the file does not exist, the IBM Connect:Direct system creates it as indicated by the DISP=RPL parameter.

The following Process illustrates copying a file from z/OS to VM.

ZOSTOVM  PROCESS      SNODE=CD.VM.NODE1        -
                      CLASS=10
STEP01   COPY  FROM  (DSN=SMITH.FDATA          -
                      DISP=SHR                 -
                      UNIT=SYSDA)              -
               TO    (DSN=’TEMP1 OUTPUT’       -
                      LINK=(IVVB,WIVVB,W,191)  -
                      DISP=(RPL))