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

Regarding Intarnal Table Size

Former Member
0 Likes
526

Hi Guriji,

Plz tell me how we can increase internal table size. I have fetch data which has arround 20000000 rows.

thanks.

1 ACCEPTED SOLUTION
Read only

agnihotro_sinha2
Active Contributor
0 Likes
493

hi,

use the INITIAL SIZE addition:

TYPES <t> TYPE|LIKE <tabkind> OF <linetype> [WITH <key>]

[INITIAL SIZE <n>].

allocate ABAP memory to it.

ags.

hi,

use the INITIAL SIZE addition:

TYPES <t> TYPE|LIKE <tabkind> OF <linetype> [WITH <key>]

[INITIAL SIZE <n>].

allocate ABAP memory to it.

ags.

3 REPLIES 3
Read only

agnihotro_sinha2
Active Contributor
0 Likes
494

hi,

use the INITIAL SIZE addition:

TYPES <t> TYPE|LIKE <tabkind> OF <linetype> [WITH <key>]

[INITIAL SIZE <n>].

allocate ABAP memory to it.

ags.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
493

First read SAP documentation at [Processing Large Volumes of Data|http://help.sap.com/saphelp_nw04/Helpdata/EN/bf/cf52e4003011d2952b0000e8353423/frameset.htm] ([extracts|http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/db9ed135c111d1829f0000e829fbfe/frameset.htm] can reach much more space than internal table in theory, limits arise in system parameters and actual size of course)

Regards,

Raymond

Read only

ThomasZloch
Active Contributor
0 Likes
493

Also check if whatever you are doing there can be done in processing blocks instead of all at once, e.g. by using SELECT ... PACKAGE SIZE ...

Thomas