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
656

Hi,

If the maximum number of records in an internal table has been exceeded, then is it possible to add more records to the IT , if so how?

Thanks & Regards,

Rachana

7 REPLIES 7
Read only

Former Member
0 Likes
629

Hi,

If we use occurs 0 , there will be no maximum set for internal table.

it will keep on allocating memory pages.

santosh.

Read only

Former Member
0 Likes
629

Hi Rachana,

If you know that the iinternal table will be FULL after a certain number of rows, then you can fill anothe internal table of the same structure.

What exactly is your requirement?

Regards,

ravi

Read only

Former Member
0 Likes
629

Hi,

Kindly find the belowsaid :

1. Use Hashed Table

2. If your internal table is filled with maximum no. of records then consult ur BASIS and work on our page area memory.

Reward if helpful.

Read only

Former Member
0 Likes
629

Chk this OSS notes : 369726 , u can increase th profile storage may be

Read only

0 Likes
629

there is no restriction for records...

but it depends on size of ram and the defining the itab with occurs X.

if u take occurs 100 and ur ram is 512 MB then it is lesser than occurs 0 with 512 MB RAM.

check in internet.... u might get how it effects with RAM.

if u got the run tyime error than contect to ur basis person to increase page memory space or u can use packet .

Read only

Former Member
0 Likes
629

Hi,

Use occurs 0 while defining the internal table then there will no maximum limit to the rows.

E.g.

data: begin of itab occurs 0,

matnr like mara-matnr,

mtart like mara-mtart,

end of itab.

Regards,

Sangeeta.

Read only

Former Member
0 Likes
629

Hi Rachna

There is no limitation of the records of Internal table if u r using OCCURS 0. If it is going into dump. Check the dump message . Increase ABAP memory .