Skip to Content
0
Former Member
Jul 04, 2009 at 05:59 AM

After edit ALV report how to save records ?

48 Views

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