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: 

Unicode Incompatible

Former Member
0 Kudos

Hi,

I'm into ECC 6.0 upgradation and I'm getting a dump for a prgm in the following statement.

MOVE I_EDITPOS-TABKEY TO WK_KONP.

Declaration for the above statements are:

DATA: BEGIN OF WK_KONP.

INCLUDE STRUCTURE KONP.

DATA: END OF WK_KONP.

DATA: BEGIN OF I_EDITPOS OCCURS 0.

INCLUDE STRUCTURE CDRED.

DATA: END OF I_EDITPOS.

Pls suggest a solution.

Thanks,

Siva

3 REPLIES 3

Former Member
0 Kudos

Hi Siva,

You didn't mentioned the field to which you have to move the value.

Because of this I think problem is coming.

Former Member
0 Kudos

Hi,

Here you are trying to movie field TABKEY to a structure of type KONP. They both are incompatibel, so its giving a error. Create a different structure of type CDRED and then move into this structure.

Thanks & Regards,

Navneeth K.

Former Member
0 Kudos

Used method Fill_Container_C to solve this