Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Can a breakpoint effect program logic flow?

Former Member
0 Likes
464

Recently I noticed some unexpected printing problems while working with a transaction. I was able to duplicate the problem, but nobody else on my team seemed to be effected by it.

The only common link seemed to be that I had a username breakpoint put inside one of the programs within the transaction so each time the transaction executed I was breaking into the ABAP debugger and then hitting F8 to continue.

I had put the breakpoint "break userid." there to make it easier to debug in development in case I wanted to easily step through that part of the process, but after taking it out I noticed that my printing problem nolonger seemed to effect me.

I would expect the same program to behave exactly the same regardless of whether it breaks into the debugger or not. Is it possible for the debugger to effect the outcome of a program, and are there any wierd things breakpoints can do?

1 REPLY 1
Read only

Former Member
0 Likes
413

No, Breakpoints wouldnt effect the program flow logic.

since you used break userid. This breakpoint will be active only for your userid. so others will not be effected by this.

Thanks

Kiran