Catalog sysout to a dataset



JES, JES2, JCL utilities, IDCAMS, Compile & Run JCLs, PROCs etc...

Catalog sysout to a dataset

Postby kvn » Wed Aug 04, 2010 11:56 am

Hi All,

I would like to direct the sysout from a JCL to a dataset. But when cataloged to a dataset only the first couple of displays in the program are coming in the dataset. All the displays are coming correctly when the sysout is directed to the spool. The program is in COBOL and below is the JCL I have used.

//SYSOUT DD DSN=TEST.SOUT1,DISP=(NEW,CATLG,DELETE),
// UNIT=SYSDA,
// DCB=(RECFM=FB,BLKSIZE=0,LRECL=133,DSORG=PS),
// SPACE=(133,(10,5),RLSE),AVGREC=K

Regards,
kvn
Regards,
kvn
kvn
 
Posts: 8
Joined: Thu Jun 03, 2010 4:02 pm
Has thanked: 0 time
Been thanked: 0 time

Re: Catalog sysout to a dataset

Postby steve-myers » Wed Aug 04, 2010 2:27 pm

To me, your JCL looks OK. Since I'm not a Cobol person, I can't say if the linkage between the DCB parameters you used in you JCL statement and the file definition in your program are correct, but that is something we would need to know.

What I do not understand is your terminology. When you say "the first couple of displays in the program" are correct, are you really saying the program stops or fails after the displays, or that there is more output in the data set, but it looks incorrect?
steve-myers
Global moderator
 
Posts: 2105
Joined: Thu Jun 03, 2010 6:21 pm
Has thanked: 4 times
Been thanked: 243 times

Re: Catalog sysout to a dataset

Postby kvn » Wed Aug 04, 2010 2:38 pm

Steve..Thank you for the reply

There are around 50 lines of data in the spool, coming from displays in the program. All these 50 lines are visible in the spool when sysout is directed to spool as //SYSOUT DD SYSOUT=*. However when I run the JCL after cataloging the sysout, only first 5-6 lines of display are coming in the dataset. The JCL/Program ends fine with RC zero.
Regards,
kvn
kvn
 
Posts: 8
Joined: Thu Jun 03, 2010 4:02 pm
Has thanked: 0 time
Been thanked: 0 time

Re: Catalog sysout to a dataset

Postby expat » Wed Aug 04, 2010 3:11 pm

I agree with what Steve has said regarding the DCB parameters and would add that it is usually best to specify no DCB attributes for a dataset that is normally routed to SYSOUT. Obviously there are some exceptions where these parameters are needed, but I tend to find that these are few and far between. Also, SYSOUT would usually be xBA or xBM where x is either F or V.
expat
 
Posts: 459
Joined: Sat Jun 09, 2007 3:21 pm
Has thanked: 0 time
Been thanked: 8 times

Re: Catalog sysout to a dataset

Postby NicC » Wed Aug 04, 2010 7:45 pm

SYSOUT data is not usually 133 bytes long - and DISPLAYs are designed for the terminal so are likely to be 80 bytes long so you should really allocate in tracks rather than record size. For 50 lines 1 track should be sufficient. You also do not need DSORG.
The problem I have is that people can explain things quickly but I can only comprehend slowly.
Regards
Nic
NicC
Global moderator
 
Posts: 3025
Joined: Sun Jul 04, 2010 12:13 am
Location: Pushing up the daisies (almost)
Has thanked: 4 times
Been thanked: 136 times

Re: Catalog sysout to a dataset

Postby steve-myers » Wed Aug 04, 2010 11:47 pm

NicC - I agree DSORG is not really required, but I tend to put it in to make sure system determined blocksize is set during allocation rather than a somewhat chancier implementation in OPEN. Too often something went wrong, so I got in the habit of doing it that way.

RECFM=FBA, LRECL=133 is actually quite common. The IBM 1403 was available in 120 byte and 132 byte line widths. I think the 132 was the more common, but don't quote me on that. Add one byte for the non-printing carriage control character and that's where LRECL=133 comes from.
steve-myers
Global moderator
 
Posts: 2105
Joined: Thu Jun 03, 2010 6:21 pm
Has thanked: 4 times
Been thanked: 243 times


Return to JCL

 


  • Related topics
    Replies
    Views
    Last post