Hi all
In my ALV report, in primary list i ll select some records . to count the number of records get selected, i used a loop.
Below is my piece of code.
count = 0.
loop at int where box = 'X'.
count = count + 1.
endloop.
but client says not to use loop.
how can i do that?
Regards
Karthik