Hi Guru.
Iam working on tabstrips...each tab contains different tables each.
i am doing filter in that table. so written code in modify view for first tab1( table)
DATA: wd_table TYPE REF TO cl_wd_table,
w_is_filter_on TYPE wdy_boolean.
wd_context->get_attribute( EXPORTING name = 'IS_FILTER_ON'
IMPORTING value = w_is_filter_on ).
wd_table ?= view->get_element( 'SAMPLEREC_TABLE' ).
wd_this->table_hndl ?= wd_table->_method_handler.
IF w_is_filter_on = abap_true.
wd_table->set_on_filter( 'FILTER_RECEIVE1' ).
else.
wd_table->set_on_filter( '' ).
endif.
But how to write to code for second table ( tabstrip2) in modify view...is it possible