<?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: Debbuging in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850723#M1134422</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;You can't directly debug a function pool program instead you can put a break point and execute the corresponding Tcode then if process reaches that level you can check that code in debugging&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Nov 2008 11:59:27 GMT</pubDate>
    <dc:creator>former_member206439</dc:creator>
    <dc:date>2008-11-20T11:59:27Z</dc:date>
    <item>
      <title>Debbuging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850719#M1134418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to debug a  function pool progrm how to do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 11:45:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850719#M1134418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T11:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Debbuging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850720#M1134419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot debug the Function-pool...instead you debug the Function Module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 11:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850720#M1134419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T11:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Debbuging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850721#M1134420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;enter inputs in selection screen ofter that put /h in menubar and exicute . It will go inside .&lt;/P&gt;&lt;P&gt;&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;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 11:50:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850721#M1134420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T11:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Debbuging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850722#M1134421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi saranya...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this out...but debuggin comes out of practise....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activate the Debugger before executing your ABAP program &lt;/P&gt;&lt;P&gt;System -&amp;gt; Utilities -&amp;gt; Debug ABAP/4 &lt;/P&gt;&lt;P&gt;The purpose of the debugger is to allow you to execute your program line by line.  It also allow you display the data as you execute the program. (double click on the varaible field name and it will be display) &lt;/P&gt;&lt;P&gt;or after program have been executed, &lt;/P&gt;&lt;P&gt;Run transaction SM66 and find your work process. &lt;/P&gt;&lt;P&gt;Select the line of your work process and double click on it &lt;/P&gt;&lt;P&gt;Click the debugging option. &lt;/P&gt;&lt;P&gt;If this is a custom program, you can put a wait statement in the code to buy yourself some time. &lt;/P&gt;&lt;P&gt;1) To understand the Watchpoint, you have to play with it. &lt;/P&gt;&lt;P&gt;a) Debug your program. &lt;/P&gt;&lt;P&gt;b) Place your cursor on the field you want to watch &lt;/P&gt;&lt;P&gt;c) Press Shift+F8, or click the Create Watchpoint button &lt;/P&gt;&lt;P&gt;d) Select the LOCAL WATCHPOINT checkbox if you want the watchpoint to be active for the immediate program only (and not includes etc. By default, you want to leave this unchecked). &lt;/P&gt;&lt;P&gt;e) Drop down on the relational operator, and choose one. They are self-explanatory. (For this example, use '=') &lt;/P&gt;&lt;P&gt;f) Select the COMPARISON FIELD checkbox if you want to check the field against another field, else leave unchecked if you want to check your field against a static value. &lt;/P&gt;&lt;P&gt;g) Enter your comparison field (if you checked the previous box) or your check value in the last box. Once your selected field equals the selected value, the program will break as if a breakpoint was reached. It is possible that the program never breaks, meaning your watchpoint criteria was never satisfied (For example if you check Itab-Field = VALUEA, if Itab-field never have a value equal to VALUEA the program will NOT break.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I use SQL Trace is used for analysis, then based on the information retrieved I do manual tuning. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; RachelArun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 11:51:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850722#M1134421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T11:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Debbuging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850723#M1134422</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;You can't directly debug a function pool program instead you can put a break point and execute the corresponding Tcode then if process reaches that level you can check that code in debugging&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 11:59:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debbuging/m-p/4850723#M1134422</guid>
      <dc:creator>former_member206439</dc:creator>
      <dc:date>2008-11-20T11:59:27Z</dc:date>
    </item>
  </channel>
</rss>

