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 programing query

Former Member
0 Likes
483

Hi all,

Plz solve my query.

<b>DATA: wrk_hf,

wrk_cl(70) type c.

DO VARYING WRK_HF FROM WRK_CL69 NEXT WRK_CL68.</b>

For the above statement i am getting an error in unicode check.

Error: <b>"WRK_CL+68(2)" and "WRK_HF" are type-incompatible</b>.

plz help me in solving this.

Regards,

vineel

1 ACCEPTED SOLUTION
Read only

Clemenss
Active Contributor
0 Likes
467

Hi vineel,

try

DO VARYING WRK_HF FROM WRK_CL69(1) NEXT WRK_CL68(1).

Regards,

Clemens

3 REPLIES 3
Read only

Clemenss
Active Contributor
0 Likes
468

Hi vineel,

try

DO VARYING WRK_HF FROM WRK_CL69(1) NEXT WRK_CL68(1).

Regards,

Clemens

Read only

Former Member
0 Likes
467

hi

good

check with your variable declaration type in the debug mode and than see the difference.

thanks

mrutyun^

Read only

0 Likes
467

Hi Mrutyunjaya

hi

better

What is the variable declaration of variable offsets in debugger ?

Regards,

Clemens