Performance tools in abap
ST05 -- Performance trace (Activate the trace, Deactivate the trace, Display the trace).
Report
REPORT zab_performance_tool.
TABLES: zstu.DATA: it_zstu TYPE TABLE OF zstu,
it_zstu1 TYPE TABLE OF zstu.
SELECT-OPTIONS: s_id FOR zstu-zstu_id.
IF s_id IS NOT INITIAL.
SELECT *
FROM zstu
INTO TABLE it_zstu
WHERE zstu_id IN s_id.
ENDIF.
SELECT zstu_id
FROM zstu
INTO TABLE it_zstu1
WHERE zstu_id IN s_id.
-----------------------------------------------
* Select row and click on 'Display ABAP call location'.
* Goto T-code ST05 activate the trace.
* Now deactivate the trace.
* Right click on program name and choose filter option and give program name.
* Select 1.629 row and click on 'Display ABAP call location'.
*************End of ST05*******************
* Click on Run checks.
SE30/SAT -- Old runtime analysis tool/ Runtime analysis tool.
Old - SE30.
New - SAT
* Goto T-code SAT.
* Give program name and execute.Back.
*************End of SAT*******************
EPC - Extend program check.
- Used for static code check.
- Static means no need to run the program.
- Mainly used for removing unwanted code in program.
* Goto T-code SE38 give program and click on display.
* Program -> check -> Extend program check.
* Select all in checks tab.
* Click on Run checks.
Comments
Post a Comment