<?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 BREAK POINTS &amp; DEBUGGING in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384329#M529733</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi.&lt;/P&gt;&lt;P&gt;plz suggest me the Use of &amp;lt;b&amp;gt;BREAK POINTS&amp;lt;/b&amp;gt; in reports and also use of &amp;lt;b&amp;gt;DEBUGING..&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;plz give me the steps to develop the same.&lt;/P&gt;&lt;P&gt;plz help me,&lt;/P&gt;&lt;P&gt;mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2007 15:46:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-14T15:46:24Z</dc:date>
    <item>
      <title>BREAK POINTS &amp; DEBUGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384329#M529733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi.&lt;/P&gt;&lt;P&gt;plz suggest me the Use of &amp;lt;b&amp;gt;BREAK POINTS&amp;lt;/b&amp;gt; in reports and also use of &amp;lt;b&amp;gt;DEBUGING..&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;plz give me the steps to develop the same.&lt;/P&gt;&lt;P&gt;plz help me,&lt;/P&gt;&lt;P&gt;mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 15:46:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384329#M529733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T15:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK POINTS &amp; DEBUGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384330#M529734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahesh,&lt;/P&gt;&lt;P&gt;You can use break point in any program by Clicking Stop sign on your application tool bar and as you run it, it will stop at that part of code. Its user and session specific.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Debugging, you don't need to point break point, you can write /h in application tool bar and press enter, your debugging is switched on and then you can debug full code step by step, this technique is very useful for debugging standard SAP program where we need to see full code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is one more thing called watchpoint which you can put specific to some variable and as soon as variable value changes, you watchpoint will be trigger.&lt;/P&gt;&lt;P&gt;but first you need to create watchpoint for same variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope it clears your doubt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 15:52:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384330#M529734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T15:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK POINTS &amp; DEBUGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384331#M529735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,thanks for the replye..&lt;/P&gt;&lt;P&gt;can u plz tell why the Debuging is required...&lt;/P&gt;&lt;P&gt;plz tell me&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;&lt;P&gt;mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 15:55:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384331#M529735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T15:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK POINTS &amp; DEBUGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384332#M529736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Considering the complexity,the programs which we develop may not always behave as we expect. The syntax errors will get solved easily. But when we do mistakes while converting the business logic into actual program code logic then the actual requirement will be different than what the program actually does. Such a behaviour will become a bug and to remove that we need to look at the program when it is acutally running, to know the values which are getting stored in the varialbles. This is the point at when break-points help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Debugging helps us resolve the logic mistakes which we do while coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Madhusudhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 16:05:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384332#M529736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T16:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK POINTS &amp; DEBUGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384333#M529737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;SAP has a very powerful debugger tools in which you can view the data and change date in runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Krushna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 16:07:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384333#M529737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T16:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK POINTS &amp; DEBUGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384334#M529738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/84/1f624f4505144199e3d570cf7a9225/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/84/1f624f4505144199e3d570cf7a9225/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here are some FAQ's over debugging,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Frequently Asked Questions &lt;/P&gt;&lt;P&gt;HOME:#How do I debug background Processes? &lt;/P&gt;&lt;P&gt;HOME:#How do I debug completed background process? &lt;/P&gt;&lt;P&gt;HOME:#How do I debug remote function calls? &lt;/P&gt;&lt;P&gt;HOME:#How do I debug Updates/System code? &lt;/P&gt;&lt;P&gt;HOME:#Why does it give a dump when I put a break-point in between SELECT and ENDSELECT? &lt;/P&gt;&lt;P&gt;HOME:#How do I set breakpoints in modal dialogs? &lt;/P&gt;&lt;P&gt;HOME:#How do I switch between the Classic and New Debugger? &lt;/P&gt;&lt;P&gt;HOME:#Where can I find more documentation? &lt;/P&gt;&lt;P&gt;How do I debug background Processes?&lt;/P&gt;&lt;P&gt;In transaction SM50 (process overview), you can select a background process and choose Program/Mode -&amp;gt; Program -&amp;gt; Debugging from the menu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An alternative workaround, which allows you to step into a particular piece of code is to place a piece of code in a endless DO-ENDDO, where you can change a variable to step out of the DO at a particular point in your code. This allows you to hold the process at that point and debug it from SM50 as described above. An implementation of this exists in function module C160_HOLD_FOR_DEBUG, which will enter the endless loop if a particular environment variable is set, thereby allowing you to control its behaviour. (Further instructions are found in the comments in subroutine INC14Z_HOLD_FOR_DEBUG of include LC14ZFCB).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I debug completed background process?&lt;/P&gt;&lt;P&gt;You can do this only after the job has finished execution. This will simulate the exact background scenario with the same selection screen values as used in the job and sy-batch set to 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use SM37 to get list of jobs , type 'JDBG' in the command line ( no '/' ), put the cursor on the job and press ENTER &lt;/P&gt;&lt;P&gt;You are in debug mode now. Step through SAP program (press F7 couple of times) until you get to code you need. &lt;/P&gt;&lt;P&gt;How do I debug remote function calls?&lt;/P&gt;&lt;P&gt;You can use the same techniques as described in HOME:#How do I debug background Processes? above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I debug Updates/System code?&lt;/P&gt;&lt;P&gt;Both options are available from the menu in debugging. Choose Settings -&amp;gt; System/Update Debugging to activate either before proceeding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why does it give a dump when I put a break-point in between SELECT and ENDSELECT?&lt;/P&gt;&lt;P&gt;A breakpoint in SELECT loops can cause an exception through loss of the database cursor. The reason for this is that during debugging a database commit is triggered and hence the cursor is lost.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I set breakpoints in modal dialogs?&lt;/P&gt;&lt;P&gt;There are two similar approaches to set breakpoints in modal dialogs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Approach 1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on the Create shortcut icon on the toolbar. &lt;/P&gt;&lt;P&gt;In the popup window choose "System command" and in the command enter "/h" &lt;/P&gt;&lt;P&gt;A shortcut on the desktop would be created &lt;/P&gt;&lt;P&gt;Drag and drop the shortcut to the modal window to set debugging on. &lt;/P&gt;&lt;P&gt;Approach 2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a txt file on the desktop with the following lines: &lt;/P&gt;&lt;P&gt;[HOME:FUNCTION]&lt;/P&gt;&lt;P&gt;Command=/H&lt;/P&gt;&lt;P&gt;Title=Debugger&lt;/P&gt;&lt;P&gt;Type=SystemCommandDrag and drop this file to the modal window to set debugging on. &lt;/P&gt;&lt;P&gt;How do I switch between the Classic and New Debugger?&lt;/P&gt;&lt;P&gt;From within the ABAP workbench, select the Utilities-&amp;gt;Settings Menu &lt;/P&gt;&lt;P&gt;Select the ABAP Editor Tab &lt;/P&gt;&lt;P&gt;Select the Debugging tab within the ABAP Editor Tab &lt;/P&gt;&lt;P&gt;Select the Classic Debugger or New Debugger radio button &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Naren Someneni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 16:21:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384334#M529738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T16:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK POINTS &amp; DEBUGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384335#M529739</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 Point is the signal, which specifies in the program. break point tells the system to stop  the program execution in normal mode and starts the program executes under debugging mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Break point are two types,&lt;/P&gt;&lt;P&gt;Static Break Point and&lt;/P&gt;&lt;P&gt;Dynamic break point&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Static break point:&amp;lt;/b&amp;gt; static break points are set up with BRERK POINT key word inside the program&lt;/P&gt;&lt;P&gt;break points are applicable each execution of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Dynamic break point:&amp;lt;/b&amp;gt; dynamic break points are not visible in the source code.&lt;/P&gt;&lt;P&gt;position the cursor over the source code line to have the break point and the select UTILITY--&lt;DEL&gt;-&amp;gt;BREAK POINT&lt;/DEL&gt;--&amp;gt;SET.&lt;/P&gt;&lt;P&gt;Dynamic break points are applicable to single execution of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Purpose Of the Debugging:&amp;lt;/b&amp;gt; We use Debugging to Analyse the result of  every program statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Transaction code for debugging is /h&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow this link for more information.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saplinks.net/index.php?ion=com_content&amp;amp;task=view&amp;amp;id=24&amp;amp;Itemid=34" target="test_blank"&gt;http://www.saplinks.net/index.php?ion=com_content&amp;amp;task=view&amp;amp;id=24&amp;amp;Itemid=34&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/43/95a6c84f7c60b7e10000000a11466f/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/43/95a6c84f7c60b7e10000000a11466f/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ashokreddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 16:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384335#M529739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T16:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: BREAK POINTS &amp; DEBUGGING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384336#M529740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to se38-&amp;gt;give ur program name-.execute-&amp;gt;give /h at command prompt-&amp;gt;execute-&amp;gt;now debugging will start-&amp;gt;&lt;/P&gt;&lt;P&gt;f5-used for line by line debugging&lt;/P&gt;&lt;P&gt;f6-used for directly executing function modules or performs i.e. control won't go into that block.&lt;/P&gt;&lt;P&gt;f7-run to cursor&lt;/P&gt;&lt;P&gt;f8-direct executing.&lt;/P&gt;&lt;P&gt;fileds: here we can check fild values.&lt;/P&gt;&lt;P&gt;click fileds option and double click on the filed or type the filen name beside filed&lt;/P&gt;&lt;P&gt;tables : here we can check the data in the internal table.&lt;/P&gt;&lt;P&gt;click tables option and double click on the internal table.&lt;/P&gt;&lt;P&gt;Break points:&lt;/P&gt;&lt;P&gt;if you want to debug a particulr part you can use this.&lt;/P&gt;&lt;P&gt;place the cursor at any perform click breakpoint or double click on that line.it will be set.&lt;/P&gt;&lt;P&gt;if /h from report statement it will debug,so for debugging from particular point we will use break points.use f7 to traverse between multiple break points.&lt;/P&gt;&lt;P&gt;Watch-points: In some cases we need to check the data populated in the internal table for eample if we want to check the data of internal table record belongs to 100th vendor we will create watch point for this goto-&amp;gt;breakpoints-&amp;gt;create watch points-&amp;gt;give filed itab-lifnr-&amp;gt;=-&amp;gt;100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;debugging procedure:&lt;/P&gt;&lt;P&gt;Use '/H' in the command line and execute the report/program, so that it goes to debugging mode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. keep a hard coded break point in the code like BREAK-POINT and it stops there.&lt;/P&gt;&lt;P&gt;3.From the program Menu, Keep the Soft Break-points and do the debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the links&lt;/P&gt;&lt;P&gt;Refer to this thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2927746"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc" target="test_blank"&gt;http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/5a/4ed93f130f9215e10000000a155106/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/5a/4ed93f130f9215e10000000a155106/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc" target="test_blank"&gt;http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/84/1f624f4505144199e3d570cf7a9225/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/84/1f624f4505144199e3d570cf7a9225/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_bw30b/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_bw30b/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3102666"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saplinks.net/index.php?option=com_content&amp;amp;task=view&amp;amp;id=24&amp;amp;Itemid=34" target="test_blank"&gt;http://www.saplinks.net/index.php?option=com_content&amp;amp;task=view&amp;amp;id=24&amp;amp;Itemid=34&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the SAP help link below&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 16:57:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/break-points-debugging/m-p/2384336#M529740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T16:57:28Z</dc:date>
    </item>
  </channel>
</rss>

