<?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: internal structures available in user exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757707#M1115738</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;One way is to set a breakpoint in the exit/BADI/Enhancement Point and then execute&lt;/P&gt;&lt;P&gt;the program that calls the code where your breakpoint is set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use the debugger to find which variables are local or global. (In the new debugger) and&lt;/P&gt;&lt;P&gt;what values they have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greg Kern&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Nov 2008 18:29:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-17T18:29:20Z</dc:date>
    <item>
      <title>internal structures available in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757706#M1115737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I found out all the internal structures that are populated and available in a user exit or any point in code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Specifically I am looking at RV60AFZC routine USEREXIT_FILL_VBRK_VBRP and want to fill MWSKZ which is in KOMV. But I would like to learn a new technique that I can use for any program. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 17:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757706#M1115737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T17:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: internal structures available in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757707#M1115738</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;One way is to set a breakpoint in the exit/BADI/Enhancement Point and then execute&lt;/P&gt;&lt;P&gt;the program that calls the code where your breakpoint is set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use the debugger to find which variables are local or global. (In the new debugger) and&lt;/P&gt;&lt;P&gt;what values they have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greg Kern&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 18:29:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757707#M1115738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T18:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: internal structures available in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757708#M1115739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to use the new debugger to find out all the local and global variables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 07:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757708#M1115739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T07:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: internal structures available in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757709#M1115740</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;You can know if the particular structure is available in your session in either old or new debugger, all you need to do is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(&lt;STRONG&gt;SAPLHRBEN00ESS)EVENT_DESCRIPTION_GS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where SAPLHRBEN00ESS -&amp;gt; Program Name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;          &lt;STRONG&gt;EVENT_DESCRIPTION_GS -&amp;gt; Structure (wa), Internal Table&lt;/STRONG&gt; that you want to access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jayant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 07:40:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757709#M1115740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T07:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: internal structures available in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757710#M1115741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While in Debugging mode choose &lt;STRONG&gt;Menu -&amp;gt; Switch to New Debugger&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Desktop1 tab, you can see Variable1, Variable2, Locals and Globals in the right hand side of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using that you can know what are the values are available inside a userexit / any code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 07:45:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757710#M1115741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T07:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: internal structures available in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757711#M1115742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am in the new debugger right now. In Desktop1, I see two tabs Variables 1 and Variables 2, but where are the global and local variables? I want to see a list of all variables available to me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I am looking to create a watchpoint for a structure. I searched the SDN and lots of posts state that there is a pushbutton to create a watchpoint. I dont see it. I have version ECC 5.0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 08:09:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757711#M1115742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T08:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: internal structures available in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757712#M1115743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working in ECC 6.0 and i can see the tabs as well as watchpoint button. May be someone else working with ECC 5.0 have to confirm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cant you even see the Breaks./watchpoint tab?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 08:21:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757712#M1115743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T08:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: internal structures available in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757713#M1115744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do see the breakpoint tab. In this tab there are 2 tabs, one for breakpoint and the other call Checkpoint Activations. I dont think checkpoint activations is the same as watchpoints, the options available dont fit. I guess I will have to settle to using the old classical debugger until the client upgrades to 6.0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 08:24:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757713#M1115744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T08:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: internal structures available in user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757714#M1115745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Megan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A very nice technique to expand the available data within a user-exit has been described in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SAP User Exits and the People Who Love Them|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/208811b0-00b2-2910-c5ac-dd2c7c50c8e8]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 08:31:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-structures-available-in-user-exit/m-p/4757714#M1115745</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-11-18T08:31:10Z</dc:date>
    </item>
  </channel>
</rss>

