differences between the sorted ,standard, hashed tables.
Answer Posted / ektagalani
1.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.
| Is This Answer Correct ? | 22 Yes | 4 No |
Post New Answer View All Answers
What is the transaction code to display the payroll results ? : abap hr
Lock objects and what are parameters of ENQUEUE FM?
What is the maximum number of structures that can be included in a table or structure : abap data dictionary
How to write a code for multiple transactions? : abap bdc
when u prefer lsmw?
What are the contents in technical specifications?
Does every abap/4 have a modular structure? : abap modularization
What is step-loop? Explain all the steps?
What are the functional areas? User groups?
What has to be done to the packed fields before submitting to a BDC session.
What is the use of table control in bdc is it same in module pool table control? : abap bdc
How can one distinguish between different kinds of parameters? : abap modularization
Explain some essential objects in abap dictionary?
Explain different types of locks?
What are field symbols?