<?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: How to find Badi implementation class &amp; Interface in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530280#M1426476</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the table BADI_IMPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jan 2010 05:46:41 GMT</pubDate>
    <dc:creator>kiran_k8</dc:creator>
    <dc:date>2010-01-04T05:46:41Z</dc:date>
    <item>
      <title>How to find Badi implementation class &amp; Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530279#M1426475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to get Badi implementation class name and interface name by passing badi implementation name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any function module to find out??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 05:43:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530279#M1426475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-04T05:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to find Badi implementation class &amp; Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530280#M1426476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the table BADI_IMPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 05:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530280#M1426476</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2010-01-04T05:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to find Badi implementation class &amp; Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530281#M1426477</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;Pass the implementation name to table SXC_CLASS. You will get interface and implementation class names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 05:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530281#M1426477</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2010-01-04T05:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to find Badi implementation class &amp; Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530282#M1426478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First call the method &lt;STRONG&gt;CL_EXITHANDLER=&amp;gt;GET_INSTANCE&lt;/STRONG&gt; by passing the BADI definition name in the EXIT_NAME parameter. Whatever you get back in the INSTANCE parameter --- just pass it through the INSTANCE parameter of &lt;STRONG&gt;CL_EXITHANDLER=&amp;gt;GET_CLASS_NAME_BY_INTERFACE&lt;/STRONG&gt; method and you will get back implementation class name in the parameter CLASS_NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reference on how to use these methods, see the where used list for these methods which are most commonly used in all the standard SAP programs where BADI is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 06:01:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530282#M1426478</guid>
      <dc:creator>SureshRa</dc:creator>
      <dc:date>2010-01-04T06:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to find Badi implementation class &amp; Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530283#M1426479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your kind help Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 06:05:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-badi-implementation-class-interface/m-p/6530283#M1426479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-04T06:05:29Z</dc:date>
    </item>
  </channel>
</rss>

