I have my internal table it_mseg
. In this table, there is a field called amnt
.
I want to check for each row in it_mseg
, if the field amnt
is greater equal 10. If it is, I want to delete it from the internal table.
So that at the end, when I display the table using ALV-Grid, only the rows where the value of the field amnt
is lower equal 10 will be displayed.
I know that this is somehow done with Loop at it_mseg
, but I just can't get it right.
EDIT: I want to do it with a loop, so I can do something more complex than just GE 10.