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

Memory Issue ---STORAGE_PARAMETERS_WRONG_SET

Former Member
0 Likes
377

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

2 REPLIES 2
Read only

Former Member
0 Likes
338

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

Read only

alison_lloyd
Active Participant
0 Likes
338

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 ?