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 are extracts?

664


What is a type group?

623


What happens if a function module runs in an update task?

645


Did you use buffering?

686


What is a table pool? : abap data dictionary

694






What are the two levels in defining a match code? : abap data dictionary

711


How can we send data to external programs?

725


Explain the disadvantages of logical databases?

631


could anyone tell me what r real time questions been asked in interviews?i am in urgent need..thanks in advance

1547


What are the two different ways of building a match code object? : abap data dictionary

710


If A is the super class of B. And both the classes have constructor. We create an object of class B. Then which constructor will be called? If both then in which order?

1028


What are the components in sap application server?

736


What is a function group? : abap modularization

683


Where the payroll results are stored

1994


What is the difference between native sql & open sql? : abap data dictionary

696