A D V E R T I S E M E N T
|
S A P - R E S O U R C E S
Get Free SAP Resources:
Are you looking for:
- SAP Jobs
- Free SAP eBooks
- SAP Softwares
- SAP Tutorials
- ERP Implementation Examples
Search SAP Resources:
|
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.
A D V E R T I S E M E N T
|
|
|