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

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

PULLTRAN  PROCESS 
                   SNODE=CDSA2
                   SNODEID=(myUserID,myPassword)
                   PNODE=UNIX_NODEA
STEP1     COPY
                FROM  (
                       FILE=/businessprocess/SendTransactions/trans.dat
                       SNODE
                      )
                TO    (
                       FILE=/cust1/orders.txt
                       PNODE
                       DISP=RPL
                       )
 PEND