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
606

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
587

Hi,

Have you declared your internal table same as database table?

If not, please check the sequence of fields.

Hope this helps.

Regards,

Shashank

4 REPLIES 4
Read only

Former Member
0 Likes
588

Hi,

Have you declared your internal table same as database table?

If not, please check the sequence of fields.

Hope this helps.

Regards,

Shashank

Read only

Former Member
0 Likes
587

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

Read only

Former Member
0 Likes
587

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 ..

Read only

Former Member
0 Likes
587

The structure of internal table and the database table must the identical, otherwise write the target field names explicitly to avoid unicode errors.