WIP #807 - enable filter detection

setting "filter" option in method BIND_ALV enables filter detection later;
this happens in GET_FILTER (ZCL_EXCEL_CONVERTER_ALV) which takes the filter, applies it and returns table "et_filter" with the row numbers of the filtered items.
This commit is contained in:
Andrea Borgia 2022-04-16 17:29:08 +00:00
parent f9b3a5b555
commit 7085eac57b

View File

@ -875,13 +875,16 @@ CLASS zcl_excel_worksheet IMPLEMENTATION.
METHOD bind_alv.
DATA: lo_converter TYPE REF TO zcl_excel_converter.
DATA: lo_converter TYPE REF TO zcl_excel_converter,
lo_option TYPE zexcel_s_converter_option.
CREATE OBJECT lo_converter.
lo_option-filter = abap_true.
TRY.
lo_converter->convert(
EXPORTING
is_option = lo_option
io_alv = io_alv
it_table = it_table
i_row_int = i_top