‎2008 Jun 19 7:33 AM
Hi,
I have an Internal table with 63683 records and when do the below operation
LOOP AT <table_data> ASSIGNING <table_line_data>.
CLEAR <data_line>.
MOVE-CORRESPONDING <table_line_data> TO <data_line>.
APPEND <data_line> TO <data>.
ENDLOOP.
using the internal table it is showing the runtime error STORAGE_PARAMETERS_WRONG_SET
and this is the explanation for the error,
"The current program had to be terminated because of an
error when installing the R/3 System.
The program had already requested 1095995136 bytes from the operating
system with 'malloc' when the operating system reported after a
further memory request that there was no more memory space
available."
Is there is any way to avoid this Error using coding.
Regards,
Shasiraj.C
‎2008 Jun 19 7:59 AM
Hi,
Try to clear the space occupied by internal tables in your program.
check if there are so many variables and internal tables thats comsuing the memroy.
check for the tables used in the program for buffering!!
Try to use memory inspector.
for know-how chk this link:
http://help.sap.com/saphelp_nw04/helpdata/en/98/bccab27c757c4ab202e63db2e4fbfe/frameset.htm
regards,
madhu
‎2008 Jun 19 7:10 PM
try commenting that code out and running se30 on the program
are you selecting anywhere for all entries without checking the table is not empty?
have you looked at the dump analysis to see which data you have in internal tables etc ?