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

Former Member
0 Likes
759

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
Read only

Former Member
0 Likes
730

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

Read only

Former Member
0 Likes
730

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

Read only

Former Member
0 Likes
730

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.

Read only

Former Member
0 Likes
730

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

Read only

Former Member
0 Likes
730

Hi Jak,

Check this thread..

Regards

Vjay

Read only

0 Likes
730

Hi All,

Thank You.Reward points are given.