Copy Files from VM to i5/OS

This Process copies a sequential file from a Connect:Direct® for VM node to an i5/OS node. The SYSOPTS parameter specifies that the data is to be copied to the Connect:Direct for i5/OS node as a member of a physical database file. CKPT=0K turns off the checkpointing feature.

TEST      PROCESS      SNODE=OS400                                 -
                       SNODEID=(USER1,PASSWD1)
*************************************************************
* STEP 1 WILL COPY SEQUENTIAL TO SEQUENTIAL ( VM TO OS400)
*************************************************************
STEP1000  COPY  FROM  (PNODE                                       -
                       LINK=(QACD,RQACD,RR,191)                    -
                       DSN=’TESTFILE’                              -
                       DCB=(LRECL=80,RECFM=F,DSORG=PS,BLKSIZE=80)  -
                       DISP=SHR                                    -
                       CKPT=0K                                     -
                TO    (SNODE                                       -
                       DSN=’TEST/PDS(STEP1000)’                    -
                       SYSOPTS=\"\                                 -
                               \ TYPE ( MBR ) \                    -
                               \ MAXMBRS ( *NOMAX ) \              -
                               \ RCDLEN ( 92 ) \                   -
                               \ TEXT ( ’ADDED BY PROCESS TEST \   -
                               \ IN STEP1000’ ) \                  -
                               \"\                                 -
                       DISP=RPL)