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

ABENDED S000 U4083 USER 4083 CN(INTERNAL)


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sauraso
Warnings : 1

New User


Joined: 27 Feb 2010
Posts: 16
Location: usa

PostPosted: Fri May 14, 2010 4:14 pm
Reply with quote

I am getting following error

CAPE022I JOB06753 STEP010 ABENDED U4083 IN PROGRAM UNKWN1 AT OFFSET +000000.
CN(INTERNAL)
06.38.52 JOB06753 $HASP165 KAR09JCL ENDED AT PENNJES2 - ABENDED S000 U4083 USER
4083 CN(INTERNAL)
***
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Fri May 14, 2010 4:19 pm
Reply with quote

Quote:
U4083

as already said gazillions times Uxxxx are user abends and their meaning is related to the program being executed

with the info provided little we can do
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri May 14, 2010 4:36 pm
Reply with quote

There almost certainly are more messages that you're giving us. A U4083 abend is most typically a Language Environment error, specifically:
Quote:
U4083 (X'FF3')

Explanation: The back chain was found in error. The reason code describes the most likely cause of the abend.

Reason codes:

X'01' (1)
A save area loop exists. The save area points to itself or another save area incorrectly points to a higher save area.

X'02' (2)
Traversal of the back chain resulted in a program check.

X'03' (3)
Under normal conditions, all save area chains should end with a save area pointed to by CEECAADDSA. In this case, the save area chain terminated with a back chain pointer of 0.

X'04' (4)
Under normal conditions, all save areas are presumed to be word-aligned. Either a linkage stack has been encountered with the character string of "F1SA' (X'C6F1E2C1') in a backward pointer field of the save area chain, or a misaligned (non-word) boundary save area is in the chain. Examine the save area chain to determine which is the case.

X'05' (5)
A condition was raised before the allocation of the main stack frame, or after the main routine terminated.

X'06'(6)
The dsa format was not set to up or down.

X'07'(7)
The save area chain cannot be reached or is non-existent. The pointer referencing the back chain is set to 0 (R13).

X'08'(8)
A save area on the chain points to itself.

X'09'(9)
Under normal conditions, all XPLINK save areas are presumed to be quad-word-aligned (the starting address must end in 0. Either a linkage stack has been encountered with the character string of FISA (X'C6F1E2C1' in a backward pointer field of the save area chain, or a misaligned (non-quad-word) boundary XPLINK save area is in the chain. Examine the save area chain to determine which is the case.

X'0F' (15)
The save area chain is not intact.

Programmer Response: For applications that generate their own save areas, ensure the save areas are chained together correctly; all save areas must be addressable in AMODE(31). It may be helpful to generate a system dump of the original error by using run-time options TERMTHDACT(UAIMM) and TRAP(ON,NOSPIE).

For other types of applications, a storage overlay problem has probably occurred.

System Action: Enclave terminated.
which implies to me that your program is overlaying storage it should not be touching.
Back to top
View user's profile Send private message
anshuljain26

New User


Joined: 04 Apr 2010
Posts: 37
Location: Chandigarh

PostPosted: Sun May 16, 2010 1:42 am
Reply with quote

@ sauraso: if u r working in ENDEVOR u can actually see the line of code where it is giving error using the offset address.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Sun May 16, 2010 3:15 am
Reply with quote

Hello,

Using the "offset address" will show "which line of code" without Endevor. . .
Back to top
View user's profile Send private message
icemanroh

New User


Joined: 23 Aug 2008
Posts: 25
Location: Mumbai

PostPosted: Tue May 18, 2010 9:29 am
Reply with quote

Can u check the sysout? Make sure the file attributes ( espcly file length ) in JCL & Cobol are matching.
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Reorg abended with REASON=X'00E40347' DB2 2
No new posts PuTTY - "User is not a surrogate... IBM Tools 5
No new posts How to delete a user's alias from the... JCL & VSAM 11
No new posts user exit in IBM Infosphere Optim DB2 8
No new posts Running a Job with the Default User ID JCL & VSAM 2
Search our Forums:

Back to Top