REPORTS
● A report in SAP ABAP is presenting the data in an
organized manner.
●Reports are used when we need to display the bulk of data
in a systematic way.
CLASSICAL REPORTS
A classical report is created by using the output data in the
WRITE statement inside a loop.
SAVE
CHECK
ACTIVATE
EXECUTE
DECLARATION
FETCHING DATA
DISPLAYING
EXECUTION
DEBUGGING
●Debugging is a technique by which we can find the error, correct the error and detect the error.
●There are 2 ways of debugging.
- Setting the breakpoint on any executable statement.
-With the transaction code /h.
There are 4 execution keys in debugging mode.
F5 - Step by step execution
F6- Line by line execution
F7 - Return
F8 - Continuous execution or exit
SY-SUBRC - System variable for return code(successful = 0, not successful = other than 0).