Most efficient itab filtering with ABAP 7.40+ syntax

前端 未结 1 647
温柔的废话
温柔的废话 2021-02-06 06:29

With release 7.40 we have plenty of ways to filter internal table data. For example, one can use such ABAP constructs:

FILTER operator

DATA(lt_extract) =         


        
1条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-06 06:58

    I didn't find any benchmark on the web, but it's so simple to make a test by yourself.

    It would be logic that FILTER, being specialized for that task, is faster than other constructs which have an overhead cost to choose between many other possible operations.

    FILTER has also the advantage to force the developer to use an index. Of course, the building of an index has itself a cost, so you must balance its use versus the amount of filtering done.

    The ABAP documentation 7.52 explains well the performance of FILTER and recommendations when to not using it ( https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abenconstructor_expression_filter.htm ) :

    Table filtering can also be performed using a table comprehension or a table reduction with an iteration expression for table iterations with FOR. The operator FILTER provides a shortened format for this special case and is more efficient to execute.

    A table filter constructs the result row by row. If the result contains almost all rows in the source table, this method can be slower than copying the source table and deleting the surplus rows from the target table.

    0 讨论(0)
提交回复
热议问题