Skip to Content
0
Former Member
Aug 14, 2008 at 07:17 AM

set_filter_row_value in method DO_REQUEST ?

29 Views

I try to save and load filter values of a table when leaving/returning to a specific view.

Save filter values works perfect in DO_HANDLE_DATA..Now i try to load filter values in method DO_REQUEST, but this doesn't work 😔 Is that not possible in this method?

data: lv_string type string.

CALL METHOD cl_htmlb_manager=>set_filter_row_value
   EXPORTING
     request      = runtime->server->request
     id           = 'tabID'
     column_index = '2'
     value        = lv_string
     .

Where is my mistake?