MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

query regarding S722 abend

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Job Control Language(JCL)
View previous topic :: View next topic  
Author Message
pzmohanty
Beginner


Joined: 20 May 2004
Posts: 97
Topics: 43
Location: hyderabad, India

PostPosted: Sat Jul 10, 2004 1:13 am    Post subject: query regarding S722 abend Reply with quote

hi all,

recently while sending a report to sysout , i got S722 abend .
S722 abend means number of records exceeds the default line limitations of SYSOUT.

then i set OUTLIM=999999
as following........
//report1 dd sysout=(4,euryuu),outlim=999999

but still then problem persisted with same S722 abend.

please let me know what should be done to overcome this problem.

Thanx in advance
_________________
Priya Ranjan Mohanty
Consultant
Kanbay Software (I) pvt. Ltd.
Hyderabad
Back to top
View user's profile Send private message Send e-mail Yahoo Messenger
kolusu
Site Admin
Site Admin


Joined: 26 Nov 2002
Posts: 12378
Topics: 75
Location: San Jose

PostPosted: Sun Jul 11, 2004 10:36 pm    Post subject: Reply with quote

Pzmohanty,

Writting a million records to the spool is not a good idea. Remember that the spool is a shared resource , which is used by every job in the system. If every single starts writting a million records to the spool, you are filling up the spool datasets. once you fill up the spool datasets , it not only stops your job, but also every single job in the system.

So every shop has a limit on the no: of lines written by a single job to spool.

To over come this try the following methods:

1.Try writting the report directly to a dataset. i.e allocate a dataset for the sysout DD.
Code:

//REPORT1  DD DSN=YOUR REPORT FILE,
//            DISP=(NEW,CATLG,DELETE),
//            UNIT=SYSDA,
//            SPACE=(CYL,(X,Y),RLSE),
//            DCB=(LRECL=133,RECFM=FBA,BLKSIZE=0)


2. Try writting the report to a different sysout class.i.e

Code:

//REPORT1  DD SYSOUT=A


OR

Code:

//REPORT1  DD SYSOUT=9


Hope this helps...

Cheers

Kolusu
_________________
Kolusu
www.linkedin.com/in/kolusu
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Job Control Language(JCL) All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group