Hi,
I am working an editable ALV which has checkboxes inside ALV.I don't need standard buttons which are being displayed by using code.
Problem is I want my ALV to be editable because user will click the checkboxes and click submit button.
DATA: lr_table_settings TYPE REF TO if_salv_wd_table_settings. lr_table_settings ?= l_value. lr_table_settings->set_read_only( abap_false ).
if i make it abap_true i don't see buttons but read_only is gone.
how do we overcome this issue? Can we hide a button alone?
Rgds
vara