Hi Rupesh,
Yes we can get the value of the cell in the list GUIBB based on the cell action,
Please try with the following snippet in process event method of the feeder class.
CASE IO_EVENT->MV_EVENT_ID.
WHEN 'FPM_GUIBB_LIST_CELL_ACTION'.
DATA col_name type string.
DATA value type string.
io_event->mo_event_data->get_value( EXPORTING iv_key = 'FPM_GUIBB_LIST_COL_NAME' importing ev_value = col_name ).
if col_name = 'COL_NAME'.
io_event->mo_event_data->get_value( exporting iv_key = if_fpm_guibb_list=>gc_event_par_row importing ev_value = value ).
ENDIF.
ENDCASE.
Please check page 135(FPM Events and the List Component) for more information in the following linkFloorplan Manager for Web Dynpro ABAP 7.4 SP08 SAP_UI SP10
Regards,
Harsha