cancel
Showing results for 
Search instead for 
Did you mean: 

Filter in WD Table

Former Member
0 Kudos

Hi Experts,

after button back from details view I would like to filter the table again, because after the refresh of the table (during "back" action) first set filter is not executed automatically. Instead of the filtered data, first 10 rows from DB are shown in that case. Any ideas how to do it? Thank you in advance.

BR

Paul

Accepted Solutions (1)

Accepted Solutions (1)

vimal
Active Participant
0 Kudos

Hi Paul,

Please explain in detail what exactly is the requirement :

There are two views and you are filtering data on second view and then want to update data on first view while pressing back button ?

If you want to update data in first view you need to get the data in internal table and need to bind that table to the node.

context_node->bind_table( it_table ).

/Thanks

Former Member
0 Kudos

Hi,

on the first view is table with filter set on. On the second detail view is "back" button. Problem is to apply filter on the first screen after the back button. On the back action is also refresh of the data from DB made.

BR

Paul

Former Member
0 Kudos

Hello, try this..

" retaining the filter parameter...

IF wd_this->table_method_hndl IS NOT INITIAL .


  wd_this->table_method_hndl->apply_filter( ).


ENDIF.

** IF_WD_TABLE_METHOD_HNDL is attribute in view of type "IF_WD_TABLE_METHOD_HNDL".

Answers (0)