Confusion about different DD names used in JCL...

JES2/3, JCL, utilities.
Post Reply
Makrand
Registered Member
Posts: 25
Joined: Wed Jul 24, 2013 3:14 pm

Confusion about different DD names used in JCL...

Post 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.
User avatar
Robert Sample
Global Moderator
Global Moderator
Posts: 1895
Joined: Fri Jun 28, 2013 1:22 am
Location: Dubuque Iowa
United States of America

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

Post 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
Makrand
Registered Member
Posts: 25
Joined: Wed Jul 24, 2013 3:14 pm

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

Post by Makrand »

Thank you Robert, this is a great help.

Sorry for the late acknowledgement ...
Post Reply

Create an account or sign in to join the discussion

You need to be a member in order to post a reply

Create an account

Not a member? register to join our community
Members can start their own topics & subscribe to topics
It’s free and only takes a minute

Register

Sign in

Return to “JCL - Job Control Language.”