‎2006 Mar 06 7:26 AM
hi,
I am updating one data base table dirctly from reading data from application server , I am locking databse table and then directly inserting from internal table.
but it is giving error
The type of the database table and work area (or internal table) "T_OUTPUTAPP" are not Unicode convertible.
Can anyone guide me what i should do.
‎2006 Mar 06 7:33 AM
Hi,
Have you declared your internal table same as database table?
If not, please check the sequence of fields.
Hope this helps.
Regards,
Shashank
‎2006 Mar 06 7:33 AM
Hi,
Have you declared your internal table same as database table?
If not, please check the sequence of fields.
Hope this helps.
Regards,
Shashank
‎2006 Mar 06 7:36 AM
hi
The internal table and the database table must have matching data layout i.e. both of them should have the same structure
hope this helps you.
thanks,
priya
‎2006 Mar 06 7:54 AM
hi ,
declare ur internal table as
__________________________________________________
data: itab like ztable occurs 0 with header line.
__________________________________________________
after populating itab ,
use ..only
_____________________________________
Insert ztable from table itab.
__________________________________
remember dont put insert in a loop ..
‎2006 Mar 06 8:44 AM
The structure of internal table and the database table must the identical, otherwise write the target field names explicitly to avoid unicode errors.