‎2008 May 14 7:59 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 8:02 AM
‎2008 May 14 8:02 AM
‎2008 May 14 8:02 AM
works fine for me.
Is this the whole coding or anything left out? What error message are you getting?
‎2008 May 14 8:02 AM
Hi,
I tried with this:I didn't get any error.
data: count type i.
Do 111 times.
count = count + 1.
enddo.
write:/ count.
Regards,
Shiva K
‎2008 May 14 8:05 AM
Just u declare like this
data : lv_count(10) type c.
lv_count = lv_count + 1.
The problem will be solved.
Regards,
Lokesh
‎2008 May 28 6:48 AM