
Settings and Warnings
From the Debugger, you can set the debugging mode and the system behavior in the event of a kernel warning by choosing Settings.
System Debugging
If you set this option, the Debugger is also activated for system programs (programs with status S in their program attributes). When you save breakpoints, the System debugging setting is also saved.
Update Debugging
Update function modules do not run in the same user session as the program that is currently running in the ABAP Debugger. These function modules are therefore not included in debugging. Only if you select the Update debugging option can you display and debug them after the COMMIT WORK.
Always Create Exception Object
The following functions are supported for class-based exceptions:
Memory Monitoring
If you choose Settings and check Memory Monitoring or choose Settings ® Memory Monitoring, the system will inspect the roll area of the current modus after every ABAP statement. This allows you to check whether neighboring memory areas have been overwritten.
Check Sorting Before READ BINARY SEARCH
If you checked this function, the system checks whether the internal table is sorted before every execution of this statement. If the table is not sorted, a runtime error occurs. However, you should only activate this setting shortly before reaching a relevant point in the source code, because there can be a significant loss in performance, depending on the table size.
Check Sorting Before PROVIDE
If this function is selected, the system, during execution of the long form of the
PROVIDE statement, checks all the tables involved for sorting and overlapping intervals and not just the area specified with extlim1 and extlim2.Automation Controller
This Debugger option controls the way in which requests to automation objects (Automation Server and GUI controls) are processed.
1. If the option is not set, the requests are processed as they would normally be in the ABAP program. Requests with the NO FLUSH addition are not processed until
2. If you select this option, all requests are processed synchronously, regardless of any NO FLUSH additions.
This helps you to find errors. If an error occurs when the automation queue is being processed, the synchronous request processing option allows you to identify the request in which the error occurred.

Enabling this option dramatically affects the runtime of the program, since the ABAP program cannot continue processing until the request has been executed by the receiver. You must bear in mind that the receiver – the automation server or control on the presentation server – may be linked using a slow WAN connection.
For further information, refer to
ABAP as an OLE Automation Controller.
In Background Task: Do not Process
When you debug a program that calls function modules using the IN BACKGROUND TASK addition, they are processed in a background work process (additional internal session). If you set the In background task: Do not process option, the system collects the function calls, but does not start the background work process. The Debugger assigns a transaction ID, which identifies the background work process uniquely. You can now start the Debugger for the background work process using transaction SM58. You can select the function module concerned here, and then execute it via the Edit menu.
Runtime Warnings
The profile parameter abap/warnings controls the behavior of the R/3 System when a kernel warning occurs. You can display and change it using Transaction RZ11. The Debugger also allows you to override the default setting of this parameter during your debugging session by choosing one of the following three options:

You can display the last runtime error that occurred by choosing Development ® Display last short dump. You can also use the transaction last_shortdump.
Validity of Settings
The settings in the ABAP Debugger have a different validity:
For more details on sessions and user sessions, refer to Modularization Techniques in the ABAP keyword documentation.