Use Symbolics in a UNIX Process

This example shows a UNIX Process that uses symbolics to specify the file and data set names at submission. Process accounting data is specified for the pnode and snode.

copyseq  process      snode=dallas
                      pacct="dept-59"
                      sacct="dept-62"
step01   copy  from  (file=&file)
               to    (file=&dsn
                      snode)
  pend

The following submit command specifies the file and data set names to be used in a file transfer.

submit  file=copyseq
        &file=myfile
        &dsn=abc;

The following Process is generated by the previous input:

copyseq  process      snode=dallas
                      pacct="dept-59"
                      sacct="dept-62"
step01   copy  from  (file=myfile)
               to    (file=abcsnode)
  pend