SAP Internal Tables Question:
Download Questions PDF

Explain Sorted tables in SAP Internal Tables?

Answer:

This is the most appropriate type if you need a table which is sorted as you fill it. You fill sorted tables using the INSERT statement. Entries are inserted according to the sort sequence defined through the table key. Any illegal entries are recognized as soon as you try to add them to the table. The response time for key access is logarithmically proportional to the number of table entries, since the system always uses a binary search. Sorted tables are particularly useful for partially sequential processing in a LOOP if you specify the beginning of the table key in the WHERE condition.

Download SAP Internal Tables Interview Questions And Answers PDF

Previous QuestionNext Question
Explain Standard tables in SAP Internal Tables?Explain Hashed tables in SAP Internal Tables?