‎2008 Jan 12 8:03 AM
hi all
is there any statement to use loop at statement using sy-index or sy-tabix.
regards
karthik
‎2008 Jan 12 10:26 AM
Hi,
You can use sy-tabix in the internal tables.
like:
loop at itab into wa.
write: / sy-tabix. "gives the current loop count
endloop.
Regards,
Renjith Michael.