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 conversion problem

Former Member
0 Likes
461

Hi all,

I am getting dump in ECC6 saying unicode conversion problem for below code. errror analysis saying that 'MOVE source TO destination is not convertible in unicode enabled program'. Plz help me in rectifying this error.

code:

loop at itab into wa.

-


endloop.

thanks in advance,

Steve

3 REPLIES 3
Read only

Former Member
0 Likes
434

Hi,

What is the type of itab and wa.are they same?

Read only

Former Member
0 Likes
434

Hi Stephen

try ASSIGN instead of MOVE.

Reward pts if help.

Deepanker

ASSIGN <f>[+<o>][(<l>)] TO <FS>.

When you assign parts of fields to a field symbol, the following special conditions apply:

The system does not check whether the selected part lies inside the field <f>. Both offset <o> and length <l> can be larger than the length of <f>. You can address memory beyond the boundary of <f>, but not beyond the data areas for field symbols.

If you do not specify the length <l>, the system automatically uses the length of the field <f>. If <o> is greater than zero, <FS> always points to an area beyond the limits of <f>.

If <o> is smaller than the length of <f>, you can enter an asterisk (*) for <l> to prevent <FS> from referring to an address beyond the limits of <f>.

Reward pts if help.

Read only

Former Member
0 Likes
434

Hi friends,

Thanks for ur kind response. The problem has been solved. Below link describes the problem which I got, based on that I resolved the issue.

http://help.sap.com/saphelp_nw04/helpdata/en/79/c5547cb3dc11d5993800508b6b8b11/content.htm

Thank you,

Steve