Copy a VSE VSAM File to an HP NonStop Node

This Process copies a VSE VSAM file to an HP NonStop ESDS file. The transfer is initiated by the VSE node. The SYSOPTS SET XLATE ON parameter enables EBCDIC to ASCII translation.

VSE2TAN  PROCESS      PNODE=SC.VSE.NODE1 SNODE=HPNONSTOP.NODE -
                      SNODEID=(123.456,TANUSR)
STEP01   COPY  FROM  (DSN=VSE.TEST.VSAM                       -
                      DISP=RPL                                -
                      DCB=(DSORG=VSAM)                        -
                      PNODE)                                  -
               TO    (DSN=’\$SUP1.TSTPROC.VSETEST’            -
                      DISP=NEW                                -
                      SYSOPTS=\"’SET XLATE ON\                -
                              \ , TYPE=E\                     -
                              \ , REC=100\                    -
                              \ , EXT= (100,100)’"\)          -
                      SNODE)