rspec/rules/S1672/abap/rule.adoc

14 lines
345 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Internal tables can be sorted without specifying the specific fields on which to sort. However, doing so is inefficient because when a sort key is not specified, the entire row is used in the sort, which can be markedly inefficient.
== Noncompliant Code Example
----
SORT ITAB.
----
== Compliant Solution
----
SORT ITAB BY LAND WEIGHT.
----