I am having trouble finding the meaning of a 4038 abend code.
Thanks
> Is there anywhere online that I could get a listing of what the
> different abend codes mean?
The Messages & Codes manual has them all. Do you not have access to
BookManager?
> I am having trouble finding the meaning of a 4038 abend code.
From that manual:
"Abend codes with 1 through 9 as the first character are issued by COBOL
II applications running on CICS. The last three digits of the abend code,
xxx, correspond to the digits xxx in the associated COBOL II run-time
message, IGZxxxI."
For Language Environment 1.3, 4038 is an abend at termination of a nested
enclave. IIRC this is due to a program "running off the end" instead of
issuing an EXEC CICS RETURN command.
Jerry Ozaniec
Zonko Enterprises Limited
http://www.zonko.co.uk/
Hi Cathi,
The User Abend Code 4038 is not a CICS-Code but rather a Language Environment
Code indicating that some abend occured in a user program. If your LE hat the
options 'TRAP(ON)' (the default) and 'ABTERMENC(ABEND)' (not default, but
recommended), every user-program abend results in a 4038 and the abending
program is always 'CEEHDSP', the error-handler of LE.
You find the diagnostics to the original abend in the message-file (SYSOUT)
and the dump-file (CEEDUMP). Under CICS, these informations are stored in a
TD-queue named 'CESE'. They look like the following sample in the LE-manual:
P039UTV9 19910916145313 CEE3250C The System or User ABEND AEI0 was issued.
P039UTV9 19910916145313 From program unit UT9CVERI at entry point
+0000011E at P039UTV9 19910916145313
at offset address 0006051E.
As you can see, every message begins with terminal-name, transaction-code and
the the current date and time.
You find the LE 'Debug and Msgs.' online at:
http://ppdbooks.pok.ibm.com:80/cgi-bin/bookmgr/bookmgr.cmd/BOOKS/CEEA103/CCONTEN
TS
(all on one line!)
The real CICS Abend Codes are at:
http://ppdbooks.pok.ibm.com:80/cgi-bin/bookmgr/bookmgr.cmd/BOOKS/DFHCAG41/CCONTE
NTS
At the same URL, you also find the manuals for COBOL, C/C++ and PL/I. Hope the
helps you!
Cheers
Daniel
-----------== Posted via Deja News, The Discussion Network ==----------
http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
Cathi Hunter
Cathi Hunter wrote in message ...
http://www.s390.ibm.com/os390/bkserv/applsbooks.html
John