we are in the upgrade process from 4.6 to ecc6.
in the program there was a coding like this and it got error when we did uccheck.
MOVE INNNN TO DL_IT008.
because of the error, we change the coding to the following.
assign INNNN to <FS>.
move <FS> to DL_IT008.
unassign <FS>.
and when we run, we are getting dump says,
The statement
"MOVE src TO dst"
requires that the operands "dst" and "src" are convertible.
Since this statement is in a Unicode program, the special conversion
rules for Unicode programs apply.
In this case, these rules were violated.
any idea