<?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: Can debugger break on custom functions only? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044542#M1809268</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DPM --&lt;/P&gt;&lt;P&gt;Yes, it was the only way I could enter values in Direct Definition of Visible Object fields.&lt;/P&gt;&lt;P&gt;Carl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Jan 2014 16:55:50 GMT</pubDate>
    <dc:creator>carl_korn</dc:creator>
    <dc:date>2014-01-29T16:55:50Z</dc:date>
    <item>
      <title>Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044530#M1809256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I'm not a programmer.&amp;nbsp; I'm an analyst who uses the debugger a lot, but I don't use the most sophisiticated breakpoint commands.&amp;nbsp; I'd like to set a breakpoint on the 'Call Function' Statement, but have the debugger stop only on functions that are customer-written functions.&amp;nbsp; (I'd like to do the same thing to get the debugger to stop on Methods that belong to custom Classes, too).&amp;nbsp; I often have to wade through dozens or hundreds of SAP functions before I hit a custom function.&amp;nbsp; It seems to me the debugger can tell which programs and classes were created by SAP vs. those that are customer-created.&amp;nbsp; It should be easy to delimit the breakpoints to stop only at customer-generated code.&amp;nbsp; (It doesn't have to be the Call Statement function.&amp;nbsp; If there's some other Breakpoint/Watchpoint setup I can use, that's fine.)&amp;nbsp; Thanks for your help.&lt;/P&gt;&lt;P&gt;Carl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:00:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044530#M1809256</guid>
      <dc:creator>carl_korn</dc:creator>
      <dc:date>2014-01-27T14:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044531#M1809257</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 might try to use the breakpoint at abap stack + screen command, and then use desktop 2 to see if you're in custom code or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Rob Dielemans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:20:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044531#M1809257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-27T14:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044532#M1809258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could add an include in each.&amp;nbsp; In that include put something like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then when ever you want to know if your code is going through any of them. just put a break on that statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 15:44:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044532#M1809258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-27T15:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044533#M1809259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont think this is possible (I have never seen anybody do it anyway). However, you can set a breakpoint at the following statements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Call Customer-Function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code used to call a user exit. For example, in FM AVAILABILITY_CHECK_CONTROLLER, we have the following code:&lt;/P&gt;&lt;P&gt;****************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* User-Exit before check&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0063a4; font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; CALL CUSTOMER-FUNCTION '001'&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLES&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; T_ATPCSX = P_ATPCSX&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; T_ATPFIELDX&amp;nbsp;&amp;nbsp;&amp;nbsp; = P_ATPFIELDX.&lt;/P&gt;&lt;P&gt;****************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This calls EXIT_SAPLATPC_001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you breakpoint reaches the Call Customer-Function statement, you can just F5 into the exit to see the custom code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Call BADI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code used to call a BADI. For example, in class CL_EX_WORKORDER_UPDATE (Called in CO01), you would have the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****************************************************&lt;/P&gt;&lt;P&gt; CALL BADI l_badi-&amp;gt;INITIALIZE&lt;/P&gt;&lt;P&gt;&amp;nbsp; EXPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IS_CAUFVDB = IS_CAUFVDB.&lt;/P&gt;&lt;P&gt;****************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, you can just F5 into the code to see your custom code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another option for you would be to user report ZUSEREXIT (&lt;A __default_attr="64222" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="Program to display Exits and BAdI  " href="https://community.sap.com/" modifiedtitle="true" title="Program to display Exits and BAdI )"&gt;&lt;/A&gt; before you begin your debugging - this report should display the relevant exits / badis for the ara you are about to debug. You can se breakpoints at them before you begin your debugging and see if these are hit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 10:17:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044533#M1809259</guid>
      <dc:creator>former_member223981</dc:creator>
      <dc:date>2014-01-28T10:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044534#M1809260</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;Another way of getting what you want is simply to execute the transaction/report in SAT (used to be se30) runtime analysis.&lt;/P&gt;&lt;P&gt;and then note which custom code is executed, and use that as a starting point to know where to place your break-points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Rob Dielemans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 10:28:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044534#M1809260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-28T10:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044535#M1809261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Carl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think your problem is a very good use case for 'Layer Aware Debugging' - &lt;A __default_attr="54196" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="Layer-Aware Debugging in NW 7.0 EHP2" href="https://community.sap.com/" modifiedtitle="true" title="Layer-Aware Debugging in NW 7.0 EHP2"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But since you are not a technical person maintaining the SLAD configuration will be a challenge for sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Edit by: Suhas Saha&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;You can also create the Debugger Layer in the debugging session. For e.g., you can give the Packages, Programs etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/374259" width="450" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know if this helps you in some way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 13:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044535#M1809261</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2014-01-28T13:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044536#M1809262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suhas --&lt;/P&gt;&lt;P&gt;This certainly looks like what I'm heading for.&amp;nbsp; Unfortunately, when I use the layer-aware debugger using a Program that contains custom function modules the debugger doesn't stop when it hits any of them.&amp;nbsp; It stops just fine if I use Breakpoint at Function Module to specify the exact functions I'm looking for.&amp;nbsp; That's what I'm trying to avoid since I don't know every custom function or method we have within our more complex (or old) programs and exits.&lt;/P&gt;&lt;P&gt;I'll see if I can find a programmer to figure this out.&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Carl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 12:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044536#M1809262</guid>
      <dc:creator>carl_korn</dc:creator>
      <dc:date>2014-01-29T12:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044537#M1809263</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 need to put debugging filter&amp;nbsp; criteria on the screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For testing custom function module :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program : SAPLZ* &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAPLY*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For testing custom classes:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Class : Y*&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Z*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For all custom codes:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Package = Y*&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Z*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;DPM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 16:08:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044537#M1809263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-29T16:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044538#M1809264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DPM --&lt;/P&gt;&lt;P&gt;I did try variations on all of those themes, but didn't get any breaks.&amp;nbsp; Is it possible there's an additional debugging authorization object that I need?&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Carl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 16:24:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044538#M1809264</guid>
      <dc:creator>carl_korn</dc:creator>
      <dc:date>2014-01-29T16:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044539#M1809265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Carl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I work on older versions. Can you check using tcode SU53, whether any authorization issue is there or not&amp;nbsp; . Also, from SU24 you can find out all the authorization objects needed for smooth execution of the transaction SLAD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;DPM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 16:35:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044539#M1809265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-29T16:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044540#M1809266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DPM --&lt;/P&gt;&lt;P&gt;SU24 identifies no authorization objects associated with SLAD.&lt;/P&gt;&lt;P&gt;When I use SU53 immediately after setting /h in the command line, I get "all authorizations successful."&amp;nbsp; I also tried SU53 immediately after entering layer-aware debugger settings and got the same thing.&amp;nbsp; It doesn't look like security is stopping me.&lt;/P&gt;&lt;P&gt;Carl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 16:49:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044540#M1809266</guid>
      <dc:creator>carl_korn</dc:creator>
      <dc:date>2014-01-29T16:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044541#M1809267</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;Did you tick l&lt;STRONG&gt;ayer aware debugger active&lt;/STRONG&gt; checkbox on the debugger screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;DPM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 16:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044541#M1809267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-29T16:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044542#M1809268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DPM --&lt;/P&gt;&lt;P&gt;Yes, it was the only way I could enter values in Direct Definition of Visible Object fields.&lt;/P&gt;&lt;P&gt;Carl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 16:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044542#M1809268</guid>
      <dc:creator>carl_korn</dc:creator>
      <dc:date>2014-01-29T16:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044543#M1809269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DPM, Suhas, and everyone --&lt;/P&gt;&lt;P&gt;I got the Layer-Aware debugger working.&amp;nbsp; Naturally, it was a dumb mistake.&amp;nbsp; After I defined my visible object Program and returned to the debugger, I did not use the Next Object Set button to proceed with debugging.&lt;/P&gt;&lt;P&gt;thanks to everyone.&lt;/P&gt;&lt;P&gt;Carl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 13:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044543#M1809269</guid>
      <dc:creator>carl_korn</dc:creator>
      <dc:date>2014-01-30T13:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Can debugger break on custom functions only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044544#M1809270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for letting us know what happened!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 13:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-debugger-break-on-custom-functions-only/m-p/10044544#M1809270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-30T13:55:35Z</dc:date>
    </item>
  </channel>
</rss>

