What are the types of internal tables?

Answer Posted / siddharth samal

We can also divide up internal table types into three kinds
by their access type:

Standard tables. In a standard table, you can access data
using either the table index or the key. Since the key of a
standard table always has to be non-unique for
compatibility reasons, the system searches the whole table
each time you access it using the key. Consequently, you
should always use the index to access a standard table
whenever possible.

Sorted tables. In a sorted table, the system
automatically stores the entries and inserts new entries
sorted by the table key. The system uses a binary search on
the table when you access it using the key. You can specify
the key of a sorted table as unique. You will often use the
key to access a sorted table, but it is also possible to
use the index. Standard tables and sorted tables are
generically known as index tables.

Hashed tables. You can only access a hashed table using
the key. There are certain conditions under which you can
considerably reduce the access times to large tables by
using a hashed table. The key of a hashed table must always
be unique.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is difference between user exit, customer exit and badi?

4064


What do is landscape in sap project, I think its related to no. Of servers used, pls correct me if I am wrong, or what it is? : sap abap hr

550


Difference between sy-tabix and sy-index? Where it is used?

527


What is database utility?

699


Explain the disadvantages of different types of bdc's?

511






Can we specify the next screen number with a variable?

561


What are the function of the transport system and workbench organiser? : abap data dictionary

553


What are extracts?

558


if while coding power goes off , how to retrieve the codes?

1618


Explain how to Handle the internal tables in ABAP?

635


Can a posting run be deleted? : sap abap hr

602


what comes in Timkein written test I hope some body can tell me at this id plz tell it before 9 pm 19 march

1649


Can we access static attribute from instance method

988


What are the system table used in abap?

582


How to copy table across clients?

618