[OT] JCL DD name for CEE msgs?

docdwarf_at_panix.com
Date: 12/30/03


Date: 30 Dec 2003 10:56:06 -0500


All righty... environment's IBM mainframe and I'm looking for a DD
statement to redirect various Language Environment messages. The
jobstream contains a //SYSOUT DD SYSOUT=A for the program's counters
(DISPLAYed) but now we're getting CEE9999I informational messages and
other... stuff interspersed with them; what used to be a SYSOUT of:

BEGIN PROGNAME

TIME/DATE COMPILED = (stuff)
CURRENT DATE = (date)

TOTAL INPUT RECS = 12,345
TOTAL REJECT RECS = 345
TOTAL GOOD RECS = 12,000

... is now something like:

CEE3608I The following messages pertain to the invocation command (trunc)
(other messages)

BEGIN PROGNAME

TIME/DATE COMPILED = (stuff)
CURRENT DATE = (date)

TOTAL INPUT RECS = 12,345
TOTAL REJECT RECS = 345
TOTAL GOOD RECS = 12,000

Storage Report for Enclave PROGNAME 12/30/03 10:30:49 AM
Language Environment V02 R10.00

    STACK statistics:
      Initial size: 524288
      Increment size: 524288
      Maximum used by all concurrent threads: 5040
(other messages)

... and this, of course, changes the appearance of the DISPLAY reports
that people have been used to seeing since 1900.

I've tried:

//CEEMSG DD SYSOUT=A
//CEEMSGS DD SYSOUT=A
//CEEOUT DD SYSOUT=A

... all to no effect; might someone be able to tell me where I can look to
find the DDname that will segregate the Language Enironment messages from
the program's SYSOUT?

Thanks much.

DD