hi,
i wanted to update database table i have this code, but it showing itab1 and dbtable is not unicode convertible.
just this code.
tables : mara.
types : begin of itab ,
matnr type mara-matnr,
ernam type mara-ernam,
end of itab.
data : itab1 type standard table of itab initial size 0,
wa like line of itab1.
wa-matnr = 39.
wa-ernam = 'raju'.
append wa to itab1.
modify mara from table itab.
pls reply