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

Internal table overflow

Former Member
0 Likes
706

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 ?

3 REPLIES 3
Read only

Former Member
0 Likes
582

Hi Vijay,

  Please paste the code which you are using. Also in your select query you can define Packet size.

BR,

Prakash

Read only

Former Member
0 Likes
582

This message was moderated.

Read only

Former Member
0 Likes
582

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