SAP Internal Tables Question:
Download Questions PDF

Explain Standard tables in SAP Internal Tables?

Answer:

This is the most appropriate type if you are going to address the individual table entries using the index. Index access is the quickest possible access. You should fill a standard table by appending lines (ABAP APPEND statement), and read, modify and delete entries by specifying the index (INDEX option with the relevant ABAP command). The access time for a standard table increases in a linear relationship with the number of table entries. If you need key access, standard tables are particularly useful if you can fill and process the table in separate steps. For example, you could fill the table by appending entries, and then sort it. If you use the binary search option with key access, the response time is logarithmically proportional to the number of table entries.

Download SAP Internal Tables Interview Questions And Answers PDF

Previous QuestionNext Question
Explain Choosing a Table Type in SAP Internal Tables?Explain Sorted tables in SAP Internal Tables?