cancel
Showing results for 
Search instead for 
Did you mean: 

Table Filter limitation

former_member186783
Participant
0 Kudos

Hi everyone,

Is there a limit for the Table Filtering?

I used the standard table filters several time before.

IF_WD_TABLE_METHOD_HNDL


method ONACTIONON_FILTER .
  wd_this->table_method_handler->apply_filter( ).
endmethod.

It worked perfectly but now I have a fleld, where I enter a filter criteria, then the "sandbox" icon appears, but nothing happens.....

The FilterValue has type String

The Field has type CHAR 130 and this is the first field of the table.. is this a problem? Is there any limitation for filtering?

Please help

Bye

N.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member186783
Participant
0 Kudos

It seems the standard SAP filter doesn'T work properly. THe only way to solve this issue, is to write the proper filter method manually

e.g.


IF NOT ls_filter-stell IS INITIAL.
    DELETE lt_table WHERE stell NP ls_filter-stell.
  ENDIF.