cancel
Showing results for 
Search instead for 
Did you mean: 

internal tables

Former Member
0 Kudos

Hi,

what exactly difference b/w standard and sorted internal tables in performance wise?

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi "Deep"...

Thanks for the tip. Is this one correct? Where are the other colleagues you mentioned?

Please send more infos to sdn@sap.com.... or post here... (You can use a gmail account)

Many thanks for your information (you will not be deleted),

Julius

Former Member
0 Kudos

Thanks for the information (and passwords of the accounts :-).

I have forwarded the information to sdn@sap.com and you will be added to the witness protection program.

Cheers,

Julius

Former Member
0 Kudos

Hi,

Standard Internal Tables:

These tables have a linear index and can be accessed using the index or the key. The response time is in linear relationship with number of table entries. These tables are useful when user wants to address individual table entries using the index.

Sorted Internal Tables: These tables also have an index and the key. But, the response time is in logarithmic relationship with number of table entries, since it uses binary search algorithm instead of linear search. These tables are useful when user wants the table to be sorted while additional entries have to be added.

Regards,

sujit

Former Member
0 Kudos

Hi Madhu,

Standard Internal Tables: These tables have a linear index

and can be accessed using the index or the key. The response

time is in linear relationship with number of table entries.

These tables are useful when user wants to address

individual table entries using the index.

2.Sorted Internal Tables: These tables also have an index

and the key. But, the response time is in logarithmic

relationship with number of table entries, since it uses

binary search algorithm instead of linear search. These

tables are useful when user wants the table to be sorted

while additional entries have to be added.

3.Hashed Internal Tables: These tables have no index, but

have the key. The response time is constant irrespective of

number of table entries, since it uses a Hash algorithm.

These tables are useful when user wants to access the

entries with key only.

Kindly Reward Points If You Found The Reply Helpfull

Cheers,

Chaitanya.