Doubt in internal table record count
Hi,
i have an internal table with 5 fields. Last field is flag. In my internal table lot many records are there. i want to count only the records with flag 'E'. How to count the total records with 'E'.
Mohana
Jay Raj replied
itab_temp[] = itab[]. delete itab_temp where flag NE 'E'. describe table itab_temp line lv_lines.