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

Question about modify statement

Former Member
0 Likes
457

Hi, when i try to use modify i have this error

the type of the database table and workarea (or internal table) are not unicode convertible.

modify /BIC/AZARDS05800 from table resultado_mod.

thanks.

<b><REMOVED BY MODERATOR></b>

Message was edited by:

Alvaro Tejada Galindo

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
434

Can you please post your code??? Not the whole of course -:) Just the tables definition and the Modify statement...

In Unicode environments, tables must be exactly the same...Same lenght and type, otherwise, Modify statements are not allowed...

Greetings,

Blag.

3 REPLIES 3
Read only

Former Member
0 Likes
434

How did you declare internal table resultado_mod.?

Please check the declaration once. It should fix the problem.

ashish

Read only

Former Member
0 Likes
435

Can you please post your code??? Not the whole of course -:) Just the tables definition and the Modify statement...

In Unicode environments, tables must be exactly the same...Same lenght and type, otherwise, Modify statements are not allowed...

Greetings,

Blag.

Read only

Former Member
0 Likes
434

Hi,

Make sure you have the following definition for the internal table..

data: resultado_mod type standard table of /BIC/AZARDS05800.

modify /BIC/AZARDS05800 from table resultado_mod.

Thanks

Naren