‎2008 Feb 04 9:10 AM
"PACKP" and "PACKC" are not mutually convertible. In Unicode programs, "PACKP"
must have the same structure layout as "PACKC", independent of the length of a
Unicode character.
data: begin of packc,
feld1(3) type c,
end of packc.
data: begin of packp,
feld1(3) type p,
end of packp.
packp = packc.----
> unicode error
‎2008 Feb 04 9:19 AM
Hi,
Declare FILED1 as same datatype in both the structure.
Regards,
Prashant