‎2011 Aug 08 8:52 AM
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
‎2011 Aug 08 9:08 AM
How many records does this table have? Can you post the relevant dump information?
‎2011 Aug 08 9:36 AM
Hi,
Hash internal table can hold more data. It cannot have duplicate records but standard internal table can have duplicate records.
BR
Dep
‎2011 Aug 08 10:16 AM
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
‎2011 Aug 08 10:34 AM
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