Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP Internal table cannot be extended dump

0 Likes
1,238

Hi,

I am getting the error abap internal table cannot be extended dump for FI program.

If I make use of Hashed table instead of Standard internal table,will it solve the problem.Will the hashed table able to hold more data.

Rgds

4 REPLIES 4
Read only

former_member209703
Active Contributor
0 Likes
789

How many records does this table have? Can you post the relevant dump information?

Read only

Former Member
0 Likes
789

Hi,

Hash internal table can hold more data. It cannot have duplicate records but standard internal table can have duplicate records.

BR

Dep

Read only

deepak_dhamat
Active Contributor
0 Likes
789

Hi ,

Can you tell me which table you have used for reference to create internal table .

can you show the code for creating internal table .

Problem can be if you have used include structure of any another table and that table have size category such that it can store only that much values which you have set for creating that SAP table .

Regards

Deepak.

Edited by: Deepak Dhamat on Aug 8, 2011 11:18 AM

Read only

ThomasZloch
Active Contributor
0 Likes
789

This has nothing to do with the internal table type. Your program is filling too much data into internal tables, so that memory limits as set by your system administrators are reached, often there is a limit at 2 GB.

The dump gives you some information, please read especially the "error analysis". First task is to lower the memory consumption of your program, e.g. by only reading relevant data from the DB or by using "block processing" (search for further information). Use the memory inspector or debugger to find the "big ones".

System memory limits should only be raised as last resort.

Thomas