<?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 point in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882790#M677144</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;The Debugger contains different breakpoint variants:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static&lt;/P&gt;&lt;P&gt; The BREAK-POINT statement in an ABAP program. Static breakpoints are not normally user-specific. However, you can make them user-specific.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Directly-set&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dynamic breakpoints&lt;/P&gt;&lt;P&gt; Can be set in the ABAP Editor or the Debugger. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoints&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at statement&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly before the specified statement is executed. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoints&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at subroutine&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly before the specified subroutine is called.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoint at function module&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly before the specified function module is called.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoint at method&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly before the specified method is called.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoints at system exceptions&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly after a system exception, that is, after a runtime error has been intercepted.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Setting Dynamic Breakpoints in the ABAP Editor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can set dynamic breakpoints in the ABAP Editor regardless of whether you are in display or change mode. You can also set breakpoints directly from within the Debugger at runtime. To set a dynamic breakpoint in the ABAP Editor:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Position the cursor on the line of the source code at which you want to set the breakpoint. &lt;/P&gt;&lt;P&gt;Choose Utilities ® Breakpoints ® Set or the Stop icon. The system confirms that the breakpoint has been set. &lt;/P&gt;&lt;P&gt;To display a list of all dynamic breakpoints in a program, choose Utilities ® Breakpoints ® Display. You can use this list to navigate to a particular breakpoint or to delete one or more breakpoints from the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if u find use ful&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nagesh.Paruchuri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 29 Sep 2007 08:38:11 GMT</pubDate>
    <dc:creator>paruchuri_nagesh</dc:creator>
    <dc:date>2007-09-29T08:38:11Z</dc:date>
    <item>
      <title>break point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882787#M677141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sir&lt;/P&gt;&lt;P&gt;given me detail &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to create a berak point in any abap program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ritu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2007 08:25:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882787#M677141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-29T08:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: break point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882788#M677142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ritu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two types of break-points. Soft &amp;amp; Hard.&lt;/P&gt;&lt;P&gt;Soft break points can be set on a particular line of code by keeping cursor on that line and pressing the STOP push button on the toolbar. This break point is active only for that screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hard break point is created by putting a statement BREAK-POINT in the code. because of this, every time u execute the program, when ever the control comes to this break point it goes to dubugging mode. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this info is helpful to u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2007 08:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882788#M677142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-29T08:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: break point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882789#M677143</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;place the cursor where evr u want create break point and go for utilities-&amp;gt;break point-&amp;gt; set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or keep the cursor where u need break point and press stop button on top (red)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note the program should be active to create break point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2007 08:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882789#M677143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-29T08:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: break point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882790#M677144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;The Debugger contains different breakpoint variants:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static&lt;/P&gt;&lt;P&gt; The BREAK-POINT statement in an ABAP program. Static breakpoints are not normally user-specific. However, you can make them user-specific.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Directly-set&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dynamic breakpoints&lt;/P&gt;&lt;P&gt; Can be set in the ABAP Editor or the Debugger. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoints&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at statement&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly before the specified statement is executed. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoints&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at subroutine&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly before the specified subroutine is called.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoint at function module&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly before the specified function module is called.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoint at method&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly before the specified method is called.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Breakpoints at system exceptions&lt;/P&gt;&lt;P&gt; The Debugger stops the program directly after a system exception, that is, after a runtime error has been intercepted.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Setting Dynamic Breakpoints in the ABAP Editor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can set dynamic breakpoints in the ABAP Editor regardless of whether you are in display or change mode. You can also set breakpoints directly from within the Debugger at runtime. To set a dynamic breakpoint in the ABAP Editor:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Position the cursor on the line of the source code at which you want to set the breakpoint. &lt;/P&gt;&lt;P&gt;Choose Utilities ® Breakpoints ® Set or the Stop icon. The system confirms that the breakpoint has been set. &lt;/P&gt;&lt;P&gt;To display a list of all dynamic breakpoints in a program, choose Utilities ® Breakpoints ® Display. You can use this list to navigate to a particular breakpoint or to delete one or more breakpoints from the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if u find use ful&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nagesh.Paruchuri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2007 08:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882790#M677144</guid>
      <dc:creator>paruchuri_nagesh</dc:creator>
      <dc:date>2007-09-29T08:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: break point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882791#M677145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ritu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this SAP documentation&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/b0/940640555ae369e10000000a155106/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/b0/940640555ae369e10000000a155106/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pankaj Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2007 10:07:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-point/m-p/2882791#M677145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-29T10:07:47Z</dc:date>
    </item>
  </channel>
</rss>

