<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Break points in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264966#M491397</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Break points:&lt;/P&gt;&lt;P&gt; A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The program runs normally until the breakpoint is reached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Watch Points:&lt;/P&gt;&lt;P&gt;Like a breakpoint, a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Murali&amp;lt;b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 May 2007 08:53:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-14T08:53:45Z</dc:date>
    <item>
      <title>Break points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264960#M491391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.What is the difference between a breakpoint and a watch point?&lt;/P&gt;&lt;P&gt;2.How many break points and watch points can u set in a single program?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 13:31:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264960#M491391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T13:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: Break points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264961#M491392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Breakpoints are where you want to stop in the code on a specific statement. Watchpoints are used to stop the processing when a variable reaches a certain condition, for example, you can set a watch point on a internal table field to have a certain value, then the debugger will stop when it hits that record in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you see the debugging screen it can display only 30 breakpoints but as such there is no limit of the number of breakpoints. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the BREAKPOINTS tab in the debugging screen. It can only show 30 of them. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dynamic Breakpoints &lt;/P&gt;&lt;P&gt;You can set up to 30 dynamic breakpoints without changing the program code. Dynamic breakpoints can be set either in the ABAP Editor or directly in the Debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 13:33:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264961#M491392</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-05-13T13:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Break points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264962#M491393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Break point - you can use this one complete program..&lt;/P&gt;&lt;P&gt;Watch Point - it is field level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;each program you can set up - 30 Break points.&lt;/P&gt;&lt;P&gt;watch point there is no limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;watch points example - suppose you have internal table- internal table has two fields like order no and material no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want see partcular record ,then create watch point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if it is useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 13:34:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264962#M491393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-13T13:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Break points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264963#M491394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="230066"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;check this one...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 02:56:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264963#M491394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T02:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Break points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264964#M491395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; In debugging of Program, we use Break points and watch points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; We can set soft break points in particular statement of program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; During execution, it will stop there and we can see the flow from there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; we can set watch points, to stop the program when Particular condition is reached in the statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  for ex : IF V_COUNT &amp;lt; 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; we can set the watch point V_COUNT = 580.During execution, it will stop when V_count reaches value 580. there we can see the flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Pl.refer following links for further information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="395465"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="388998"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; help.sap.com/saphelp_nw2004s/helpdata/en/c6/617cbee68c11d2b2ab080009b43351/content.htm &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Reward, if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks,&lt;/P&gt;&lt;P&gt; USR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 05:46:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264964#M491395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T05:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Break points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264965#M491396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi krishna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Apart from being able to execute an ABAP program in the Debugger, you can also start the Debugger call by the choosing a breakpoint. This is achieved by setting one or more of these breakpoints in the program. A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The Debugger is activated when the program reaches this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field change.Watchpoints allow you the option of monitoring the content of individual variables.The Debugger stops as soon as the value of the monitored variable changes.&lt;/P&gt;&lt;P&gt;about &amp;gt;30 break points and watch points can be created in the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IT PLEASE...!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        asha banu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 07:21:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264965#M491396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T07:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Break points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264966#M491397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Break points:&lt;/P&gt;&lt;P&gt; A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The program runs normally until the breakpoint is reached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Watch Points:&lt;/P&gt;&lt;P&gt;Like a breakpoint, a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Murali&amp;lt;b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 08:53:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264966#M491397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T08:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: Break points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264967#M491398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Durin Debugging we use break points ,watch points.If we set a break point the debugger will stop the debugging there and it will not further proceed.&lt;/P&gt;&lt;P&gt;We can set upto 30 break points.&lt;/P&gt;&lt;P&gt;Watch points r at the field level.It will not stop the debugger.&lt;/P&gt;&lt;P&gt;During debugging it is always useful to set the break points whereever we have doubt in our code so that it gives the exact information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 02:51:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points/m-p/2264967#M491398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T02:51:17Z</dc:date>
    </item>
  </channel>
</rss>

