‎2012 Dec 04 10:26 AM
dear all,
when i am executing a report of bank balance, it is giving a short dump " no more storage space is available for extending an internal table". please tell me how i can resolve this issue.
thanks
‎2012 Dec 04 10:30 AM
HI Robin
Please check the number of records it is fetching while debugging.
There is cretain limit for internal tables storage.
Some unneccesary loops may also increase the number of records.
Refresh and free the internal tables when they are not in use.
Thanks
Guru
‎2012 Dec 04 10:37 AM
‎2012 Dec 04 11:32 AM
Hello Robin,
It is because of the data you are fetching is too big that internal table cannt hold all of this as it has some limitations.
You need to extract your data in chunks and probably write on to application server if you want to download complete file .
Regards,
Deepti
‎2012 Dec 04 11:40 AM
Hi,
Try to use HASHED Table for your requirement,
here you can get the details.
http://help.sap.com/saphelp_erp60_sp/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/frameset.htm
hope this works for you.
Avirat
‎2012 Dec 05 3:25 AM
Dear Avirat,
I am using a BAPI 'BAPI_GLX_GETDOCITEMS' in my report . This bapi have that internal table.
‎2012 Dec 04 11:40 AM
Hi,
Try to use HASHED Table for your requirement,
here you can get the details.
http://help.sap.com/saphelp_erp60_sp/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/frameset.htm
hope this works for you.
Avirat
‎2012 Dec 04 6:42 PM
‎2012 Dec 04 7:46 PM
Hi Robin,
identify the fields you really need and select into corresponding fields of table of this line type.
Use of hashed tables is always nice but will not help at all to reduce the size.
Regards, Clemens