Skip to Content
0
Former Member
Apr 27, 2009 at 10:40 AM

How to capture the changed value on the ALV Screen

61 Views

I am changing the values displayed on the ALV screen by the below method call.

CALL METHOD v_mapalv->set_table_for_first_display

EXPORTING

i_save = 'A'

is_layout = wa_layout

it_toolbar_excluding = i_func

CHANGING

it_outtab = i_map

it_fieldcatalog = i_fieldcat_map

EXCEPTIONS

invalid_parameter_combination = 1

program_error = 2

too_many_lines = 3

OTHERS = 4.

IF sy-subrc <> 0.

ENDIF.

Here v_mapalv is referenced to class CL_GUI_ALV_GRID. But the changed values are not getting captured in I_MAP table. How can I capture the changed values so as to use the new records in the I_MAP table for my further processing.

Thanks,

Abhishek