Hi friends.
In my ALV report I am getting data from T_ITAB internal table.
In my ALV report I am editing records.
(fieldcatalog-edit = 'X'. "sets whole column to be editable )
after complete the edit I will press update button ,
How all alv records should update in t_itab ?
Or it should add another internal table along with edit records.
I am using after edit(
Case sy-ucomm.
When u2018UPDATEu2019.
( LOOP at t_itab into w_itab.
READ TABLE t_itab into w_itab INDEX sy-tabix.
IF sy-subrc = 0.
APPEND w_mchb1 TO t_mchb1.
clear : w_mchb1.
ENDIF.
ENDLOOP. )
Endcase.
)
In this above method it is not contain updated data.
Please guide me --- .
Thanking u.
Regards,
Subash