‎2008 May 14 7:37 AM
hi all,
I am using the following logic for counter:
data: count type i.
count = count + 1.
but when the value gets to double figures i.e. 10 for count then the count value becomes *. giving error at this stage.
Any suggestions. Thanks.
Regards,
FS
‎2008 May 14 7:51 AM
Hi FS,
i tried your code but iam not getting any error ,
run this code
data: count type i.
do 20 times.
count = count + 1.
enddo.
write: count.
Regards
Adil
‎2008 May 14 7:51 AM
Hi FS,
i tried your code but iam not getting any error ,
run this code
data: count type i.
do 20 times.
count = count + 1.
enddo.
write: count.
Regards
Adil
‎2008 May 14 8:01 AM
Hi,
declare counter as character and check.
data: variable(4).
Reward points