IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Getting AEIO abend in CICS


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
lalit.bakde

New User


Joined: 12 Jul 2006
Posts: 7

PostPosted: Fri Oct 19, 2007 12:14 pm
Reply with quote

Hi All

While accessing a CICS program from Java frontend I'm
getting AEIO abend. All table entries for the corresponding CICS
program seems to be ok.

Can anybody tell me what/why this abend icon_question.gif
Back to top
View user's profile Send private message
vasanthkumarhb

Active User


Joined: 06 Sep 2007
Posts: 275
Location: Bang,iflex

PostPosted: Fri Oct 19, 2007 1:19 pm
Reply with quote

Hi lalit,




AEIO indicates a duplicate key (DUPKEY) condition.


Regard's
Vasanth...... icon_smile.gif
Back to top
View user's profile Send private message
vasanthkumarhb

Active User


Joined: 06 Sep 2007
Posts: 275
Location: Bang,iflex

PostPosted: Fri Oct 19, 2007 3:10 pm
Reply with quote

Hi,

For more info on all the CICS abend please go thriugh this link.


publib.boulder.ibm.com/infocenter/cicsts/v3r1/index.jsp? topic=/com.ibm.cics.ts31.doc/dfhg4/dfhg4b0015.htm[/url]

Regard's
Vasanth..... icon_smile.gif
Back to top
View user's profile Send private message
lalit.bakde

New User


Joined: 12 Jul 2006
Posts: 7

PostPosted: Fri Oct 19, 2007 5:29 pm
Reply with quote

vasanthkumarhb wrote:
Hi lalit,




AEIO indicates a duplicate key (DUPKEY) condition.


Regard's
Vasanth...... icon_smile.gif


Thanks Vasanth,

Could you please tell me how this abend can be avoided or
what would be the solution to rectify this abend.

Regards,
Lalit
Back to top
View user's profile Send private message
socker_dad

Active User


Joined: 05 Dec 2006
Posts: 177
Location: Seattle, WA

PostPosted: Fri Oct 19, 2007 8:34 pm
Reply with quote

Pardon my simplicity, but since the abend refers to a duplicate key condition, it seems to follow that you may want to check for that condition in the program...perhaps something along the lines of

Code:

EXEC CICS
       HANDLE ABEND option [(label)] .....
END-EXEC.




Or maybe even a check for duplicate key condition (AKA DUPREC?) and handling it within the program rather than allowing it to abend, since that is the default condition that you are obviously hitting.

Does any of this sound familiar? Programming 101.


If you want more specifics, send me your salary and I'll code it for you.
Back to top
View user's profile Send private message
nprathap4u

New User


Joined: 24 Apr 2007
Posts: 15
Location: India

PostPosted: Tue Oct 30, 2007 3:32 pm
Reply with quote

R u using VSAM file..?
If so, it is nothing but duplicate key violation.

U can handle it by using DFHRESP also.
Back to top
View user's profile Send private message
Earl

Active User


Joined: 17 Jun 2007
Posts: 148
Location: oklahoma

PostPosted: Tue Oct 30, 2007 8:35 pm
Reply with quote

fix the source code causing the abend problem, or send the code
to socker-dad along with a check and he will fix for you.

you could intercept the abend in DFHPEP and suppress the CICS dump,
but your Java application will still receive an' abend code.

why not just have your Java application respond with "duplicate"
key , please resubmit" message whenever it receives the AEIO from
CICS program?
Back to top
View user's profile Send private message
lalit.bakde

New User


Joined: 12 Jul 2006
Posts: 7

PostPosted: Thu Nov 01, 2007 6:10 pm
Reply with quote

Thanks to all

This issue is resolved.


Regards,
Lalit
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CICS

 


Similar Topics
Topic Forum Replies
No new posts Using API Gateway from CICS program CICS 0
No new posts ISAM and abend S03B JCL & VSAM 10
No new posts Calling an Open C library function in... CICS 1
No new posts How to 'Ping' a CICS region in JCL CICS 2
No new posts Parallelization in CICS to reduce res... CICS 4
Search our Forums:

Back to Top