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

Abend u4094, u4039 & S0C4 in the same job


IBM Mainframe Forums -> ABENDS & Debugging
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Vijay Deshmukh

New User


Joined: 29 Oct 2007
Posts: 5
Location: pune

PostPosted: Mon Oct 29, 2007 3:15 pm
Reply with quote

.AB400A ===== ABEND-AID =====
. REPORT WRITTEN TO: SYS4.ABEND.TEST.HCS.DDIO
. REPORT NUMBER: 010138
. JOB-B0GN1050 STEP-STEP010
. LE COND CODE=CEE3204S / EXPECTED COMP CODE=S0C4


USER COMPLETION CODE=4039 REASON CODE=00000008
TIME=05.53.10 SEQ=38969 CPU=0000 ASID=02FF
PSW AT TIME OF ERROR 078D1000 A3ADC88E ILC 2 INTC 0D
ACTIVE LOAD MODULE ADDRESS=23ADBC38 OFFSET=00000C56


.AB400A ===== ABEND-AID =====
. REPORT WRITTEN TO: SYS4.ABEND.TEST.HCS.DDIO
. REPORT NUMBER: 010139
. JOB-B0GN1050 STEP-STEP010
. ABEND CODE=U4094
.IGD103I SMS ALLOCATED TO DDNAME SYS00005
.IGD104I SYS4.ABEND.HCS.LISTING.DIRECTRY RE
.IGD104I SYS4.ABEND.TEST.HCS.DDIO RE
.IEF285I CA7ANGLD.B0GN1050.JOB07569.D0000148.?
.IEA995I SYMPTOM DUMP OUTPUT
. USER COMPLETION CODE=4094 REASON CODE=00000018
. TIME=05.53.11 SEQ=38970 CPU=0000 ASID=02FF
. PSW AT TIME OF ERROR 078D1000 8FAC0808 ILC 2 INTC
. NO ACTIVE MODULE FOUND
. NAME=UNKNOWN
. DATA AT PSW 0FAC0802 - 00181610 0A0D47F0 B1081811
Back to top
View user's profile Send private message
murmohk1

Senior Member


Joined: 29 Jun 2006
Posts: 1436
Location: Bangalore,India

PostPosted: Mon Oct 29, 2007 3:27 pm
Reply with quote

Vijay,

Generally people tend to provide the problem description without 'spool messages'. Dont you think this is reverse case here?
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Mon Oct 29, 2007 3:48 pm
Reply with quote

all the abends U....

are user abends so everybody should look at the documentation
of the program/product issuing the abend...

anyhow If You had cared to look at the manuals You would have found that...



U4036 is a generic LANGUAGE ENVIRONMENT abend due to percolation

U4094 is the abend which caused the preceding one
X'18' (24)
Storage management could not properly free stack and/or heap storage. This might be due to writing beyond storage.

S0c4 would have been the original abend that was intercepted



I am always puzzled by people using
/irony on
advanced tools like abend aid
/irony off
and finishing asking around for the solution
Back to top
View user's profile Send private message
Vijay Deshmukh

New User


Joined: 29 Oct 2007
Posts: 5
Location: pune

PostPosted: Mon Oct 29, 2007 3:51 pm
Reply with quote

murmohk1 wrote:
Vijay,

Generally people tend to provide the problem description without 'spool messages'. Dont you think this is reverse case here?


yes, but could you please look into problem
Back to top
View user's profile Send private message
Vijay Deshmukh

New User


Joined: 29 Oct 2007
Posts: 5
Location: pune

PostPosted: Mon Oct 29, 2007 3:58 pm
Reply with quote

Vijay Deshmukh wrote:
murmohk1 wrote:
Vijay,

Generally people tend to provide the problem description without 'spool messages'. Dont you think this is reverse case here?


yes, but could you please look into problem


i am agree with you that U4039 reson=8 is due to unhandled codition.

Would you tell me how to solve u 4094 and soc4
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Mon Oct 29, 2007 3:59 pm
Reply with quote

the original S0C4 ... Protection Exception

means that Your program is trying to address storage outside it's allowed bounds,

it matches well with the subsequent U4094

the whole thing hints a storage overlay/corruption...

a wrong input area, a out of bound array move, ...

with no program and no dump, we can only hint

Your company paid for abend aid...
USE IT
Back to top
View user's profile Send private message
Bitneuker

CICS Moderator


Joined: 07 Nov 2005
Posts: 1104
Location: The Netherlands at Hole 19

PostPosted: Mon Oct 29, 2007 7:15 pm
Reply with quote

In addition to whatenrico wrote,

passing a parameterlist while modules have different AMODE (upper (31)/lower (24) memory)
Back to top
View user's profile Send private message
socker_dad

Active User


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

PostPosted: Tue Oct 30, 2007 2:07 am
Reply with quote

Vijay:

I would be glad to look into your problem. Send me the airline ticket and pay my hourly rate of $100 - and that includes travel time.

Let's see - about 20 hours to get to India, 1 hour to fix your problem, then 20 hours home comes to $4,100 dollars US plus airfare.
Back to top
View user's profile Send private message
Vijay Deshmukh

New User


Joined: 29 Oct 2007
Posts: 5
Location: pune

PostPosted: Tue Oct 30, 2007 10:14 am
Reply with quote

socker_dad wrote:
Vijay:

I would be glad to look into your problem. Send me the airline ticket and pay my hourly rate of $100 - and that includes travel time.

Let's see - about 20 hours to get to India, 1 hour to fix your problem, then 20 hours home comes to $4,100 dollars US plus airfare.


Hi all,

Thanks for your realy invaluable suggestions. i have resolved this issue, so stop pondering over it.

Regards
Vijay
Back to top
View user's profile Send private message
Bitneuker

CICS Moderator


Joined: 07 Nov 2005
Posts: 1104
Location: The Netherlands at Hole 19

PostPosted: Tue Oct 30, 2007 4:47 pm
Reply with quote

Could you share the cause and solution with us? After all we spent time into it icon_wink.gif
Back to top
View user's profile Send private message
Vijay Deshmukh

New User


Joined: 29 Oct 2007
Posts: 5
Location: pune

PostPosted: Tue Nov 13, 2007 10:52 am
Reply with quote

Bitneuker wrote:
Could you share the cause and solution with us? After all we spent time into it icon_wink.gif


Hi all,

sorry for very late reply.

Actually one file was not copied properly.

Thank You!
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 -> ABENDS & Debugging

 


Similar Topics
Topic Forum Replies
No new posts ISAM and abend S03B JCL & VSAM 10
No new posts Abend S0C4 11 (Page Translation Excep... PL/I & Assembler 16
No new posts WER999A - UNSUCCESSFUL SORT 8ED U Ab... SYNCSORT 5
No new posts the system or user abend SF0F R=NULL COBOL Programming 0
No new posts Need to get an DLI abend like U0200 IMS DB/DC 2
Search our Forums:

Back to Top