Hi,
Get Count of internal table data!!
DATA: lv_count type i,
lv_count1 type i .
Describe IT_DATA Line lv_count.
lv_count1 = 1.
Do Lv_count Times.
read it_data into wa_data index lv_count1.
lv_count1 = lv_count1 + 1.
enddo.
Thanks,
Anbusundaram