Page 1 of 1

Confusion about different DD names used in JCL...

Posted: Mon Aug 05, 2013 11:00 am
by Makrand
Hi,

I was going through the JCLs at my system and got the to see following DD names:

Code: Select all

SYSABOUT DD SYSOUT=A 
SYSTSPRT DD SYSOUT=* 
SYSPRINT DD SYSOUT=* 
ABENDAID DD SYSOUT=* 
SYSUDUMP DD SYSOUT=A 
SYSDBOUT DD SYSOUT=A
Please let me know what are they? I don't much about them online.

Re: Confusion about different DD names used in JCL...

Posted: Mon Aug 05, 2013 3:21 pm
by Robert Sample
SYSPRINT -- commonly used for system output
SYSTSPRT -- usually used for output of TSO commands in batch jobs that execute TSO
SYSABOUT -- usually used for abend dump data for old (VS COBOL II) programs
ABENDAID -- used by a third-party vendor (Compuware) for its product dump
SYSUDUMP -- used by z/OS for system dumps if something abends
SYSDBOUT -- was used by the OS/VS COBOL compiler for SYMDMP output many years ago

Re: Confusion about different DD names used in JCL...

Posted: Fri Nov 01, 2013 6:27 pm
by Makrand
Thank you Robert, this is a great help.

Sorry for the late acknowledgement ...