<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269119#M492749</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;BAPI step by step procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP 1 - Define Structure For The BAPI&lt;/P&gt;&lt;P&gt;STEP 2 - Write Function Module&lt;/P&gt;&lt;P&gt;STEP 3 - Create the API Method Using The BAPI WIZARD&lt;/P&gt;&lt;P&gt;STEP 4 &amp;#150; Final Steps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 1 : &lt;/P&gt;&lt;P&gt;              Define a Structure for BAPI&lt;/P&gt;&lt;P&gt;In this step structures for the parameters and tables of the&lt;/P&gt;&lt;P&gt;function module used for the BAPI are defined.&lt;/P&gt;&lt;P&gt;USE TCODE : SE11 then Data type -&amp;gt; Structure&lt;/P&gt;&lt;P&gt;Define the structure Name : Ex: ZVEND&lt;/P&gt;&lt;P&gt;Important note: You will have to define a structure for&lt;/P&gt;&lt;P&gt;every parameter in the BAPI. You cannot use the same&lt;/P&gt;&lt;P&gt;structures used in existing applications because BAPI&lt;/P&gt;&lt;P&gt;structures are frozen when BAPIs are released and then&lt;/P&gt;&lt;P&gt;there are restrictions on changing them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 2 : &lt;/P&gt;&lt;P&gt;       Write Function Module&lt;/P&gt;&lt;P&gt;Each BAPI must have its own function group.&lt;/P&gt;&lt;P&gt;Under the attributes tab remember to select Processing Type Remote&lt;/P&gt;&lt;P&gt;Enabled module, otherwise the function module cannot be invoked via&lt;/P&gt;&lt;P&gt;RFC and used as a BAPI&lt;/P&gt;&lt;P&gt;Import/Export parameters can only be BY VALUE for an RFC enabled&lt;/P&gt;&lt;P&gt;function module&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;Step 3 : Create the API Method Using&lt;/P&gt;&lt;P&gt;The BAPI WIZARD&lt;/P&gt;&lt;P&gt;BAPI wizard is used to expose the remote function module as a BAPI&lt;/P&gt;&lt;P&gt;Wizard will generate some additional code, so the function module is a valid&lt;/P&gt;&lt;P&gt;method of the BOR. This allows the BAPI to be called as a workflow method&lt;/P&gt;&lt;P&gt;in addition to be called by an outside program.&lt;/P&gt;&lt;P&gt;Each function module corresponds to a method in the BOR&lt;/P&gt;&lt;P&gt;Go to the Business Object Builder SWO1.&lt;/P&gt;&lt;P&gt;You can either create the new Object type as a subtype of an existing business&lt;/P&gt;&lt;P&gt;object or create a new business object from scratch..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create new BAPI Object&lt;/P&gt;&lt;P&gt;USE TCODE&lt;/P&gt;&lt;P&gt;SWO1&lt;/P&gt;&lt;P&gt;Supertype not&lt;/P&gt;&lt;P&gt;required as we are&lt;/P&gt;&lt;P&gt;creating a new Object&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;for Cross&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Apps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create new BAPI Object&lt;/P&gt;&lt;P&gt;Note that when you create the business object a standard&lt;/P&gt;&lt;P&gt;interface, an attribute ObjectType and the methods&lt;/P&gt;&lt;P&gt;ExistenceCheck and Display are automatically generated.&lt;/P&gt;&lt;P&gt;These cannot be changed !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding API method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementing BAPI Object&lt;/P&gt;&lt;P&gt;Select the BAPI object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementing BAPI Object&lt;/P&gt;&lt;P&gt;Change release status To implemented&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;Releasing BAPI Object&lt;/P&gt;&lt;P&gt;Change release status To released&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementing API Method&lt;/P&gt;&lt;P&gt;Select the API Method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementing API Method&lt;/P&gt;&lt;P&gt;Change release status To implemented&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Releasing API Method&lt;/P&gt;&lt;P&gt;Change release status To released&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generating API Method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At last you can see your bapi in BAPI transaction....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****do rewards if usefull&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 May 2007 05:59:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-18T05:59:07Z</dc:date>
    <item>
      <title>BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269114#M492744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frendz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create a BAPI from scratch, can any one give me any idea ? points for sure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Vijaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 05:50:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269114#M492744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T05:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269115#M492745</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;chk these links.very helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Checkout !!&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://techrepublic.com.com/5100-6329-1051160.html#" target="test_blank"&gt;http://techrepublic.com.com/5100-6329-1051160.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;A href="http://www.sap-img.com/abap/bapi-conventions.htm" target="test_blank"&gt;http://www.sap-img.com/abap/bapi-conventions.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;/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://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;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Reshma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 05:55:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269115#M492745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T05:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269116#M492746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can refer this link for BAPI to create a BAPI.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/bapi/example.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/bapi/example.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 05:55:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269116#M492746</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-05-18T05:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269117#M492747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vijaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz check this link u you can get the solution &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;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 05:58:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269117#M492747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T05:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269118#M492748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://techrepublic.com.com/5100-6329-1051160.html#" target="test_blank"&gt;http://techrepublic.com.com/5100-6329-1051160.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;A href="http://www.sap-img.com/abap/bapi-conventions.htm" target="test_blank"&gt;http://www.sap-img.com/abap/bapi-conventions.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://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://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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 05:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269118#M492748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T05:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269119#M492749</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;BAPI step by step procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP 1 - Define Structure For The BAPI&lt;/P&gt;&lt;P&gt;STEP 2 - Write Function Module&lt;/P&gt;&lt;P&gt;STEP 3 - Create the API Method Using The BAPI WIZARD&lt;/P&gt;&lt;P&gt;STEP 4 &amp;#150; Final Steps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 1 : &lt;/P&gt;&lt;P&gt;              Define a Structure for BAPI&lt;/P&gt;&lt;P&gt;In this step structures for the parameters and tables of the&lt;/P&gt;&lt;P&gt;function module used for the BAPI are defined.&lt;/P&gt;&lt;P&gt;USE TCODE : SE11 then Data type -&amp;gt; Structure&lt;/P&gt;&lt;P&gt;Define the structure Name : Ex: ZVEND&lt;/P&gt;&lt;P&gt;Important note: You will have to define a structure for&lt;/P&gt;&lt;P&gt;every parameter in the BAPI. You cannot use the same&lt;/P&gt;&lt;P&gt;structures used in existing applications because BAPI&lt;/P&gt;&lt;P&gt;structures are frozen when BAPIs are released and then&lt;/P&gt;&lt;P&gt;there are restrictions on changing them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 2 : &lt;/P&gt;&lt;P&gt;       Write Function Module&lt;/P&gt;&lt;P&gt;Each BAPI must have its own function group.&lt;/P&gt;&lt;P&gt;Under the attributes tab remember to select Processing Type Remote&lt;/P&gt;&lt;P&gt;Enabled module, otherwise the function module cannot be invoked via&lt;/P&gt;&lt;P&gt;RFC and used as a BAPI&lt;/P&gt;&lt;P&gt;Import/Export parameters can only be BY VALUE for an RFC enabled&lt;/P&gt;&lt;P&gt;function module&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;Step 3 : Create the API Method Using&lt;/P&gt;&lt;P&gt;The BAPI WIZARD&lt;/P&gt;&lt;P&gt;BAPI wizard is used to expose the remote function module as a BAPI&lt;/P&gt;&lt;P&gt;Wizard will generate some additional code, so the function module is a valid&lt;/P&gt;&lt;P&gt;method of the BOR. This allows the BAPI to be called as a workflow method&lt;/P&gt;&lt;P&gt;in addition to be called by an outside program.&lt;/P&gt;&lt;P&gt;Each function module corresponds to a method in the BOR&lt;/P&gt;&lt;P&gt;Go to the Business Object Builder SWO1.&lt;/P&gt;&lt;P&gt;You can either create the new Object type as a subtype of an existing business&lt;/P&gt;&lt;P&gt;object or create a new business object from scratch..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create new BAPI Object&lt;/P&gt;&lt;P&gt;USE TCODE&lt;/P&gt;&lt;P&gt;SWO1&lt;/P&gt;&lt;P&gt;Supertype not&lt;/P&gt;&lt;P&gt;required as we are&lt;/P&gt;&lt;P&gt;creating a new Object&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;for Cross&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Apps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create new BAPI Object&lt;/P&gt;&lt;P&gt;Note that when you create the business object a standard&lt;/P&gt;&lt;P&gt;interface, an attribute ObjectType and the methods&lt;/P&gt;&lt;P&gt;ExistenceCheck and Display are automatically generated.&lt;/P&gt;&lt;P&gt;These cannot be changed !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding API method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementing BAPI Object&lt;/P&gt;&lt;P&gt;Select the BAPI object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementing BAPI Object&lt;/P&gt;&lt;P&gt;Change release status To implemented&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;Releasing BAPI Object&lt;/P&gt;&lt;P&gt;Change release status To released&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementing API Method&lt;/P&gt;&lt;P&gt;Select the API Method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementing API Method&lt;/P&gt;&lt;P&gt;Change release status To implemented&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Releasing API Method&lt;/P&gt;&lt;P&gt;Change release status To released&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generating API Method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At last you can see your bapi in BAPI transaction....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****do rewards if usefull&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 05:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269119#M492749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T05:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269120#M492750</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 link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://erpgenie.com/sap/abap/bapi/example.htm" target="test_blank"&gt;http://erpgenie.com/sap/abap/bapi/example.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It contains step by step example of creating BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sipra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 08:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2269120#M492750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T08:23:55Z</dc:date>
    </item>
  </channel>
</rss>

