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

Re: Error in Report

Former Member
0 Likes
447

Hi All,

While trying to insert datas from an internal table to a customized Table we are getting

Syntax error: "<b>The type of the database table and work area (or internal table)are not Unicode convertible</b>".

How to convert the program to Unicode specific, we tried by changing it in the Attributes also but still no use from it, but our previous programs never encountered this type of problm.

Is there anyway to overcome this problem.

Help and Suggestions will be much apprieciated.

Regards.

Ramesh.

Hi All,

While trying to insert datas from an internal table to a customized Table we are getting

Syntax error: "<b>The type of the database table and work area (or internal table)are not Unicode convertible</b>".

How to convert the program to Unicode specific, we tried by changing it in the Attributes also but still no use from it, but our previous programs never encountered this type of problm.

Is there anyway to overcome this problem.

Help and Suggestions will be much apprieciated.

Regards.

Ramesh.

2 REPLIES 2
Read only

anversha_s
Active Contributor
0 Likes
417

hi ramesh,

declare like this.

tables : ztable.

data : itab like ztable occurs 0 with header line.

then try to insert.

bcoz mandt will be also there as a field.

will not be any problem.

rgds

anver.

Read only

Former Member
0 Likes
417

Hi

If you are in non-unicode system, just remove the

check box "Unicode Checks Active" in program attributes.

Incase you are in Unicode system, check that the

structure of the internal table holding the data is same

as the structure of the table. Including field names,

data type and length.

Kind Regards

Eswar