| View previous topic :: View next topic |
| Author |
Message |
princeofpersia2 Beginner

Joined: 01 Jun 2006 Posts: 4 Topics: 2
|
Posted: Thu Jun 01, 2006 1:39 pm Post subject: What does RCODE of 02089C mean for READNEXT command in CICS |
|
|
Hi Folks!
Can you please help me with the following. I get this error block when reading a VSAM file
------------------------------------------------------------------------------
1 07:41:49 CIPFPRT C021 ILLOGIC ON READNEXT FBRPFV01 FBC0910
------------------------------------------------------------------------------
EXPANDED APPLICATION INFORMATION: PARA: 0500-UPDATE-FBMCR
APPL ID : COMMENT:
COMMAND REF: 07
PNET TRANID KEY: MMC1 KEY VALUE: 53504572
------------------------------------------------------------------------------
EXPANDED EIB INFORMATION:
AID : 00 FMH : 0 RSRCE :
ATT : 0 FN : READNEXT SIG : 0
CALEN: FREE : 0 SYNC : 0
COMPL: 0 NODAT: 0 SYNRB : 0
CONF : 0 RCODE 02089C TASKN : 9415
CPOSN: RECV : 0 TRMID :
DS : FBRPFV01 REQID: TRNID : MMC1
EOC : 0 RESP : ILLOGIC CICSREL: 0620
ERR : 0 RESP2: 0 DATE : 06152
PF3 - RETURN TO SUMMARY
What does the RCODE of 02089C mean for a READNEXT command? I am not able to locate this information anywhere.
Any kind of help will be most appreciated.
Thanks,
PrinceOfPersia2 _________________ Thanks,
princeofpersia2 |
|
| Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12393 Topics: 75 Location: San Jose
|
Posted: Thu Jun 01, 2006 2:02 pm Post subject: |
|
|
princeofpersia2,
When ILLOGIC or IOERR occurs during file control operations, further information is provided in field EIBRCODE, as shown in Figure 9.
| Code: |
________________________________________________________________________
| |
| .. xx xx xx xx .. BDAM response. |
| .. xx .. .. .. .. VSAM return code. |
| .. .. xx .. .. .. VSAM error code. |
| |
|________________________________________________________________________|
|
where:
byte 3 = VSAM problem determination code (ILLOGIC only)
byte 4 = VSAM component code (ILLOGIC only)
And here is the link for the reason code.
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/DGT2D520/1.3.5.3.2?SHELF=&DT=20050708033618&CASE=
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
| Back to top |
|
 |
princeofpersia2 Beginner

Joined: 01 Jun 2006 Posts: 4 Topics: 2
|
Posted: Thu Jun 01, 2006 2:48 pm Post subject: |
|
|
| kolusu wrote: | princeofpersia2,
When ILLOGIC or IOERR occurs during file control operations, further information is provided in field EIBRCODE, as shown in Figure 9.
| Code: |
________________________________________________________________________
| |
| .. xx xx xx xx .. BDAM response. |
| .. xx .. .. .. .. VSAM return code. |
| .. .. xx .. .. .. VSAM error code. |
| |
|________________________________________________________________________|
|
where:
byte 3 = VSAM problem determination code (ILLOGIC only)
byte 4 = VSAM component code (ILLOGIC only)
And here is the link for the reason code.
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/DGT2D520/1.3.5.3.2?SHELF=&DT=20050708033618&CASE=
Hope this helps...
Cheers
Kolusu |
Hi Kolusu!
I am confused about how to interpret this information. My RCODE value is 02089C that is six characters. Considering that this is hexadecimal format, 02 08 9C.
Now, the file is defined as follows -
/* VSAM CLUSTER DEFINITION OF 05/24/93 */
/* REMOTE POST DATA SET 1 */
/* */
DEL (FSVP.FBSI.FBRPFV01) CL
IF LASTCC = 8 THEN SET MAXCC = 0
DEF CL ( NAME (FSVP.FBSI.FBRPFV01) -
DATACLAS (MULTIVOL) -
CYL(200 20) -
NONINDEXED -
RECORDSIZE (1262 16386) -
CISZ (04096) SPANNED -
SHR(2 3) -
SPEED NOERASE )
and the information you provided talks about
.. xx xx xx xx .. BDAM response.
.. xx .. .. .. .. VSAM return code
.. .. xx .. .. .. VSAM error code.
What does my 02 08 9C correspond to? And how do I make that decision.
Please advise.
Thanks
princeofpersia2 _________________ Thanks,
princeofpersia2 |
|
| Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12393 Topics: 75 Location: San Jose
|
Posted: Fri Jun 02, 2006 7:59 am Post subject: |
|
|
princeofpersia2,
You need to look up for the reason code 9c in the link provided above
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
| Back to top |
|
 |
princeofpersia2 Beginner

Joined: 01 Jun 2006 Posts: 4 Topics: 2
|
Posted: Fri Jun 02, 2006 8:42 am Post subject: |
|
|
Thank You Kolusu!!
princeofpersia2 _________________ Thanks,
princeofpersia2 |
|
| Back to top |
|
 |
|
|
|