<?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: BAPI and BADIS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095528#M436191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suneel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In simple words,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bapi's r used to transfer the data between the sap system and different business partner system these r simply remote enabled function modules.. v can accees these bapi's through rfc layer...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where as in the case of badi's.. if you want to do any enhancements to sap standard programs or application u have to use eithe user exits or badi's...&lt;/P&gt;&lt;P&gt;badi's r especially designed with object oriented concepts.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think u got the basic idea if u need further info do lemme know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~~Guduri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Apr 2007 17:06:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-12T17:06:42Z</dc:date>
    <item>
      <title>BAPI and BADIS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095524#M436187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;ple explaing me what is the main deffirence between bapi and badis. when we will use bapi and badis,  can u give me example with sample code what sceneraio we use bapi and badi. its will be great help.&lt;/P&gt;&lt;P&gt;Thanking u&lt;/P&gt;&lt;P&gt;suneel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 15:59:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095524#M436187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T15:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI and BADIS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095525#M436188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI suneel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For information on BAdI's, you can take the standard SAP course "BC 425 - Enhancements and Modifications"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a summary:&lt;/P&gt;&lt;P&gt;You can use the transaction SE18 to define a new BAdI definition which may be implemented by other developers later. It is not so challenging. Here is the roadmap:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A. BAdI Definition&lt;/P&gt;&lt;P&gt;1. SE18&lt;/P&gt;&lt;P&gt;2. Enter the name for the BAdI to be created in customer namespace and press "Create".&lt;/P&gt;&lt;P&gt;3. Enter a definition for your BAdI and on the interface tab enter a name for the BAdI interface. SAP proposes a name and it is pretty good. Meanwhile a BAdI class is also created which is not in our concern.&lt;/P&gt;&lt;P&gt;e.g for "ZTEST", SAP proposes "ZIF_EX_TEST" for the interface and "ZCL_EX_TEST" for the class.&lt;/P&gt;&lt;P&gt;4. Save your BAdI.&lt;/P&gt;&lt;P&gt;5. Double-click on the interface name. It will pass to a Class Builder session to make you implement your interface. If you are not familiar to the Class Builder; it's a bit like Function Builder and it will be easy to discover its procedure.&lt;/P&gt;&lt;P&gt;6. Save and activate your interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B. Calling your BAdI from an application program&lt;/P&gt;&lt;P&gt;1. Declare a reference variable with reference to the Business Add-In interface.&lt;/P&gt;&lt;P&gt;e.g. DATA exit_ref TYPE REF TO zif_ex_test.&lt;/P&gt;&lt;P&gt;2. Call the static method GET_INSTANCE of the service class CL_EXITHANDLER. This returns an instance of the required object.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;CALL METHOD CL_EXITHANDLER=&amp;gt;GET_INSTANCE&lt;/P&gt;&lt;P&gt;CHANGING instance = exit_ref .&lt;/P&gt;&lt;P&gt;3. After those two steps, you can now call all of the methods of the BAdI where it is required in your program. Make sure you specify the method interfaces correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C. BAdI Implementations&lt;/P&gt;&lt;P&gt;1. SE19&lt;/P&gt;&lt;P&gt;2. Enter the name for the BAdI implementation to be created in customer namespace and press "Create".&lt;/P&gt;&lt;P&gt;3. It will request the BAdI definition name to which this implementation will be tied.&lt;/P&gt;&lt;P&gt;4. Enter a definition for your implementation and on the interface tab enter a name for the implementing class. Again SAP proposes a name and it is pretty good.&lt;/P&gt;&lt;P&gt;e.g for "ZIMPTEST", SAP proposes "ZCL_IM_IMPTEST".&lt;/P&gt;&lt;P&gt;5. Save your implementation.&lt;/P&gt;&lt;P&gt;6. To implement a method, just double-click on the method name and you will be taken to the Class Builder to write the code for it. Here you redefine the BAdI interface methods.&lt;/P&gt;&lt;P&gt;7. You must activate your implementation to make it executable. You can only activate or deactivate an implementation in its original system without modification. The activation or deactivation must be transported into subsequent systems&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's all. For further details, i.e. filter-dependence, multi-usage, menu nehancements etc... you can have a look at course materials of BC425 "Enhancements and Modifications".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIs are function modules in a simple aspect. The importance of them is lied at their functionality. To inspect BAPIs and business objects use the transaction "BAPI".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIs are taken as topics at several SAP courses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BADI:&lt;/P&gt;&lt;P&gt;/people/thomas.weiss/blog/2006/01/24/what-the-new-enhancement-framework-is-for-150-its-basic-structure-and-elements-for-beginners&lt;/P&gt;&lt;P&gt;/people/thomas.weiss/blog/2006/03/15/the-new-enhancement-framework-part-2--what-else-you-need-to-know-before-building-an-enhancement&lt;/P&gt;&lt;P&gt;/people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series&lt;/P&gt;&lt;P&gt;/people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/bapi/example.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/bapi/example.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sappoint.com/abap/bapiintro.pdf" target="test_blank"&gt;http://www.sappoint.com/abap/bapiintro.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BADI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt" target="test_blank"&gt;http://esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc" target="test_blank"&gt;http://esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf" target="test_blank"&gt;http://esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc" target="test_blank"&gt;http://esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/doc/365d4c4d-9fcb-4189-85fd-866b7bf25257/customer-exits--badi.zip" target="test_blank"&gt;http://esnips.com/doc/365d4c4d-9fcb-4189-85fd-866b7bf25257/customer-exits--badi.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/doc/3b7bbc09-c095-45a0-9e89-91f2f86ee8e9/BADI-Introduction.ppt" target="test_blank"&gt;http://esnips.com/doc/3b7bbc09-c095-45a0-9e89-91f2f86ee8e9/BADI-Introduction.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI:&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/bestWebLinks/0,289521,sid21_tax283286,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/bestWebLinks/0,289521,sid21_tax283286,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/topicBWL/0,295498,sid21_tax299359,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/topicBWL/0,295498,sid21_tax299359,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it helps reward with points&lt;/P&gt;&lt;P&gt;Regards Rk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 16:03:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095525#M436188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T16:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI and BADIS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095526#M436189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rk,&lt;/P&gt;&lt;P&gt;Thank u very mcuh for ur prompt reply, actually i am in bw, i am week in abap, i have seen  previously this procedure, i am unable to understand properly, bec in bw we can export data from bw to another 3rd party tool using export data into external system, badis we can use for tarnsformation. i heared we can use bapi to export data also. ple clarify.&lt;/P&gt;&lt;P&gt;Thanking u&lt;/P&gt;&lt;P&gt;suneel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 16:07:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095526#M436189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T16:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI and BADIS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095527#M436190</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;Check the following links:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BADI:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/srm/badi%2b-%2bgeneral%2binformation" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/srm/badi%2b-%2bgeneral%2binformation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrain.com/TUTORIALS/TECHNICAL/BAPI_tutorial.html" target="test_blank"&gt;http://www.sapbrain.com/TUTORIALS/TECHNICAL/BAPI_tutorial.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/bapi.htm" target="test_blank"&gt;http://www.sap-img.com/bapi.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 16:58:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095527#M436190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T16:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI and BADIS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095528#M436191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suneel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In simple words,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bapi's r used to transfer the data between the sap system and different business partner system these r simply remote enabled function modules.. v can accees these bapi's through rfc layer...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where as in the case of badi's.. if you want to do any enhancements to sap standard programs or application u have to use eithe user exits or badi's...&lt;/P&gt;&lt;P&gt;badi's r especially designed with object oriented concepts.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think u got the basic idea if u need further info do lemme know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~~Guduri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 17:06:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-and-badis/m-p/2095528#M436191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T17:06:42Z</dc:date>
    </item>
  </channel>
</rss>

