Page 1 of 1

CEE0813S abend

PostPosted: Thu Apr 17, 2008 12:27 am
by afable
I have two cobol programs. Lets say program A calls Program B. To run these programs I'm using a Clist so LE Debugger could display the source.
When program A calls Program B I get the following message:

CEE0813S Insufficient storage was available to satisfy a get storage

Can anybody give me some clues....I have been using Le Debugger all the time w/o problems. Except program A has an internal sort.


Once again, Thanks.

Re: CEE0813S abend

PostPosted: Fri Apr 18, 2008 1:10 am
by CICS Guy
Of course you looked here, right?
http://publib.boulder.ibm.com/infocenter/zos/v1r9/index.jsp?topic=/com.ibm.zos.r9.ceea900/lemes.htm
CEE0813S
Insufficient storage was available to satisfy a get storage (CEECZST) request.
Explanation:
There was not enough free storage available to satisfy a get storage call to CEEGTST or reallocate request call to CEECZST.
Programmer response:
Ensure that the REGION size is sufficient to run the application. Ensure that the size parameter in the get storage request is not an unusually large number. Verify that the storage sizes specified in the HEAP and STACK run-time options are reasonable, given the region size allocated to the application. Verify that you are using storage options that get your storage from above the line, if you can, since you can run out of storage below the line much more easily.
Additionally:
http://www-1.ibm.com/support/docview.wss?rs=2231&context=SS6SG3&dc=DB520&uid=swg21199554&loc=en_US&cs=UTF-8&lang=en
CEE0813S Insufficient storage was available to satisfy a get storage - when using FUNCTION UPPER-CASE, etc.
And:
http://www-1.ibm.com/support/docview.wss?uid=swg1PQ39129
PQ39129: CEE0813S INSUFFICIENT STORAGE WAS AVAILABLE TO SATISFY A GET STORAGE (CEECZST) REQUEST.

Re: CEE0813S abend

PostPosted: Mon Apr 21, 2008 6:42 pm
by afable
CICS Guy. Your reply is very useful and it works when I run job in batch. However, what I'm trying to do is run the program and allocate its files via a Clist to see the program run run under LE Debugger to determine other problems with this program. The main program calls program B and the main program is getting the CEE0813S abend. Let me mention we have similar programs and they work fine thru Le Debugger is just this one that is somehow stubborn.

Here the sample of the clist to invoke this program:

ALLOC DD(WORKFILE) DS('MYID.WORKFILE') SHR
CALL 'MY.LOADLIB(MAINPGM)' '999999/TEST'


Any more ideas will be hightly appreciated.

Re: CEE0813S abend

PostPosted: Mon Apr 21, 2008 11:27 pm
by dick scherrer
Hello,

Ensure that the REGION size is sufficient to run the application.
There is not much we can do here to circumvent this. . .

I'd suggest you talk with your system support people and request more memory be made available to your login id (there may be standards that prevent this).

If you cannot get a large enough space to run online, you will need to debug in batch.

Re: CEE0813S abend

PostPosted: Tue Apr 22, 2008 1:12 am
by afable
Thanks to Dick Scherrer & CICS Guy. You guys are great asset to this forum.

The answer is as suggested:

I changed the size of my TSO Login to the largest possible region size allowed. And this solve my problem. Now I'm able to navigate thru the LE Debugger without any problems.


Thanks so much.

Re: CEE0813S abend

PostPosted: Tue Apr 22, 2008 3:00 am
by dick scherrer
You're welcome, glad we could help - good luck resolving the "real" problem :)

d