Hi
I have an internal table which is sort and i want at end of each material number to do something,but it never enters the code i have written after "at end of"
I have something like this:
sort itab ascending by matnr.
loop at itab into wa.
.......
at end of matnr.
do my code.
endat.
........
endloop
It never enters the code that is supposed to be run when the matnr is changed.
thanks