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
What are the disadvantages of logical databases?
How do you send files to the legacy systems from sap and vice versa? How does one know that the legacy files have come on to the sap server you are working on? : abap bdc
What are the types of the programming language used in the sap abap software?
What are the check tables?
What are null values? : abap data dictionary
What are the functional areas? User groups?
Can you assign a matchcode object to a parameter? If so how?
What is append structure?
Which function module would you use to check the user’s authorization to access files before opening a file?
what is bapi,badi,bdc,ale idocs?
In selection screen I have three fields, plant mat no and material group. If I input plant how do I get the mat no and material group based on plant dynamically?
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?
What are logical databases?
How to maintain lists?
What is the diff between database view and maintenance view?