SAP Internal Tables Question:
Download Questions PDF

What is SAP Internal Tables type?

Answer:

The table type determines how ABAP will access individual table entries. Internal tables can be divided into three types:

Standard tables have an internal linear index. From a particular size upwards, the indexes of internal tables are administered as trees. In this case, the index administration overhead increases in logarithmic and not linear relation to the number of lines. The system can access records either by using the table index or the key. The response time for key access is proportional to the number of entries in the table. The key of a standard table is always non-unique. You cannot specify a unique key. This means that standard tables can always be filled very quickly, since the system does not have to check whether there are already existing entries.

Download SAP Internal Tables Interview Questions And Answers PDF

Previous QuestionNext Question
What is SAP Internal Tables Key?What is Generic Internal Tables?