cancel
Showing results for 
Search instead for 
Did you mean: 

Turn of filter in table

former_member186783
Participant
0 Kudos

Hi experts,

I have a table (e.g. SFLIGHT) where a filter is created in a standard way for the field CONNID


  DATA: lo_table TYPE REF TO cl_wd_table.
  IF first_time = abap_true.
    lo_table ?= view->get_element( id = 'TAB_SFLIGHT' ).
    wd_this->go_table_method_handler ?= lo_table->_method_handler.
  ENDIF.


  wd_this->go_table_method_handler->apply_filter( ).

It's working fine, but I can't turn it off. If I'd like to filter a Numeric field e.g. CONNID, I can't enter any filter criteria, where every record is showed.

Is there a way to turn off the filter?

THanks & Bye

N.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member186783
Participant
0 Kudos

I still don'T know, but for the current case, it's enough to use the normal row selection

former_member186783
Participant
0 Kudos

In the mean time I figured it out, that the filter attribute should be String type, then the normal filtering ways can be used.

But I still don'T know, how to process this, because the the binded table still contains every record.