‎2006 Sep 21 2:13 PM
Hello Friends,
To know the number of lines on an internal table i am using,
loop at itab.
lines = lines + 1.
endloop.
is there any other way where i can do it without the loop statement.
Shejal Shetty.
‎2006 Sep 21 2:15 PM
‎2006 Sep 21 2:14 PM
‎2006 Sep 21 2:15 PM
‎2006 Sep 21 2:16 PM
Hello,
DATA:lv_cnt type i.
DESCRIBE TABLE ITAB LINES lv_cnt.
Regs,
Venkat
‎2006 Sep 21 2:18 PM
HI,
Do this way ..
include this statement
<b>Describe table it_mara lines v_line.</b>
call this statement after endloop statement ...
Regards,
Santosh
‎2006 Sep 21 2:18 PM
DATA : lv_record_count type i.
DESCRIBE TABLE int_tab LINES lv_record_count.
hith
Sunil Achyut
‎2006 Sep 21 2:20 PM
hi shejal,
do this.
data : num type i.
describe table int_table lines num.
write num.
rgds
anver
mark all helpful answers.
‎2006 Sep 21 2:55 PM