what is difference between break and watch point
Answers were Sorted based on User's Feedback
Answer / ananth
BREAK POINT
The BREAK POINT is a debugging aid. When we run a program
normally, it is interrupted at the statement, and the
system automatically starts the debugger, allowing you to
display the contents of any fields in the program and check
how the program continues. If the program is running in the
background or in an update task, the system generates a
system log message.
WATCH POINT
Indicator in a program that tells the ABAP runtime
processor to interrupt the program at a particular point.
Is This Answer Correct ? | 20 Yes | 3 No |
Answer / chandu
Break-point: It is used as line by line debugging.
Watch-point : It is used for Conditional debugging.
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / sudhanshu billore
breakpoint :
The breakpoint "pauses" the program execution once you reached the specified line. From there onwards u can execute line-by-line, check the contents of the registers etc... This is for debugging purposes.
watch point:
the watch point only "pauses" the execution of the program once the variable and value of the watchpoint that you specified matches. Ex. your watchpoint is var1 = 1234. Until var1 is not 1234 your program will continue to execute and will pause only when it reached the 1234 value.
Remember both will "pause" the flow not "stop" bcoz after reaching that point program won't terminate, you can execute further.
Is This Answer Correct ? | 4 Yes | 1 No |
how many main windows you can maintain in a smartform? wt is the types of window in smartform?
I have one selection screen field which is meant for only display what will You do?
what connects smartform to it's driver program?
Hi to all abap guru's my question is how to print the page numbers like 2 4 6 on all pagess in smart forms means 2 on first page 4 on second page thanks in advance
what is check table..what is domain?
What is static attribute
What are subroutines? : abap modularization
What is the effect on Customer Exits and User Exits maintained in a system on Up-gradation .
how to create a button in selection screen?
how do you transport FORM from one server to another server ?
Which transaction code can I used to analyze the performance of ABAP program.?
Difference between Read and Get cursor?