<?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: ABAP Debugging in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720722#M314598</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to put break point in ur program and then execute directly. The program will stop at break point and then onwards you can debug the program. You can put hard-coded break points also in your program by using statement break-point or break &amp;lt;your your id&amp;gt; also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;break-point.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;here is ur hard coded breakpoint statement. or you can use the break point from application toolbar also.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;select * from&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Nov 2006 21:15:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-28T21:15:22Z</dc:date>
    <item>
      <title>ABAP Debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720718#M314594</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;I am a student learning SAP ABAP. I am trying to debug a program using /h and when i execute it it takes me to some main program instead of my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i resolve this issue ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2006 21:10:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720718#M314594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-28T21:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720719#M314595</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;  Put a break point in your program and execute it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2006 21:12:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720719#M314595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-28T21:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720720#M314596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps you may want to code like this in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BREAK &amp;lt;sy-uname&amp;gt;.      &amp;lt;---- your logon ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So when you are in debugging mode and hit continue button, the system will stop at your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&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>Tue, 28 Nov 2006 21:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720720#M314596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-28T21:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720721#M314597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you do /H, this turns the debugger on immediatly, so you actually start by debugging the ABAP code of the system.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So go to SE38 and put a breakk point in your code.  Put your cursor on a line and hit the "Stop" sign icon on the toolbar.  Now run your program using F8,  the program will stop in debug mode at your break point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2006 21:13:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720721#M314597</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-28T21:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720722#M314598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to put break point in ur program and then execute directly. The program will stop at break point and then onwards you can debug the program. You can put hard-coded break points also in your program by using statement break-point or break &amp;lt;your your id&amp;gt; also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;break-point.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;here is ur hard coded breakpoint statement. or you can use the break point from application toolbar also.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;select * from&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2006 21:15:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-debugging/m-p/1720722#M314598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-28T21:15:22Z</dc:date>
    </item>
  </channel>
</rss>

