<?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: regarding BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162318#M120802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Jaison&lt;/P&gt;&lt;P&gt;   BAPI is a special type of function module which has a business purpose attached to it.&lt;/P&gt;&lt;P&gt;Eg: we have bapi's for sales order craetion, purchase order creation, change , etc.&lt;/P&gt;&lt;P&gt;We have a whole list of bapi's for specific purposes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Business Application Programming Interfaces (BAPIs) are functional interfaces. They use the business methods from the business objects. BAPIs may be addresses within or outside the R/3 System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; For specifications and more information about BAPIs, see the alias &amp;#147;bapi&amp;#148; in SAPNet.&lt;/P&gt;&lt;P&gt; A BAPI is a point of entry to the R/3 System - that is, a point at which the R/3 System provides access to business data and processes.&lt;/P&gt;&lt;P&gt;n Each object in the BOR can have many methods, one or more of which can be implemented as BAPIs.&lt;/P&gt;&lt;P&gt;n BAPIs can have various functions:&lt;/P&gt;&lt;P&gt;   ­Creating an object&lt;/P&gt;&lt;P&gt;   Retrieving the attributes of an object&lt;/P&gt;&lt;P&gt;­   Changing the attributes of an object&lt;/P&gt;&lt;P&gt; A BAPI is an interface that can be used for various applications. For example:&lt;/P&gt;&lt;P&gt;­&lt;/P&gt;&lt;P&gt;Internet Application Components, which make individual R/3 functions available on the Internet or an intranet for users with no R/3 experience.&lt;/P&gt;&lt;P&gt;­&lt;/P&gt;&lt;P&gt;R/3 component composition, which allows communication between the business objects of different R/3 components (applications).&lt;/P&gt;&lt;P&gt;­&lt;/P&gt;&lt;P&gt;VisualBasic/JAVA/C++ - external clients (for example, alternative GUIs) that can access business data and processes directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; An example business object from the training course data model is called FlightBooking. It contains a booking. Each booking is uniquely identifiable from its key information: AirlineCarrier , ConnectionNumber (flight number), DateOfFlight, BookingNumber. The following methods are available for this object:&lt;/P&gt;&lt;P&gt;&amp;amp;#159; FlightBooking.GetDetail returns detailed information on a booking&lt;/P&gt;&lt;P&gt;&amp;amp;#159; FlightBooking.CreateFromData creates a booking&lt;/P&gt;&lt;P&gt;&amp;amp;#159; FlightBooking.Cancel&lt;/P&gt;&lt;P&gt;&amp;amp;#159; FlightBooking.GetList returns a list containing details of all the bookings for that flight.&lt;/P&gt;&lt;P&gt;Generally displays fewer details for each booking than GetDetail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You can display more information on business objects and the BAPIs that belong to them using BAPI Explorer Information. The screen is in two parts: a hierarchy area and a details window. The hierarchy area displays the component hierarchy. You can expand an application component to find out which business objects belong to it. If you expand a single business object, the system displays a sub-tree, showing you which key attributes and API methods belong to it. (API stands for Application Programming Interface).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calling a BAPI in a Programm is just like calling any other RFC ...&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SALESDOCUMENTIN =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ORDER_HEADER_IN = l_order_header&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_HEADER_INX =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SENDER =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BINARY_RELATIONSHIPTYPE =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INT_NUMBER_ASSIGNMENT =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BEHAVE_WHEN_ERROR =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LOGIC_SWITCH =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TESTRUN =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CONVERT = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;SALESDOCUMENT = l_salesdocument&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;RETURN = it_return&lt;/P&gt;&lt;P&gt;ORDER_ITEMS_IN = it_order_items&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_ITEMS_INX =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ORDER_PARTNERS = it_order_partners&lt;/P&gt;&lt;P&gt;ORDER_SCHEDULES_IN = it_order_schdl&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_SCHEDULES_INX =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ORDER_CONDITIONS_IN = it_order_conditions&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CONDITIONS_INX =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_REF =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_INST =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_PART_OF =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_VALUE =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_BLOB =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_VK =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_REFINST =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CCARD =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_TEXT =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_KEYS =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXTENSIONIN =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PARTNERADDRESSES =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;if not l_salesdocument is initial.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;order successfully created&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;message i001(00) with text-001 l_salesdocument.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers:)&lt;/P&gt;&lt;P&gt;Mithlesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Feb 2006 07:14:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-09T07:14:40Z</dc:date>
    <item>
      <title>regarding BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162314#M120798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please explain the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is BAPI?&lt;/P&gt;&lt;P&gt;How it is called in a program? &lt;/P&gt;&lt;P&gt;What is SMR client?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;jaison&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 06:56:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162314#M120798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T06:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: regarding BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162315#M120799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BAPI is a standard interface to do various operations in SAP (like getting details,updating details etc)..these can be called from 3rd party applicatins like VB,.NET,delphi etc...the advantage is whatever validations done in the front end while entering records will also be done while inserting/updating details through BAPI...&lt;/P&gt;&lt;P&gt;they can be implemented by RFC function modules or like methods in a class etc...they can be called from SAP also&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 07:01:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162315#M120799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T07:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: regarding BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162316#M120800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jAISON&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIs provide a stable, standardized method for third-party applications and components to integrate into the Business Framework. These interfaces are being specified as part of SAP's initiative with customers, partners and leading standards organizations. Also, SAP has implemented the emerging Object Application Group (OAG) specifications with BAPIs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF WANT I CAN SEND THE STEPS INVOLVED IN CALLING THE BAPI TO YOUR MAIL.&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;KISHORE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 07:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162316#M120800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T07:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: regarding BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162317#M120801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to clarify , check this :&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975d943b111d1896f0000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975d943b111d1896f0000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 07:08:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162317#M120801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T07:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: regarding BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162318#M120802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Jaison&lt;/P&gt;&lt;P&gt;   BAPI is a special type of function module which has a business purpose attached to it.&lt;/P&gt;&lt;P&gt;Eg: we have bapi's for sales order craetion, purchase order creation, change , etc.&lt;/P&gt;&lt;P&gt;We have a whole list of bapi's for specific purposes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Business Application Programming Interfaces (BAPIs) are functional interfaces. They use the business methods from the business objects. BAPIs may be addresses within or outside the R/3 System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; For specifications and more information about BAPIs, see the alias &amp;#147;bapi&amp;#148; in SAPNet.&lt;/P&gt;&lt;P&gt; A BAPI is a point of entry to the R/3 System - that is, a point at which the R/3 System provides access to business data and processes.&lt;/P&gt;&lt;P&gt;n Each object in the BOR can have many methods, one or more of which can be implemented as BAPIs.&lt;/P&gt;&lt;P&gt;n BAPIs can have various functions:&lt;/P&gt;&lt;P&gt;   ­Creating an object&lt;/P&gt;&lt;P&gt;   Retrieving the attributes of an object&lt;/P&gt;&lt;P&gt;­   Changing the attributes of an object&lt;/P&gt;&lt;P&gt; A BAPI is an interface that can be used for various applications. For example:&lt;/P&gt;&lt;P&gt;­&lt;/P&gt;&lt;P&gt;Internet Application Components, which make individual R/3 functions available on the Internet or an intranet for users with no R/3 experience.&lt;/P&gt;&lt;P&gt;­&lt;/P&gt;&lt;P&gt;R/3 component composition, which allows communication between the business objects of different R/3 components (applications).&lt;/P&gt;&lt;P&gt;­&lt;/P&gt;&lt;P&gt;VisualBasic/JAVA/C++ - external clients (for example, alternative GUIs) that can access business data and processes directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; An example business object from the training course data model is called FlightBooking. It contains a booking. Each booking is uniquely identifiable from its key information: AirlineCarrier , ConnectionNumber (flight number), DateOfFlight, BookingNumber. The following methods are available for this object:&lt;/P&gt;&lt;P&gt;&amp;amp;#159; FlightBooking.GetDetail returns detailed information on a booking&lt;/P&gt;&lt;P&gt;&amp;amp;#159; FlightBooking.CreateFromData creates a booking&lt;/P&gt;&lt;P&gt;&amp;amp;#159; FlightBooking.Cancel&lt;/P&gt;&lt;P&gt;&amp;amp;#159; FlightBooking.GetList returns a list containing details of all the bookings for that flight.&lt;/P&gt;&lt;P&gt;Generally displays fewer details for each booking than GetDetail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You can display more information on business objects and the BAPIs that belong to them using BAPI Explorer Information. The screen is in two parts: a hierarchy area and a details window. The hierarchy area displays the component hierarchy. You can expand an application component to find out which business objects belong to it. If you expand a single business object, the system displays a sub-tree, showing you which key attributes and API methods belong to it. (API stands for Application Programming Interface).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calling a BAPI in a Programm is just like calling any other RFC ...&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SALESDOCUMENTIN =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ORDER_HEADER_IN = l_order_header&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_HEADER_INX =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SENDER =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BINARY_RELATIONSHIPTYPE =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INT_NUMBER_ASSIGNMENT =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BEHAVE_WHEN_ERROR =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LOGIC_SWITCH =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TESTRUN =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CONVERT = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;SALESDOCUMENT = l_salesdocument&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;RETURN = it_return&lt;/P&gt;&lt;P&gt;ORDER_ITEMS_IN = it_order_items&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_ITEMS_INX =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ORDER_PARTNERS = it_order_partners&lt;/P&gt;&lt;P&gt;ORDER_SCHEDULES_IN = it_order_schdl&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_SCHEDULES_INX =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ORDER_CONDITIONS_IN = it_order_conditions&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CONDITIONS_INX =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_REF =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_INST =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_PART_OF =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_VALUE =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_BLOB =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_VK =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CFGS_REFINST =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_CCARD =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_TEXT =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ORDER_KEYS =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXTENSIONIN =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PARTNERADDRESSES =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;if not l_salesdocument is initial.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;order successfully created&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;message i001(00) with text-001 l_salesdocument.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers:)&lt;/P&gt;&lt;P&gt;Mithlesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 07:14:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162318#M120802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T07:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: regarding BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162319#M120803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jason,&lt;/P&gt;&lt;P&gt; Bapi's are extended RFC's. they are a little mroe standardised than RFC's with added functionality. &lt;/P&gt;&lt;P&gt;try the example in the following link and you'll have an idea about BAPI &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/sapgenie/docs/BAPI%20JCO.pdf" target="test_blank"&gt;http://www.sapgenie.com/sapgenie/docs/BAPI%20JCO.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/bapi/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/bapi/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 07:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bapi/m-p/1162319#M120803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T07:51:34Z</dc:date>
    </item>
  </channel>
</rss>

