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.