View previous topic :: View next topic |
Author |
Message |
to_agrawals Beginner

Joined: 12 Dec 2002 Posts: 26 Topics: 16
|
Posted: Tue Jul 29, 2003 11:52 pm Post subject: What is SYSOUT=S |
|
|
Hi Team,
Just curious, what does SYSOUT=S signify. I mean where does the output go...?
We have a code which looks like :
Quote: |
//OREPORT1 DD,SYSOUT=&RPT1B20,,
// DCB=(RECFM=FBA,LRECL=133,BLKSIZE=1330)
|
where RPT1B20='S', |
|
Back to top |
|
 |
to_agrawals Beginner

Joined: 12 Dec 2002 Posts: 26 Topics: 16
|
Posted: Tue Jul 29, 2003 11:54 pm Post subject: |
|
|
In addition, just curious, can we specify more than one SYSOUT options for a output...I mean suppose I wish that an output should go to printer and as well get written to a file, what would the sysout look like...??? |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Wed Jul 30, 2003 5:59 am Post subject: |
|
|
to_agrawals,
Code: |
//OREPORT1 DD,SYSOUT=S,
// DCB=(RECFM=FBA,LRECL=133,BLKSIZE=1330)
|
The DD statement OREPORT1 specifies that JES is to write the sysout data set to the device handling class S output. These output classes are shop specific.
Check this link for a detailed explanation of SYSOUT parameter.
see the examples also
Hope this helps...
cheers
kolusu |
|
Back to top |
|
 |
bob_buxton Beginner

Joined: 20 Dec 2002 Posts: 44 Topics: 0 Location: Hampshire, England
|
Posted: Fri Aug 01, 2003 4:32 am Post subject: |
|
|
Look at the // OUTPUT JCL statement which allows you to send multiple copies of a printout to different locations.
If you want both a data set and printout the easiest approach is to write the output to a data set and then have a separate job step to print the data set. _________________ Bob Buxton
Ex Websphere MQ for zOS development |
|
Back to top |
|
 |
|
|