Page 1 of 1

How to write SYSOUT details into the Dataset in JCL

PostPosted: Tue May 12, 2009 11:31 am
by ubabnahom
I am getting abend when the sysout space becomes full..

There is some idea in writing those into the JCL.

I have written like giving dataset name in the SYSOUT = dataset name instead of SYSOUT =*.

I am getting JCL ERROR.

So please advise on the above. Should i put any class details there..?

Re: How to write SYSOUT details into the Dataset in JCL

PostPosted: Tue May 12, 2009 1:30 pm
by dick scherrer
Hello and welcome to the forum,

If the following does not solve the problem, you need to post the jcl for the problem step. The basic replacement dd should be something like:
//yourdd  dd dsn=your.dsn,disp=(new,catlg,delete),unit=sysda,
//           space=(cyl,(10,10),rlse),
//           dcb=(recfm=fba,lrecl=xxx)

Re: How to write SYSOUT details into the Dataset in JCL

PostPosted: Mon Aug 31, 2009 11:49 pm
by Fusion
You can try putting a management class as A and then provide more space -

SORTWK01 DD UNIT=SYSDA,SPACE=(CYL,(100,100),RLSE)
SORTWK02 DD UNIT=SYSDA,SPACE=(CYL,(100,100),RLSE)
SORTWK03 DD UNIT=SYSDA,SPACE=(CYL,(100,100),RLSE)

Re: How to write SYSOUT details into the Dataset in JCL

PostPosted: Tue Sep 01, 2009 3:17 am
by dick scherrer
Hello,

Please explain how a particular management class (i.e. A) would address too large a sysout? Also, keep in mind that management classes are site-specific, not industry standard. . .

How does adding/increasing the sort work space replate to sysout?