0% found this document useful (0 votes)
4 views2 pages

SAP Debugging Techniques Overview

This document discusses different debugging options available in ABAP including system debugging, update debugging, normal debugging, breakpoints, and watchpoints. System debugging allows debugging of system programs. Update debugging enables debugging of update function modules after a commit. Normal debugging uses dynamic and static breakpoints. Breakpoints cause a program to stop at a specific line when executed. Watchpoints allow setting a condition and the program will stop when that condition is satisfied, such as when a variable equals a certain value.

Uploaded by

chintasriram
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

SAP Debugging Techniques Overview

This document discusses different debugging options available in ABAP including system debugging, update debugging, normal debugging, breakpoints, and watchpoints. System debugging allows debugging of system programs. Update debugging enables debugging of update function modules after a commit. Normal debugging uses dynamic and static breakpoints. Breakpoints cause a program to stop at a specific line when executed. Watchpoints allow setting a condition and the program will stop when that condition is satisfied, such as when a variable equals a certain value.

Uploaded by

chintasriram
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Vok0FOR PRICING CATALOG

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.

Normal Debugging

Normal debugging is the one we do it by the normal dynamic break points or by /H or by using stattic break
points.

You can switch to diffferent debuggin modes while processing.

BREAKPOINT

In the source code we set the Break-point there by clicking the stop button, the system will stop there when you
execute the program.

Watchpoint

For watchpoints, we need to give some condition and when this condition is satisfied, program will stop

example : if you want to debug only


for matnr value 100 than set watch point

matnr = 100. when value reaches 100 than

program stops at that point.

You might also like