Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

unicode

Former Member
0 Likes
356

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
336

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.

1 REPLY 1
Read only

Former Member
0 Likes
337

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.