|
|
| Author |
Message |
shreedhardeshpande
New User
Joined: 20 Jul 2007 Posts: 2 Location: pune, india
|
|
|
|
I am getting following error along with maxcc=8 while i try to copy VSAM to PS file.
IDC3300I ERROR OPENING P0EM.BPBC.CONTRL.G0275V00
IDC3321I ** OPEN/CLOSE/EOV ABEND EXIT TAKEN
Following is the JCL...............
| Code: |
//PEM080 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=&SOUT
//VSAMFL DD DSN=TSOM.OPDX.CONTRL,DISP=SHR
//SEQNTL DD DSN=P0EM.BPBC.CONTRL(+1),
// DISP=(,CATLG,DELETE),
// UNIT=&CART,
// VOL=(,RETAIN),
// DCB=(GDGDSCB,RECFM=FB,LRECL=180),
// LABEL=(7,SL)
//SYSIN DD *
REPRO INFILE(VSAMFL) OUTFILE(SEQNTL)
|
Interesting thing is that out of 4 times I get this error only for one time. Rest three times it copies successfully and MaxCC will be 0.
Please suggest me how to resolve this issue. Thanks! |
|
| Back to top |
|
 |
References
|
Posted: Thu May 08, 2008 2:05 pm Post subject: Re: Error while copying VSAM to PS |
 |
|
|
 |
Anuj D.
Senior Member
Joined: 22 Apr 2006 Posts: 1345 Location: Mumbai, India
|
|
|
|
Hi,
Why did you use "//" in
| Code: |
| // REPRO INFILE(VSAMFL) OUTFILE(SEQNTL) |
|
|
| Back to top |
|
 |
dbzTHEdinosauer
Senior Member
Joined: 20 Oct 2006 Posts: 1175 Location: germany
|
|
|
|
| Quote: |
IDC3300I ERROR OPENING P0EM.BPBC.CONTRL.G0275V00
//SEQNTL DD DSN=TSOM.BPBC.CONTRL(+1),
|
why do i get the feeling that the OP could not bother to copy the correct info for the post?
POEM.BPBC.CONTRL and TSOM.BPBC.CONTRL
such rookie garbage! |
|
| Back to top |
|
 |
shreedhardeshpande
New User
Joined: 20 Jul 2007 Posts: 2 Location: pune, india
|
|
|
|
| That was a typo mistake. I have coded repro correctly. Can anyone pls suggest how to correct the issue. |
|
| Back to top |
|
 |
Anuj D.
Senior Member
Joined: 22 Apr 2006 Posts: 1345 Location: Mumbai, India
|
|
|
|
Hi,
Syntactically your JOB seems correct, please post full SYSOUT messages of failed JOB, might be some one here would have a suggestion. |
|
| Back to top |
|
 |
gcicchet
Senior Member
Joined: 28 Jul 2006 Posts: 358
|
|
|
|
Hi,
I have one question regarding the JCL, the JCL is calling for a scratch so why are you writing to label 7 and not label 1, if label 6 is not on the scratch volume job will fail.
Gerry |
|
| Back to top |
|
 |
|
|