Page 1 of 1

CEE0813S Insufficient storage

PostPosted: Tue Feb 12, 2013 1:26 am
by gokulNmf
Hi All,
I am trying to call a sub program, while calling the subprogram, i encounter an Abend, Please find the below the error message

CEE0813S Insufficient storage was available to satisfy a get storage (CEECZST)
request.
From compile unit RXX229 at entry point RXX229 at compile unit offset
-218D3552 at entry offset -218D3552 at
address 0028EE3E.
***


RXX229 - is the main program.

The same job is running in production fine, but while i try to create it in trial, I am getting this abend.

This is the first time I encounter this error :shock: . Can anyone please help me out on this.

Re: CEE0813S Insufficient storage

PostPosted: Tue Feb 12, 2013 1:42 am
by Robert Sample
Did you look up the message in the manual? It says
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.

System Action: No storage is allocated. The value of the address parameter is undefined.

Symbolic Feedback Code: CEE0PD
It does not matter if the program is running fine in production -- your test LPAR is obviously set up differently, and hence the failure. Contact your site support group and get them to help you figure out whether a REGION= parameter change will help, or if you need to use the LE run-time parameters to change what is happening.

Re: CEE0813S Insufficient storage

PostPosted: Tue Feb 12, 2013 3:30 am
by gokulNmf
Thanks Robert, i coded the REGION parameter. Now its working fine.