Hi Guys,
I am getting memory dump in processing internal table. The source internal table (gi_stats) has arround 18 million records.
Below is the code from short dump:
52 CLEAR gi_rep_stats[].
53 LOOP AT gi_stats.
54 CLEAR gi_rep_stats.
55 gi_rep_stats-startdate = gi_stats-startdate.
56 gi_rep_stats-report = gi_stats-report.
57 gi_rep_stats-cua_prog = gi_stats-cua_prog.
------->APPEND gi_rep_stats.
59 ENDLOOP.
Can any body suggest any idea to avoid this dump?
Thanks,