Page 1 of 1

error in cobol

PostPosted: Wed Apr 17, 2013 3:18 pm
by surime72
while i was trying to compile the program it was showing below erro message:

A user abend,0102,occurred in module DFSZSR00 CSECT DFSZSR00 at offset X'6F4'.

The abend was caused by machine instruction 05EF (BRANCH AND LINK) in module
CSGCBB09 program CSGCBB09 at offset X'9F72'.

Recently referenced data items:

  Data Item . . . . . . . . :,BLW=0004+370
    At Address. . . . . . . :,22C3D3F8,
    Length. . . . . . . . . :,X'4'
    Data Item Storage . . . :,00000000   *....*

NOTE: Source code information for program CSGCBB09 could not be presented
     ,because no compiler listing or side-file data sets were provided.



i was not able to under stand the error

Re: error in cobol

PostPosted: Wed Apr 17, 2013 3:36 pm
by enrico-sorichetti
while i was trying to compile the program

Your view of things is pretty confused

the abend does not occur at compile time,
the abend occurs at RUN time

DFSZRC00 is an IMS module

the program is probably <an IMS program> and the 102 abend is a standard IMS abend
look it up Yourself in the manuals and/or speak to Your support

Re: error in cobol

PostPosted: Tue Apr 30, 2013 6:45 pm
by Anuj Dhawan
Enrico is correct. That's U0102, a standard abend for IMS-COBOL Program with check-point restart logic. If You're allocating some (GSAM) files in the start of the Job (whihc are used for locating restart point) - and the program abends. Make sure, at restart you don't re-allocate the files.