Application Development 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: 

Internal table

Former Member
0 Kudos

Hi Friends,

If the itab size is exceeding and going out of memory by giving short dump...Can any body tell me what is the solution

Thanks in Advance

6 REPLIES 6

Former Member
0 Kudos

Use select.. endselect instead of 'into table itab'

former_member188685
Active Contributor
0 Kudos

Hi,

you can use select endselect with packet size option.

in that case it will get the records based on the size you mentioned .

Regards

vijay

Former Member
0 Kudos

Hello Jak,

One of the options that you can think about is <i>extract datasets</i> (also known as <i>field groups</i>). They are used very rarely, but in my experience they have often solved my memory overflow issues.

Regards,

Kinshuk Saxena.

Former Member
0 Kudos

Jak,

You should use FIELD GROUPS. That is the while purpose of FIELD groups - to handle larager amount of data.

SELECT ENDSELECT will have impact on your performace as you are dealing with huge data.

Regards,

Ravi

former_member188685
Active Contributor
0 Kudos

Hi Jak,

Check this thread..

Regards

Vjay

0 Kudos

Hi All,

Thank You.Reward points are given.