2014 Apr 17 10:02 AM
Hi All,
In an enhancement, I have to look-up a R/3 table.
For this I wrote select query and getting data into internal table.
Here, when executing select query, a runtime error occurred saying that internal table overflow is happening...because of huge data...
How to overcome, this overflow.. with out increasing the size of internal table ?
2014 Apr 17 10:10 AM
Hi Vijay,
Please paste the code which you are using. Also in your select query you can define Packet size.
BR,
Prakash
2014 Apr 17 10:12 AM
2014 Apr 17 11:26 AM
Hi,
make also sure to define and select only the fields you need in your internal table.
Don't use
DATA: it_mat TYPE TABLE OF mara.
if you need only MATNR, MTART and MATKL (just for example).
Regards,
Klaus