Most efficient itab filtering with ABAP 7.40+ syntax

Suncatcher picture Suncatcher · Feb 16, 2018 · Viewed 8.7k times · Source

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) =
  FILTER #( lt_bseg USING KEY matnr_bwtar WHERE matnr = CONV matnr( SPACE ) 
                                            AND bwtar = CONV bwtar( SPACE ) ).

FOR table iterations with VALUE construction operator

DATA(lt_extract) = 
 VALUE tty_bseg( FOR line IN lt_bseg WHERE ( matnr EQ SPACE AND bwtar EQ SPACE ) ( line ) ).

Is there any performance gain of one over another and why?

Maybe you know any other syntax to perform internal tables filtering efficiently?

Answer

Sandra Rossi picture Sandra Rossi · Feb 17, 2018

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.