‎2008 Aug 11 11:04 AM
Hi,
There are select buttons across rows in ALV and there is a column which is editable. A row is selected and editable column is filled and when row is de-selected then text entered in editable column should be cleared. Can you please let me know the events associated to accomplish the same.
BRB,
Lavanya.
‎2008 Aug 11 11:16 AM
Main event is
DATA_CHANGED
you need to create a local event handler class and handle that.
need to set the handler for the Gird to trigger the event.
Refer the sample program BCALV_EDIT_03
and also you have to do this..
Register the edit event.
call method g_grid->register_edit_event
exporting
i_event_id = cl_gui_alv_grid=>mc_evt_enter.
‎2008 Aug 11 11:09 AM
‎2008 Aug 11 11:16 AM
Main event is
DATA_CHANGED
you need to create a local event handler class and handle that.
need to set the handler for the Gird to trigger the event.
Refer the sample program BCALV_EDIT_03
and also you have to do this..
Register the edit event.
call method g_grid->register_edit_event
exporting
i_event_id = cl_gui_alv_grid=>mc_evt_enter.