Application Development 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: 

Question about modify statement

Former Member
0 Kudos

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

former_member583013
Active Contributor
0 Kudos

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

Former Member
0 Kudos

How did you declare internal table resultado_mod.?

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

ashish

former_member583013
Active Contributor
0 Kudos

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.

Former Member
0 Kudos

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