Retrieve a File from a B2B Integrator Business Process to Connect:Direct for Microsoft Windows

In this example, the PNODE is a Connect:Direct® for Microsoft Windows server (CDWIN_9) retrieving a file from the SNODE, which is, in this case, a B2B Integrator-Connect:Direct Server Adapter named SI51CDSA. The source file (daily.txt) is copied from the primary document of the RespondToCD business process.The destination file to be created on the IBM® Connect:Direct server is called orders.dat.

PULL2WIN  PROCESS 
                   SNODE=SI51CDSA
                   SNODEID=(myUserID,myPassword)
                   PNODE=CDWIN_9
STEP1     COPY
                FROM  (
                       FILE=/businessprocess/RespondToCD/daily.txt
                       SNODE
                      )
                TO    (
                       FILE=C: ransactions\orders.dat
                       PNODE
                       DISP=RPL
                      )
 PEND