SAP Certified Associate – ABAP Cloud Developer — Question 12
Which of the following are valid sort operations for internal tables? (Choose three.)
Answer options
- A. Sort a standard table using - SORT itab BY field1 field2.
- B. Sort a standard table using - SORT itab.
- C. Sort a sorted table using - SORT itab DESCENDING.
- D. Sort a sorted table using - Sort itab BY field1 ASCENDING field2 DESCENDING.
- E. Sort a standard table using - SORT itab ASCENDING.
Correct answer: A, B, E
Explanation
The correct answers A, B, and E represent valid operations for sorting standard tables in ABAP. Option C is incorrect because it suggests sorting a sorted table without specifying fields, which isn't a valid operation. Option D is also wrong, as it incorrectly suggests sorting a sorted table by multiple fields in a specific order that isn't supported in ABAP.