‎2007 Aug 16 3:52 PM
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
‎2007 Aug 16 3:59 PM
Hi vineel,
try
DO VARYING WRK_HF FROM WRK_CL69(1) NEXT WRK_CL68(1).
Regards,
Clemens
‎2007 Aug 16 3:59 PM
Hi vineel,
try
DO VARYING WRK_HF FROM WRK_CL69(1) NEXT WRK_CL68(1).
Regards,
Clemens
‎2007 Aug 16 5:13 PM
hi
good
check with your variable declaration type in the debug mode and than see the difference.
thanks
mrutyun^
‎2007 Aug 16 5:22 PM
Hi Mrutyunjaya
hi
better
What is the variable declaration of variable offsets in debugger ?
Regards,
Clemens