‎2007 Sep 17 7:32 AM
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
‎2007 Sep 17 7:37 AM
Hi Ali,
If you want to update the Data base table, through internal table means, Your internal table and DB table should have the same structure.
If your database table consist of 5 Fields means your internal table also should contain five fields. Otherwise you can't update the database.
Thanks,
Reward If Helpful.
‎2007 Sep 17 7:37 AM
Hi Ali,
If you want to update the Data base table, through internal table means, Your internal table and DB table should have the same structure.
If your database table consist of 5 Fields means your internal table also should contain five fields. Otherwise you can't update the database.
Thanks,
Reward If Helpful.