<?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: BAdi Steps in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141472#M746654</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;User Exits are also called as BADI's (Business Aditions)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two steps in User Exit creation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1} Identify the User Exit suitable for the requirement and that is available in the system:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code SE18 is used to Identify the BADI available.&lt;/P&gt;&lt;P&gt;Look for the string 'CL_EXITHANDLER' in the standard program. This is a class which has a method 'GET_INSTANCE' which is used to trigger BADI's from the Standard Program. The interface parameter for this static method 'EXIT_NAME' is used to pass the BADI to the method.&lt;/P&gt;&lt;P&gt;Open Standard Program and do a global search 'CL_EXITHANDLER'.&lt;/P&gt;&lt;P&gt;SE18 &amp;gt; give the BADI name found through above search.&lt;/P&gt;&lt;P&gt;CUSTOMER_ADD_DATA &amp;gt; which has a method SAVE_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2} Implement the User Exit identified through above process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T.Code SE19 is used to Implement BADI.&lt;/P&gt;&lt;P&gt;SE19 &amp;gt; give the implementation name &amp;gt; Give the Definition name as CUSTOMER_ADD_DATA and the Short Text.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Dec 2007 06:03:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-14T06:03:56Z</dc:date>
    <item>
      <title>BAdi Steps</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141469#M746651</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 am new to BAdi , Could anyone explain, by means of an example, to do screen modifications using a BAdi?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 15:59:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141469#M746651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T15:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: BAdi Steps</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141470#M746652</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;Hope it might be helpful to you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Business Add-Ins&lt;/P&gt;&lt;P&gt;Business Add-Ins are a new SAP enhancement technique based on ABAP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Objects. They can be inserted into the SAP System to accommodate user &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;requirements too specific to be included in the standard delivery. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since specific industries often require special functions, SAP allows &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you to predefine these points in your software.&lt;/P&gt;&lt;P&gt;As with customer exits (SMOD/CMOD [Page 40]), two different views are &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;available:&lt;/P&gt;&lt;P&gt;&amp;#149; In the definition view, an application programmer predefines exit &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points in a source that allow specific industry sectors, partners, and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customers to attach additional software to standard SAP source code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;without having to modify the original object.&lt;/P&gt;&lt;P&gt;&amp;#149; In the implementation view, the users of Business Add-Ins can &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customize the logic they need or use a standard logic if one is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;available.&lt;/P&gt;&lt;P&gt;In contrast to customer exits, Business Add-Ins no longer assume a &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;two-system infrastructure (SAP and customers), but instead allow for &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;multiple levels of software development (by SAP, partners, and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customers, and as country versions, industry solutions, and the like). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Definitions and implementations of Business Add-Ins can be created at &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;each level within such a system infrastructure.&lt;/P&gt;&lt;P&gt;SAP guarantees the upward compatibility of all Business Add-In &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interfaces. Release upgrades do not affect enhancement calls from &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;within the standard software nor do they affect the validity of call &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interfaces. You do not have to register Business Add-Ins in SSCR.&lt;/P&gt;&lt;P&gt;The Business Add-In enhancement technique differentiates between &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enhancements that can only be implemented once and enhancements that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can be used actively by any number of customers at the same time.&lt;/P&gt;&lt;P&gt;In addition, Business Add-Ins can be defined according to filter &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;values. This allows you to control add-in implementation and make it &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dependent on specific criteria (on a specific Country value, for &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example). All ABAP sources, screens, GUIs, and table interfaces &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;created using this enhancement technique are defined in a manner that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;allows customers to include their own enhancements in the standard.&lt;/P&gt;&lt;P&gt;A single Business Add-In contains all of the interfaces necessary to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;implement a specific task. In Release 4.6A, program and menu &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enhancements can be made with Business Add-Ins. The actual program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code is enhanced using ABAP Objects. In order to better understand the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;programming techniques behind the Business Add-In enhancement concept, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP recommends reading the section on ABAP Objects &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFINING THE BADI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) execute Tcode SE18.&lt;/P&gt;&lt;P&gt;2) Specify a definition Name : ZBADI_SPFLI&lt;/P&gt;&lt;P&gt;3) Press create&lt;/P&gt;&lt;P&gt;4) Choose the attribute tab. Specify short desc for badi.. and specify &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the type : &lt;/P&gt;&lt;P&gt;multiple use.&lt;/P&gt;&lt;P&gt;5) Choose the interface tab&lt;/P&gt;&lt;P&gt;6) Specify interface name: ZIF_EX_BADI_SPFLI and save.&lt;/P&gt;&lt;P&gt;7) Dbl clk on interface name to start class builder . specify a method &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name (name, &lt;/P&gt;&lt;P&gt;level, desc).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Method level desc&lt;/P&gt;&lt;P&gt;Linese;ection instance methos some desc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; place the cursor on the method name desc its parameters to define &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the interface.&lt;/P&gt;&lt;P&gt;Parameter type refe field desc&lt;/P&gt;&lt;P&gt;I_carrid import spfli-carrid some&lt;/P&gt;&lt;P&gt;I_connid import spefi-connid some&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9) save , check and activate&amp;#133;adapter class proposed by system is &lt;/P&gt;&lt;P&gt;ZCL_IM_IM_LINESEL is genereated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPLEMENTATION OF BADI DEFINITION &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) EXECUTE tcode se18.choose menuitem create from the implementation &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;menubar.&lt;/P&gt;&lt;P&gt;2) Specify aname for implementation ZIM_LINESEL&lt;/P&gt;&lt;P&gt;3) Specify short desc.&lt;/P&gt;&lt;P&gt;4) Choose interface tab. System proposes a name fo the implementation &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class. &lt;/P&gt;&lt;P&gt;ZCL_IM_IMLINESEL which is already generarted.&lt;/P&gt;&lt;P&gt;5) Specify short desc for method&lt;/P&gt;&lt;P&gt;6) Dbl clk on method to insert code..(check the code in &amp;#147;AAA&amp;#148;).&lt;/P&gt;&lt;P&gt;7) Save , check and activate the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some useful URL&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-" target="test_blank"&gt;http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;badis.ppt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.p" target="test_blank"&gt;http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.p&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;df&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Busines" target="test_blank"&gt;http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Busines&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s-Addin.doc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.do" target="test_blank"&gt;http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.do&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf" target="test_blank"&gt;www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e1000000" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e1000000&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0a114084/content.htm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e1000000" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e1000000&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0a11402f/content.htm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e1000" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e1000&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0000a155106/frameset.htm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now write a sample program to use this badi method..&lt;/P&gt;&lt;P&gt;Look for &amp;#147;BBB&amp;#148; sample program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#147;AAA&amp;#148;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : wa_flights type sflight,&lt;/P&gt;&lt;P&gt;it_flights type table of sflight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;format color col_heading.&lt;/P&gt;&lt;P&gt;write:/ 'Flight info of:', i_carrid, i_connid.&lt;/P&gt;&lt;P&gt;format color col_normal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from sflight&lt;/P&gt;&lt;P&gt;into corresponding fields of table it_flights&lt;/P&gt;&lt;P&gt;where carrid = i_carrid&lt;/P&gt;&lt;P&gt;and connid = i_connid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_flights into wa_flights.&lt;/P&gt;&lt;P&gt;write:/ wa_flights-fldate,&lt;/P&gt;&lt;P&gt;wa_flights-planetype,&lt;/P&gt;&lt;P&gt;wa_flights-price currency wa_flights-currency,&lt;/P&gt;&lt;P&gt;wa_flights-seatsmax,&lt;/P&gt;&lt;P&gt;wa_flights-seatsocc.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#147;BBB&amp;#148;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-*&lt;/P&gt;&lt;P&gt;*&amp;amp; Report ZBADI_TEST *&lt;/P&gt;&lt;P&gt;*&amp;amp; *&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-*&lt;/P&gt;&lt;P&gt;REPORT ZBADI_TEST .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: spfli.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_spfli type spfli,&lt;/P&gt;&lt;P&gt;it_spfli type table of spfli with key carrid connid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Initialise the object of the interface.&lt;/P&gt;&lt;P&gt;data: exit_ref type ref to ZCL_IM_IM_LINESEL,&lt;/P&gt;&lt;P&gt;exit_ref1 type ref to ZIF_EX_BADISPFLI1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1.&lt;/P&gt;&lt;P&gt;select-options: s_carr for spfli-carrid.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;select * from spfli into corresponding fields of table it_spfli&lt;/P&gt;&lt;P&gt;where carrid in s_carr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;loop at it_spfli into wa_spfli.&lt;/P&gt;&lt;P&gt;write:/ wa_spfli-carrid,&lt;/P&gt;&lt;P&gt;wa_spfli-connid,&lt;/P&gt;&lt;P&gt;wa_spfli-cityfrom,&lt;/P&gt;&lt;P&gt;wa_spfli-deptime,&lt;/P&gt;&lt;P&gt;wa_spfli-arrtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hide: wa_spfli-carrid, wa_spfli-connid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at line-selection.&lt;/P&gt;&lt;P&gt;check not wa_spfli-carrid is initial.&lt;/P&gt;&lt;P&gt;create object exit_ref.&lt;/P&gt;&lt;P&gt;exit_ref1 = exit_ref.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method exit_ref1-&amp;gt;lineselection&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_carrid = wa_spfli-carrid&lt;/P&gt;&lt;P&gt;i_connid = wa_spfli-connid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear wa_spfli. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sana.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if found usefull...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 05:29:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141470#M746652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T05:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: BAdi Steps</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141471#M746653</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BADI(Business Add-In) is the object oriented method of user exits...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each BAdI has a definition and more than one implementation. The definition means the methods(in class concept) that are used for performing various functions. The BAdI definition can be viewed in SE18 transaction(for standard ones) and user-defined BAdIs can be created in the same transaction as well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you create a BAdI definition, an class interface will be automatically created and you can define your methods in the interface. The implementation of the methods can be done in SE19 transaction &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these links for info about badi..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2097977"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2097977"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/rnd/papers/sugi30/SAP.ppt" target="test_blank"&gt;http://support.sas.com/rnd/papers/sugi30/SAP.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2097977"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2097977"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2097977"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/rnd/papers/sugi30/SAP.ppt" target="test_blank"&gt;http://support.sas.com/rnd/papers/sugi30/SAP.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://members.aol.com/_ht_a/skarkada/sap/" target="test_blank"&gt;http://members.aol.com/_ht_a/skarkada/sap/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.ct-software.com/reportpool_frame.htm" target="test_blank"&gt;http://www.ct-software.com/reportpool_frame.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saphelp.com/SAP_Technical.htm" target="test_blank"&gt;http://www.saphelp.com/SAP_Technical.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.kabai.com/abaps/q.htm" target="test_blank"&gt;http://www.kabai.com/abaps/q.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.guidancetech.com/people/holland/sap/abap/" target="test_blank"&gt;http://www.guidancetech.com/people/holland/sap/abap/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/download_abap_programs.htm" target="test_blank"&gt;http://www.planetsap.com/download_abap_programs.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm&lt;/A&gt;&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;&lt;A href="http://www.esnips.com/web/BAdI" target="test_blank"&gt;http://www.esnips.com/web/BAdI&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/badi.html" target="test_blank"&gt;http://www.allsaplinks.com/badi.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="143565"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Intro.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;diff betweem badi n customer exits........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-badi-and-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-badi-and-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 05:32:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141471#M746653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T05:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: BAdi Steps</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141472#M746654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;User Exits are also called as BADI's (Business Aditions)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two steps in User Exit creation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1} Identify the User Exit suitable for the requirement and that is available in the system:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code SE18 is used to Identify the BADI available.&lt;/P&gt;&lt;P&gt;Look for the string 'CL_EXITHANDLER' in the standard program. This is a class which has a method 'GET_INSTANCE' which is used to trigger BADI's from the Standard Program. The interface parameter for this static method 'EXIT_NAME' is used to pass the BADI to the method.&lt;/P&gt;&lt;P&gt;Open Standard Program and do a global search 'CL_EXITHANDLER'.&lt;/P&gt;&lt;P&gt;SE18 &amp;gt; give the BADI name found through above search.&lt;/P&gt;&lt;P&gt;CUSTOMER_ADD_DATA &amp;gt; which has a method SAVE_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2} Implement the User Exit identified through above process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T.Code SE19 is used to Implement BADI.&lt;/P&gt;&lt;P&gt;SE19 &amp;gt; give the implementation name &amp;gt; Give the Definition name as CUSTOMER_ADD_DATA and the Short Text.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 06:03:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141472#M746654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T06:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: BAdi Steps</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141473#M746655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following is the Step by Step Procedure to Create BADIs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.From the SAP menu, choose Tools --&amp;gt; ABAP Workbench --&amp;gt; Utilities --&amp;gt; &lt;/P&gt;&lt;P&gt;Business Add-Ins (transaction SE18).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We would like to explain the procedures using an application &lt;/P&gt;&lt;P&gt;program as an example. There is a string conversion in the &lt;/P&gt;&lt;P&gt;program. You want the add-in users to determine themselves how &lt;/P&gt;&lt;P&gt;their strings are to be converted. The application developer &lt;/P&gt;&lt;P&gt;defines an enhancement. It consists of an interface with a &lt;/P&gt;&lt;P&gt;method. A changing parameter is used to pass on the string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Enter a name with a maximum of 20 characters for the Business &lt;/P&gt;&lt;P&gt;Add-In.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.Choose Create.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.On the following screen, enter a short text as the description &lt;/P&gt;&lt;P&gt;for the Business Add-In.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.Choose the Interface tab. The interface name is generated &lt;/P&gt;&lt;P&gt;automatically and can be changed here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6.Double-click the interface name field. The system branches to &lt;/P&gt;&lt;P&gt;the Class Builder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.Confirm that you want to save the entries you have made. Assign &lt;/P&gt;&lt;P&gt;a package to the Business Add-In.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8.Use the Class Builder to assign a method to the interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9.Now define a parameter with the following attributes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10.Save and activate your entries. Use the pushbutton Back to &lt;/P&gt;&lt;P&gt;navigate back to the Business Add-In definition.&lt;/P&gt;&lt;P&gt;You can now continue with the definition of the Business Add-In &lt;/P&gt;&lt;P&gt;by executing activation in the Class Builder.&lt;/P&gt;&lt;P&gt;A table control now appears on the definition screen for the &lt;/P&gt;&lt;P&gt;Business Add-In. It displays the method you have created for the &lt;/P&gt;&lt;P&gt;interface. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you maintain the interface methods, the corresponding &lt;/P&gt;&lt;P&gt;executing class is generated. The generated code cannot be &lt;/P&gt;&lt;P&gt;altered in the initial expansion phase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;11.Save your entries and use the Documentation pushbutton to &lt;/P&gt;&lt;P&gt;create a description for your new Business Add-In.  Remember that &lt;/P&gt;&lt;P&gt;this documentation is very important for users to be able to &lt;/P&gt;&lt;P&gt;understand the purpose behind the Add-In. For more information, &lt;/P&gt;&lt;P&gt;read the section Documentation of a Business Add-In.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Please reward points if found helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 12:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-steps/m-p/3141473#M746655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T12:41:27Z</dc:date>
    </item>
  </channel>
</rss>

