View previous topic :: View next topic |
Author |
Message |
gupta Beginner
Joined: 12 Feb 2005 Posts: 27 Topics: 15
|
Posted: Fri Aug 12, 2005 8:52 pm Post subject: ABEND 1013,1072,1073 |
|
|
Hi All,
We are facing a problem in a CICS/COBOL program.
The problem is, the program gets Abended with different message at different time 1013, 1072 and 1073.We were able to figure out the problem is due to COBOL statements.
A strange things happens, the program runs fine on some dyas. This led us to a confusion state whether it is program problem or data problem.We are unable to trust the program.
But my question is why the program is abending with different errors for the same set of input datas.
Please can any one help on this .
Thanks
Gupta |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Sat Aug 13, 2005 7:56 am Post subject: |
|
|
Gupta,
Here is an explanation of your error codes.
Code: |
U1013
Message Format: IGZ013I AN ERROR RETURN CODE err CAME FROM A cccc CICS
COMMAND ISSUED BY LIBRARY SUBROUTINE
subroutine.
Description: The indicated CICS COMMAND issued by the indicated library
subroutine gave the indicated error return code.
User Action: See the CICS messages manual for more information.
|
Code: |
U1072
Message Format: IGZ072I A REFERENCE MODIFICATION START POSITION VALUE
OF nnnn ON LINE ssss REFERENCED AN AREA
OUTSIDE THE REGION OF DATA ITEM dataname.
Description: The indicated reference modification start position on the
indicated line was found to have a value less than 1 or
greater than the length of the indicated data item. The
job step is cancelled.
User Action: A reference modification start position must be a positive
integer less than or equal to the length of the data item
being reference modified. Check the program logic to
determine how the invalid start position was generated.
|
Code: |
U1073
Message Format: IGZ073I A NON-POSITIVE REFERENCE MODIFICATION LENGTH
VALUE OF nnnn ON LINE ssss WAS FOUND IN A
REFERENCE TO DATA ITEM dataname.
Description: The indicated reference modification length value for the
indicated item on the indicated line was found to be less
than or equal to zero. The job step is cancelled.
User Action: A reference modification length specification must be
greater than zero. Check the program logic to determine
how the invalid length value was produced.
|
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
gupta Beginner
Joined: 12 Feb 2005 Posts: 27 Topics: 15
|
Posted: Sun Aug 14, 2005 2:52 am Post subject: |
|
|
Kolusu,
Thanks a lot.
I have one mor query.
The last ABEND we often faced is 1013.
The CICS command that we are using ABEND,PUSH, RETURN and LINK.
For your information the same program is running fine now without any modifications.
what makes the program to run successfully now ?
Please give us some information.
Thanks
Gupta |
|
Back to top |
|
 |
|
|