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 |
A field containing currency amounts (data type curr) must be assigned to a reference table and a reference field. Explain.? : abap data dictionary
What is meant by performance analysis?
How do you backup Sapscript layout sets? Can you download and upload? How?
Give 3 scenario due to which you require Gap analysis in your project?
what is the diffrence between inner and outer join
what is the process of dialog program from first to last?
IN SCRIPTS IF WE HAVE EMPTY SECOND LAYOUT AND IF WE HAVE MENTIONED ABOUT IT IN NEXT PAGE ATTRIBUTE THEN IN OUTPUT HOW WE GET THE SECOND PAGE OUTPUT.
Tell the step by step procedure to print a smart form?
Explain how to create any functions? How to go about it?
5) How to rereive text elements in SF and script?
what is the meaning of movement type and how do we find this .....
A database table contains 3 fields(Student_no,Section,Total_marks).I want retrieve top 10 students from each section.Note:(Section contains data like A,B,C.Each section contains more than 10 students).