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?