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 issue

Former Member
0 Likes
627

I'm upgrading SAP system from 4.6C to ECC 6.0

where I'm facing the following unicode error while doing UCCHECK:

The offset declaration "868" exceeds the length of the character-type start

(=863) of the structure. This is not allowed in Unicode programs.

in this line of abap code:

MOVE i_kna1+868(45) TO i_output1-field3.

5 REPLIES 5
Read only

Former Member
0 Likes
602

what is the program you are checking , can you let me know...

Read only

Former Member
0 Likes
602

i_kna1

INCLUDE STRUCTURE kna1

i_output1

field1(860) TYPE c,

field2(15) TYPE c,

field3(45) TYPE c,

field4(15) TYPE c,

field5(373) TYPE c,

LOOP AT i_kna1.

CLEAR i_output1.

MOVE i_kna1+868(45) TO i_output1-field3.

APPEND i_output1.

ENDLOOP.

Read only

0 Likes
602

Give the program name. so that i can check it in my system.

Read only

0 Likes
602

It is a Z program (z_custs). Not much of help for you.

Read only

Former Member
0 Likes
602