ABAP Performance Tuning - Tips & Tricks
Content
Introduction
Using Selection Criteria
Using Aggregate Functions
Using Views instead of Base Tables
Using the Into Table clause
Modifying a group of lines
Use of Binary Search option
Appending Internal Tables
Using Table Buffering
Use of FOR ALL entries
Proper Structure of the WHERE clause
Proper use of the MOVE statement
Proper use of INNER JOIN statement
Use ABAP SORT instead of ORDER BY
Performance Analysis Tools
  ABAP Performance Tuning - Tips & Tricks
-Modifying a group of lines-
 
Page 6 Of 15

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.

 
Stats Box
Vendor Listings (9)
Jobs (3)
Resumes (3)
Tutorials (18)
Articles (22)
Code Snippets (1)
CBTs (17)
Books (4)
Online Training (15)
Latest 5 Tutorial
SAPscript
SAP Mobile Engine
Integrating XML into SAP Business Connector
Lotus Notes Integration
SAP Data Archiving
 
Copyright © 2007 SapDox.com. All rights Reserved.