Versions Compared

Key

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

...

The following figure illustrates the Universal Message Translator for z/OS JCL.

Panel
//UMET     EXEC PGM=UMET,PARM='-TABLE TABLE'
//STEPLIB  DD  DISP=SHR,DSN=UNV.SUNVLOAD
//SYSPRINT DD  SYSOUT=*
//SYSOUT   DD  SYSOUT=*
//CEEDUMP  DD  SYSOUT=*
//TABLE    DD  DISP=SHR,MY.TRANS.TABLE
//SYSIN    DD  DISP=SHR,MY.MSG.FILE


UMET options are passed in with the PARM keyword on the EXEC statement.

...

The following table describes the DD statements used in the Universal Message Translator for z/OS #JCL, above.


ddname

Description

STEPLIB

Load library in which program UMET is located.

SYSPRINT

UMET standard output ddname.

SYSOUT

UMET standard error ddname.

TABLE

Translation table specified by the -table option on the PARM keyword.

SYSIN

Standard input ddname from which the message file is read.

...