hi friends,
i have 2 fields for editing in alv output.when user enter some value in fields
then i save that value in ztable.
my problem is same value get updated in both field what is the problem?
IF r_ucomm = '&DATA_SAVE'.
READ TABLE final INDEX rs_selfield-tabindex.
UPDATE zstatus SET cform = rs_selfield-value
WHERE vbeln = final-vbeln.
UPDATE zstatus SET remark = rs_selfield-value
WHERE vbeln = final-vbeln.
MESSAGE i000(su) WITH 'saved'.
clear rs_selfield-value.
thanks.