‎2007 Jun 22 1:42 PM
hi experts,
i m trying to update the database table from the values containig in my internal table ,,,but the system is giving this error plz help me::::
The type of the database table and work area (or internal table)
"ITAB_UPDATE" are not Unicode convertible. Unicode convertible.
:::
my internal table name itab_update and the database table name yitab.i m using this statement::
modify yitab from itab_update.
‎2007 Jun 22 1:46 PM
Hi
How have you defined your internal table? It should be
DATA: ITAB_UPDATE LIKE STANDARD TABLE OF YITAB.
Max
‎2007 Jun 22 1:46 PM
Hi
How have you defined your internal table? It should be
DATA: ITAB_UPDATE LIKE STANDARD TABLE OF YITAB.
Max
‎2007 Jun 22 1:47 PM
Hi
1. You have to Declare the Itab with the same structure as DB table.
2. Use the statement
Modify <DBtable> from TABLE <itab>.
or
Update <DBtable> from TABLE <itab>.
Hope this will solve.
Reward .....if so.
Regards.