Wer es trotzdem tun möchte (bzw. muss), sollte sich mal folgendes coding anschauen...
field-symbols:
<x1> type x,
<x2> type x.
define move_unicode.
assign &1 to <x1> casting.
assign &2 to <x2> casting.
Move <x1> to <x2>.
end-of-definition.
...
MOVE_UNICODE STRUC TO DATA_FIELD.
<x1> type x,
<x2> type x.
define move_unicode.
assign &1 to <x1> casting.
assign &2 to <x2> casting.
Move <x1> to <x2>.
end-of-definition.
...
MOVE_UNICODE STRUC TO DATA_FIELD.
und schon gibts keinen Syntaxfehler mehr.