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 error

Former Member
0 Likes
277

"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

1 REPLY 1
Read only

former_member386202
Active Contributor
0 Likes
262

Hi,

Declare FILED1 as same datatype in both the structure.

Regards,

Prashant