Site hosted by Angelfire.com: Build your free website today!

Performance and Tuning


Select* from Table
------
End select
^^^^^^^^^ Select single * from Table
(OR) Select * from table where field = ' '



Select* from Table
Move-correspong to ITAB
Append Itab
Endselect.
^^^^^^^^^ Select * from Table into Table ITAB



Select* from Table into ITAB
Loop at ITAB
*Do something
EndLoop
^^^^^^^^^ select single * from Table
*Do something
Endselect

Nested loops
Select* from Table1
Select* from Table2
------
End select
End select
^^^^^^^^^ Select with view
Select single * from View
-------
EndSelect