SAP / SAP Beginner (0 2 yrs) Interview questions
What is the difference between a static breakpoint (BREAK-POINT statement) and a dynamic breakpoint?
A static breakpoint is the BREAK-POINT statement written directly into the ABAP source code
— it's part of the program itself, so it pauses execution for every user running that program
until a developer removes the line and re-releases the code. A dynamic breakpoint (session or external) is set
outside the source code entirely, through the editor or debugger UI, and doesn't modify the program at all.
| Static (BREAK-POINT) | Dynamic (session/external) |
| Written into the source code itself. | Set externally, without touching the code. |
| Affects every user running the program. | Typically scoped to your session (or configured users). |
| Requires a code change (and transport) to remove. | Cleared automatically when the session ends, or manually removed anytime. |
Because a forgotten BREAK-POINT statement left in production code would pause the program for
every user hitting that line, dynamic breakpoints are generally the safer, preferred choice for day-to-day
debugging, reserving static breakpoints mainly for code you're actively developing and about to remove before
release.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
