SAP ABAP - Modifying a Group of Lines
Published November 13, 2009
Modifying a group of lines of an internal table
Use the variations of the modify command to speed up this kind of processing.
Not recommended
Loop at int_fligh.
If int_fligh-flag is initial.
Int_fligh-flag = 'X'.
Endif.
Modify int_fligh.
Endloop.
Recommended
Int_fligh-flag = 'X'.
Modify int_fligh transporting flag where flag is initial.