serobinson Beginner
Joined: 22 Sep 2006 Posts: 11 Topics: 5
|
Posted: Thu Dec 21, 2006 8:12 pm Post subject: file manager change all members in PDS |
|
|
I am using FILE MANAGER to change a certain record length in all the member of PDS, but the results don't look right.
ex: before
Code: |
//ABC DD DSN=ABC.XXX(+1),
// MGMTCLAS=MCMTDR01,
// DISP=(NEW,CATLG,DELETE),
// UNIT=TAPE36,
// VOL=(,,,10),
// DCB=(SYS3.DSCB,TRTCH=COMP,BUFNO=14,
// RECFM=VB,LRECL=4567,BLKSIZE=32760)
|
ex: after
Code: |
ABC DD DSN=ABC.XXX(+1),
MGMTCLAS=MCMTDR01,
DISP=(NEW,CATLG,DELETE),
UNIT=TAPE36,
VOL=(,,,10),
DCB=(SYS3.DSCB,TRTCH=COMP,BUFNO=14,RECFM=VB,LRECL=4704,BLKSIZE=3
DCB=(SYS3.DSCB,TRTCH=COMP,BUFNO=14,RECFM=VB,LRECL=4704,BLKSIZE=3
|
|
|