Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following table describes the DD statements used in the UCMD Manager for z/OS JCL procedure, above.

ddname

DCB Attributes *

Mode

Description

STEPLIB

DSORG=PO,
RECFM=U

input

Universal Agent load library containing the program being executed.

UNVNLS

DSORG=PO,
RECFM=(F, FB, V, VB)

input

Universal Agent national language support library. Contains message catalogs and code page translation tables.

UNVTRACE

DSORG=PS,
RECFM=(F, FB, V, VB)

output

UCMD trace output.

UNVOUT

DSORG=PS,
RECFM=(F, FB, V, VB)

output

Remote command's stdout file. When the remote command writes to its stdout file, this is the file to which it writes.

UNVERR

DSORG=PS,
RECFM=(F, FB, V, VB)

output

Remote command's stderr file. When the remote command writes to its stderr file, this is the file to which it writes.

UNVIN

DSORG=PS,
RECFM=(F, FB, V, VB)

input

Remote command's stdin file. When the remote command reads from its stdin file, this is the file from which it reads.

SYSPRINT

DSORG=PS,
RECFM=(F, FB, V, VB)

output

Standard output file for the UCMD program. UCMD does not write any messages to SYSPRINT.

SYSOUT

DSORG=PS,
RECFM=(F, FB, V, VB)

output

Standard error file for the UCMD program. UCMD writes its messages to SYSOUT.

...

The following figure illustrates the UCMD Manager for z/OS JCL using the UCMDPRC JCL procedure, above.


Panel
//jobname  JOB CLASS=A,MSGCLASS=X
//STEP1    EXEC UCMDPRC,
//         STDOUT='DISP=SHR,DSN=my.local.file'
//SYSIN    DD  *
 -cmd 'ucopy file' -host dallas -userid joe -pwd akkSdiq
\*

...