<?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: Debugging BADI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494846#M1257207</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to activate external debugging first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;These are the few steps how to activate debugging&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE19 &amp;gt; Provide implemented Badi name &amp;gt;click on display&lt;/P&gt;&lt;P&gt;then you will find the methods are available for your BADI&lt;/P&gt;&lt;P&gt;Click on suitable method means it will goes to your code.&lt;/P&gt;&lt;P&gt;in menu bar you can find menu item ( UTILITIES)&lt;/P&gt;&lt;P&gt;Select Utilities and select sub menu item settings then (USER SPECIFIC SETTINGS Pop-up box will display)&lt;/P&gt;&lt;P&gt;select tab ABAP EDITOR and select tab DEBUGGING&lt;/P&gt;&lt;P&gt;CLICK activ debugging and IP checkbox and select radio button new classic debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now go to your code and select your statement and put break point&lt;/P&gt;&lt;P&gt;A pop-up box will appear ,in that select HTTP Break point.&lt;/P&gt;&lt;P&gt;now external debugging activated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this Help ful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Apr 2009 11:09:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-28T11:09:25Z</dc:date>
    <item>
      <title>Debugging BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494842#M1257203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;how to debug a BADI in SRM system 4.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 10:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494842#M1257203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T10:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494843#M1257204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put a break-point in the BADI implementation.where you have added the custom code.And run the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Jyo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:01:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494843#M1257204</guid>
      <dc:creator>jyotheswar_p2</dc:creator>
      <dc:date>2009-04-28T11:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494844#M1257205</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;write BREAK-POINT. in ur code and execute the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:06:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494844#M1257205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T11:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494845#M1257206</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;If it runs in foreground, then put the external break point and run your transcation &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;   in the custom code, put the endless loop like&lt;/P&gt;&lt;P&gt;  data : lv_cnt type char01&lt;/P&gt;&lt;P&gt;  do.&lt;/P&gt;&lt;P&gt;   if lv_cnt is not initial.&lt;/P&gt;&lt;P&gt;      exit.&lt;/P&gt;&lt;P&gt;   endif.  &lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activate and run your transcation ,  go in sm50 and search your process in running mode&lt;/P&gt;&lt;P&gt; select the row and program/session-program-debugging -&amp;gt; it would come directly in loop, put the value for lv_cnt then it would come out  from here.&lt;/P&gt;&lt;P&gt;Enjoying the debugging&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:07:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494845#M1257206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T11:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494846#M1257207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to activate external debugging first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;These are the few steps how to activate debugging&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE19 &amp;gt; Provide implemented Badi name &amp;gt;click on display&lt;/P&gt;&lt;P&gt;then you will find the methods are available for your BADI&lt;/P&gt;&lt;P&gt;Click on suitable method means it will goes to your code.&lt;/P&gt;&lt;P&gt;in menu bar you can find menu item ( UTILITIES)&lt;/P&gt;&lt;P&gt;Select Utilities and select sub menu item settings then (USER SPECIFIC SETTINGS Pop-up box will display)&lt;/P&gt;&lt;P&gt;select tab ABAP EDITOR and select tab DEBUGGING&lt;/P&gt;&lt;P&gt;CLICK activ debugging and IP checkbox and select radio button new classic debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now go to your code and select your statement and put break point&lt;/P&gt;&lt;P&gt;A pop-up box will appear ,in that select HTTP Break point.&lt;/P&gt;&lt;P&gt;now external debugging activated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this Help ful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:09:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494846#M1257207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T11:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494847#M1257208</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 the BADI Implementation , keep a break point or write a statement "BREAK your user Id". It will stop at that point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sowmya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:17:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494847#M1257208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T11:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494848#M1257209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put the External Break point in the BADI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U will find a option in Debugging setting to give the user name also.&lt;/P&gt;&lt;P&gt;Utilities-&amp;gt;Setting-&amp;gt;Debugging option in the give u r User id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Run the SRM application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 11:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-badi/m-p/5494848#M1257209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T11:27:31Z</dc:date>
    </item>
  </channel>
</rss>

