Abap How To Debug
Abap How To Debug
The New ABAP Debugger was first released by SAP with NetWeaver04. As of release
NetWeaver 7.0 it fully replaces in the scope of its functionality the “old-fashioned”
Classic ABAP Debugger. During the last SAP TechEds I learned that more and more
people use the New ABAP Debugger (that is a great news!) but still many are not aware
of some of its useful features. The purpose of this blog is to point you to these features so
that you can make the most of the New ABAP Debugger.
System Debugging: if you have problems that involve system programs (such as a
function that can’t be accessed in the debugger), turn on this setting (or use menu
Settings->System debugging On/Off ” or the command /hs in the debugger command
field). You can declare a program as a system program by setting Status to “System
Program” in its attributes in the ABAP Editor (SE38) (check the radiobutton Attributes
and press Change button).
Update Debugging: turn on this setting if you need to analyze asynchronous updates,
which are functions that are called as follows: CALL FUNCTION ‘…’ IN UPDATE
TASK. These functions are executed asynchronously in a special update work process
(after the next COMMIT WORK statement). The debugger can’t follow them since it
is attached to a single process. Set a breakpoint in the function that is called IN
UPDATE TASK, start debugging, turn on this setting, and the debugger will reach the
breakpoint in your update function.
TRFC (In Background Task): Block Sending: turn on this setting if you need to
analyze transactional Remote Function Calls (TRFC), which are called as follows:
CALL FUNCTION ‘…’ IN BACKGROUND TASK. These functions are called
asynchronously, along with other TRFC functions of this logical unit of work (LUW),
after the next COMMIT WORK statement. The debugger can’t follow them since it is
attached to a single process. When you turn on this setting, these TRFC functions are
stored in the system for debugging instead of being sent. Use the TRFC Monitor
(transaction SM58) to analyze the unprocessed LUWs and select Edit->Debug LUW
to debug them.
Close debugger After ‘Continue’ (F8) and Roll Area End: usually after you press
Continue (F8) in the debugger session, the debugger session remains available but
inactive when the program is finished. If you switch on this setting, then the debugger
will be closed automatically after pressing Continue (F8), when the roll area (internal
session) is ended.
Always Create Exception Obj.: turn on this setting if you need to analyze exception
objects (if you catch ABAP exceptions in your program via the CATCH
CX_MY_EXCEPTION without specifying a reference variable to which the exception
object can be assigned). You can then examine the created exception objects in the
debugger via Display Exception Obj. magnifier button.
In order to ensure that your colleague can reproduce the problem, you must create a very
detailed description: the source lines at which to set breakpoints, the debugger settings that
must be active, and so on. This is time consuming and there is still a chance that you might
forget critical information. In such situations, use a debugger variant (menu Debugger-
>Debugger Session->Save) to store your debugger session. You can choose which parts to
store: current layout (customized desktops), debugger settings, options and breakpoints. Then
you can save the variant either in the database or in a local file and send it per email to your
colleague.
Afterwards your colleague can load the saved variant from a file or the database after starting
a debugging session (menu Debugger->Debugger Session->Load). All settings and
breakpoints will become active immediately. Of course he can choose which components of
the variant to load: layout, settings, options, breakpoints, or all of them.
How to display all loaded programs and
global variables – Use the Loaded Programs
Tool
A double-click on the variable name in the source code leads to the Variable Fast Display
Tool where you get information about variable: type, value, etc. On the Locals tab you get all
parameters (including parameter kind) and local variables of the current function module, on
the Globals tab, you can display all global variables of the current program. But sometimes
this local and global information is not enough; you maybe need to display all currently
loaded programs and their global variables as well. For this purpose, use the Loaded
Programs Tool (button New Tool, Special Tools->Loaded Programs).
Loaded Programs shows you two tabs. On the Loaded Programs tab you see the attributes of
all loaded programs and their program groups. On the Global Data tab you get global
variables of each global program just by double-clicking the program in the navigation tree.
In order to assure good performance of the diff tool, even for deeply nested variables no “deep
diff” is executed.
This means that if you have for example an internal table as the attribute of an object, then
you can at first only check if the tables of both objects are equal. You will not get details
about where they differ. To get the details of differences, you can run a diff for the unequal
subcomponents (Diff button in the corresponding result line). You can use the History tab to
get back to the first result list.