Code: Alles auswählen.
DATA: tv TYPE REF TO cl_htmlb_tableview.
DATA: tv_data TYPE REF TO cl_htmlb_event_tableview.
data: filter_val type string.
CLEAR tv .
tv ?= cl_htmlb_manager=>get_data(
request = runtime->server->request
name = 'tableView'
id = 'ID des Tableviews' ).
IF tv IS NOT INITIAL.
tv_data = tv->data.
CALL METHOD tv_data->get_row_filter_value
EXPORTING
column_index = 'Index zu filternde Spalte'
RECEIVING
value = filter_val.
ENDIF .