‎2007 Dec 31 6:11 AM
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
‎2007 Dec 31 6:17 AM
‎2007 Dec 31 6:29 AM
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.
‎2007 Dec 31 6:49 AM
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