|
|
| Author |
Message |
keane
New User
Joined: 24 Jul 2006 Posts: 3
|
|
|
|
i am getting a proble with fb
see the below code
OUTFILE DD DSN=xxx.program.xxxx,
DISP=(NEW,CATLG,DELETE),
DCB=(RECFM=FB,LRECL=133,BLKSIZE=0),
UNIT=TSTDA,SPACE=(TRK,(001,001),RLSE)
In the above code RECFM is fb but it creats the outfile as FBA, i don't know how it is creating with FBA instead of FB, could you please explain |
|
| Back to top |
|
 |
References
|
Posted: Thu Jan 03, 2008 8:17 pm Post subject: Re: How to create a FB and FBA in jcl as well as cobol. |
 |
|
|
 |
Craq Giegerich
Senior Member
Joined: 19 May 2007 Posts: 853 Location: Virginia, USA
|
|
|
|
| keane wrote: |
i am getting a proble with fb
see the below code
OUTFILE DD DSN=xxx.program.xxxx,
DISP=(NEW,CATLG,DELETE),
DCB=(RECFM=FB,LRECL=133,BLKSIZE=0),
UNIT=TSTDA,SPACE=(TRK,(001,001),RLSE)
In the above code RECFM is fb but it creats the outfile as FBA, i don't know how it is creating with FBA instead of FB, could you please explain |
In ypur program you are doing a write after advancing. |
|
| Back to top |
|
 |
|
|
|