View previous topic :: View next topic
|
Author |
Message |
danik56
New User
Joined: 08 Mar 2017 Posts: 56 Location: Israel
|
|
|
|
When running DFHCSDUP at 5.6 level, to extract RDO group into seq file, the job fails with following error.
IGZ0035S There was an unsuccessful OPEN or CLOSE of file CBDOUT in program BDEFCSD at relative location X'DC0'.
Neither FILE STATUS nor an ERROR declarative were specified. The status code was 96.
From compile unit BDEFCSD at entry point BDEFCSD at compile unit offset +00000DC0 at entry offset +00000DC0 at address 000A5DC0.
The CBDOUT DD is defined in JCL and I can see it was allocated by SMS |
|
Back to top |
|
|
Garry Carroll
Senior Member
Joined: 08 May 2006 Posts: 1205 Location: Dublin, Ireland
|
|
|
|
If the file is correct in JCL, have you checked the DCB ?
Can you show your JCL ?
Garry. |
|
Back to top |
|
|
danik56
New User
Joined: 08 Mar 2017 Posts: 56 Location: Israel
|
|
|
|
//STEP1 EXEC PGM=DFHCSDUP,REGION=0M,
// PARM='CSD(READONLY),PAGESIZE(60),NOCOMPAT'
//STEPLIB DD DSN=DFH560.CICS.SDFHLOAD,DISP=SHR
// DD DSN=CEE.SCEERUN2,DISP=SHR
// DD DSN=CEE.SCEERUN,DISP=SHR
//DFHCSD DD DISP=SHR,DSN=DFH560.CICS.DFHCSD
//CDBOUT DD DISP=NEW,DSN=EXTRACT.Z2CSD.DATASET,
// DCB=(RECFM=F,LRECL=80),
// SPACE=(TRK,(1,1)),UNIT=SYSDA
//*
//SYSPRINT DD SYSOUT=A
//SYSABOUT DD SYSOUT=A
//SYSIN DD * |
|
Back to top |
|
|
Garry Carroll
Senior Member
Joined: 08 May 2006 Posts: 1205 Location: Dublin, Ireland
|
|
|
|
//CDBOUT DD DISP=NEW,DSN=EXTRACT.Z2CSD.DATASET,
should be
//CBDOUT DD DISP=NEW,DSN=EXTRACT.Z2CSD.DATASET,
Garry |
|
Back to top |
|
|
danik56
New User
Joined: 08 Mar 2017 Posts: 56 Location: Israel
|
|
|
|
Thanks...This was easy....stupid mistake on my part.. |
|
Back to top |
|
|
Garry Carroll
Senior Member
Joined: 08 May 2006 Posts: 1205 Location: Dublin, Ireland
|
|
|
|
It's caught me out several times
Garry. |
|
Back to top |
|
|
|