I have 2 internal tables typeв TYPE STANDARD TABLE OF string
The first table contains the data
| K1 | K2 | K3 |
The second table contains the data
| K1 | K2 |
In ABAP, what is the fastest method to check if the second table entries are completely present in the first table? Maybe some inline function?
DATA lt_current_values TYPE stringtab.
DATA lt_previous_values TYPE stringtab.
APPEND 'K1' TO lt_previous_values.
APPEND 'K2' TO lt_previous_values.
APPEND 'K3' TO lt_previous_values.
APPEND 'K1' TO lt_current_values.
APPEND 'K2' TO lt_current_values.
DATA lv_count TYPE i.
LOOP AT lt_current_values INTO DATA(ls_cur).
READ TABLE lt_previous_values TRANSPORTING NO FIELDS WITH KEY table_line = ls_cur.
IF sy-subrc = 0.
lv_count += 1.
ENDIF.
ENDLOOP.
IF lv_count = LINES( lt_current_values ).
" present => current_table values are already present in previous_table
ENDIF.
The solution would be to temporarily use hashed tables with
FILTER
.