<?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 can i identify the bapi?difference between rfc and bapi? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047320#M967498</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;RFC is Remote Function Call - a function module, which can be called remotely from outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI is also a Remote enabled function module but the difference between BAPI and RFC is in BAPI there is a bussiness object attached to it which calls SAP application internally.&lt;/P&gt;&lt;P&gt;**********************************************&lt;/P&gt;&lt;P&gt;can you explain RFC and BAPI??? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used to call functions in an R/3 system by a caller external to R/3 or to call programs external to R/3 from an R/3 system. Functions can only be called via RFC, if they are tagged as RFC functions in the SAP development workbench. They are then called RFC function modules. BAPIs are complete sets of (BAPI) function modules that model a business application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used by SAP for remote communication, that is, for communications between remote independent systems.RFC is used for communications between two independent SAP systems, or for communications between an SAP system and a non-SAP system, such as an external application. It can also be used for communications between modules on the same system.Using the RFC interfaces you can extend the functionality of R/3 applications from an external program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An R/3 system also contains Business Application Programming Interfaces (also called Business APIs, or BAPIs), which provide a programming interface to business objects. BAPIs are a set of methods for working with and manipulating SAP business objects.Internally, BAPIs are implemented as function modules stored in the R/3 Function Builder. Each BAPI has an equivalent internally-named function module. However, you should use the BAPI and not the function module behind it, because the BAPI provides a stable, object-oriented view of R/3 applications and data. The internal function modules or even the fact that the BAPIs are implemented as function modules are not guaranteed to remain the same in future releases of R/3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI stands for Business Application Programming Interface.&lt;/P&gt;&lt;P&gt;It is a library of functions that are released to the public&lt;/P&gt;&lt;P&gt;as an interface into an existing SAP system from an external&lt;/P&gt;&lt;P&gt;system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used to call functions in an R/3 system&lt;/P&gt;&lt;P&gt;by a caller external to R/3 or to call programs external to&lt;/P&gt;&lt;P&gt;R/3 from an R/3 system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functions can only be called via RFC, if they are tagged as&lt;/P&gt;&lt;P&gt;RFC functions in the SAP development workbench. They are&lt;/P&gt;&lt;P&gt;then called RFC function modules. BAPIs are complete sets of&lt;/P&gt;&lt;P&gt;(BAPI) function modules that model a business application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you are familiar with web developments: RFC can be&lt;/P&gt;&lt;P&gt;compared to HTTP and BAPIs are CGI applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In other words: A BAPI function is a function module that&lt;/P&gt;&lt;P&gt;can be called remotely using the RFC technology.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************************************************************************&lt;/P&gt;&lt;P&gt;RFC and BAPIs are remote enabled function modules. They are practicly the same. A BAPI is one step further as it usually is a self contained business function, such as "Create Purchase Order", or "Change Sales Document". BAPIs interface is very well defined and documented. BAPIs can be found in the BAPI browser via transaction BAPI. RFCs are just remote enabled function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI stands for Business Application Programming Interface. It is a library of functions that are released to the public as an interface into an existing SAP system from an external system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used to call functions in an R/3 system by a caller external to R/3 or to call programs external to R/3 from an R/3 system. Functions can only be called via RFC, if they are tagged as RFC functions in the SAP development workbench.&lt;/P&gt;&lt;P&gt;*******************************************************************************&lt;/P&gt;&lt;P&gt;BAPIs are RFCs, the only difference is that BAPIs usually encapulate some complete business object. For example, creating a sales order, the BAPI would do all of the steps required to create a sales order.&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;Shiva KUmar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Jun 2008 07:26:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-27T07:26:03Z</dc:date>
    <item>
      <title>how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047317#M967495</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please give me the your valuble information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i identify the bapi?difference between rfc and bapi?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points apply for the best answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2008 07:21:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047317#M967495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-27T07:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047318#M967496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;please check this link for BAPI...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/advancedsearch?query=bapi&amp;amp;cat=sdn_all" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/advancedsearch?query=bapi&amp;amp;cat=sdn_all&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;difference between rfc and bapi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/advancedsearch?query=difference" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/advancedsearch?query=difference&lt;/A&gt;&lt;EM&gt;between&lt;/EM&gt;rfc&lt;EM&gt;and&lt;/EM&gt;bapi&amp;amp;cat=sdn_all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kanika chopra on Jun 27, 2008 9:25 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2008 07:24:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047318#M967496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-27T07:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047319#M967497</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;u can find ur bapi's in BAPI TRANSACTION or based on business object  in SWO1 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC and BAPIs are remote enabled function modules. They are practicly the same. A BAPI is one step further as it usually is a self contained business function, such as "Create Purchase Order", or "Change Sales Document". BAPIs interface is very well defined and documented. BAPIs can be found in the BAPI browser via transaction BAPI. RFCs are just remote enabled function modules.&lt;/P&gt;&lt;P&gt;BAPI performs a complete business application like customer creation,material creation as it is encapsulated with business object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI stands for Business Application Programming Interface. It is a library of functions that are released to the public as an interface into an existing SAP system from an external system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used to call functions in an R/3 system by a caller external to R/3 or to call programs external to R/3 from an R/3 system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functions can only be called via RFC, if they are tagged as RFC functions in the SAP development workbench. They are then called RFC function modules. BAPIs are complete sets of (BAPI) function modules that model a business application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you are familiar with web developments: RFC can be compared to HTTP and BAPIs are CGI applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In other words: A BAPI function is a function module that can be called remotely using the RFC technology&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2008 07:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047319#M967497</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-06-27T07:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047320#M967498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;RFC is Remote Function Call - a function module, which can be called remotely from outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI is also a Remote enabled function module but the difference between BAPI and RFC is in BAPI there is a bussiness object attached to it which calls SAP application internally.&lt;/P&gt;&lt;P&gt;**********************************************&lt;/P&gt;&lt;P&gt;can you explain RFC and BAPI??? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used to call functions in an R/3 system by a caller external to R/3 or to call programs external to R/3 from an R/3 system. Functions can only be called via RFC, if they are tagged as RFC functions in the SAP development workbench. They are then called RFC function modules. BAPIs are complete sets of (BAPI) function modules that model a business application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used by SAP for remote communication, that is, for communications between remote independent systems.RFC is used for communications between two independent SAP systems, or for communications between an SAP system and a non-SAP system, such as an external application. It can also be used for communications between modules on the same system.Using the RFC interfaces you can extend the functionality of R/3 applications from an external program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An R/3 system also contains Business Application Programming Interfaces (also called Business APIs, or BAPIs), which provide a programming interface to business objects. BAPIs are a set of methods for working with and manipulating SAP business objects.Internally, BAPIs are implemented as function modules stored in the R/3 Function Builder. Each BAPI has an equivalent internally-named function module. However, you should use the BAPI and not the function module behind it, because the BAPI provides a stable, object-oriented view of R/3 applications and data. The internal function modules or even the fact that the BAPIs are implemented as function modules are not guaranteed to remain the same in future releases of R/3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI stands for Business Application Programming Interface.&lt;/P&gt;&lt;P&gt;It is a library of functions that are released to the public&lt;/P&gt;&lt;P&gt;as an interface into an existing SAP system from an external&lt;/P&gt;&lt;P&gt;system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used to call functions in an R/3 system&lt;/P&gt;&lt;P&gt;by a caller external to R/3 or to call programs external to&lt;/P&gt;&lt;P&gt;R/3 from an R/3 system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functions can only be called via RFC, if they are tagged as&lt;/P&gt;&lt;P&gt;RFC functions in the SAP development workbench. They are&lt;/P&gt;&lt;P&gt;then called RFC function modules. BAPIs are complete sets of&lt;/P&gt;&lt;P&gt;(BAPI) function modules that model a business application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you are familiar with web developments: RFC can be&lt;/P&gt;&lt;P&gt;compared to HTTP and BAPIs are CGI applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In other words: A BAPI function is a function module that&lt;/P&gt;&lt;P&gt;can be called remotely using the RFC technology.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************************************************************************&lt;/P&gt;&lt;P&gt;RFC and BAPIs are remote enabled function modules. They are practicly the same. A BAPI is one step further as it usually is a self contained business function, such as "Create Purchase Order", or "Change Sales Document". BAPIs interface is very well defined and documented. BAPIs can be found in the BAPI browser via transaction BAPI. RFCs are just remote enabled function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI stands for Business Application Programming Interface. It is a library of functions that are released to the public as an interface into an existing SAP system from an external system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used to call functions in an R/3 system by a caller external to R/3 or to call programs external to R/3 from an R/3 system. Functions can only be called via RFC, if they are tagged as RFC functions in the SAP development workbench.&lt;/P&gt;&lt;P&gt;*******************************************************************************&lt;/P&gt;&lt;P&gt;BAPIs are RFCs, the only difference is that BAPIs usually encapulate some complete business object. For example, creating a sales order, the BAPI would do all of the steps required to create a sales order.&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;Shiva KUmar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2008 07:26:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047320#M967498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-27T07:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047321#M967499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;SImple, in BAPI's there is no exceptions raised.&lt;/P&gt;&lt;P&gt;In RFC you have Exceptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI's return error using BAPIRET2 structure.&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;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2008 07:29:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047321#M967499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-27T07:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047322#M967500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Difference between RFC and BAPI as stated below&lt;/P&gt;&lt;P&gt;BAPI:&lt;/P&gt;&lt;P&gt;BAPI is an API method of a business object which intern is a RFC enabled function module. Business objects are objects in their own sense which involve with a business process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI (Business Application Programming Interface) is an API method of a business object which intern is a RFC enabled Function Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Business Objects are the Objects which has business sence associated to it. Ex. Sales Orders, Purchase Orders etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Properties of BAPI are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every BAPI name should start with letters 'BAPI'. &lt;/P&gt;&lt;P&gt;It is an API method of a Business Object. &lt;/P&gt;&lt;P&gt;it does not contain a internal COMMIT statement in the Function Module. &lt;/P&gt;&lt;P&gt;It does not contain "CALL TRANSACTION" statements. &lt;/P&gt;&lt;P&gt;BAPI do not raise 'EXCEPTIONS'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a RETURN structure is defined as an interface parameter of a BAPI which is used to log all the errors, warnings and the successful processes tha are triggered in the course of execution of a BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A successful execution of a BAPI requires the data to be commited and this process of performing a COMMIT is achieved by calling the BAPI_TRANSACTION_COMMIT' explicitly if there are no errors logged in the RETURN structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two types of BAPI's: Instance Dependent &amp;amp; Instance Independent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI provides an access to the SAP system for external applications to have the business data processed in the form of web services. When BAPI's are used to post the data in SAP system these are used as Function Modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC:&lt;/P&gt;&lt;P&gt;Remote Function Call (RFC) is a call to a function module running in a system different from the caller's. The remote function can also be called from within the same system, but usually caller and callee will be in differene system. RFC allows for remote calls between two SAP Systems (R/3 or R/2) or between an SAP System and a non-SAP System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would clear you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Narin Nandivada.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2008 07:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047322#M967500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-27T07:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047323#M967501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi expert,&lt;/P&gt;&lt;P&gt;goood morning &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i have some problem with material creation by using bapi and rfc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i am able to create material by using  BAPI_MATERIAL_GETINITNUMBER&lt;/P&gt;&lt;P&gt;                                                                BAPI_MATERIAL_SAVEDATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE THING IS I MATERIAL HAS BEEN CREATED &lt;/P&gt;&lt;P&gt;AND I NEED TO EXTEND THIS TO VALUATION TYPE ITS IS NOT GET UPDATED IN MBEW TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND WAT DO I NEED TO GET UPDATED THAT FIELD IN MBEW &lt;/P&gt;&lt;P&gt;AND WAT FUNCTIONS R WAT SELECT STAMENTS DO I NEED TO USEE&lt;/P&gt;&lt;P&gt;PLEASE&lt;/P&gt;&lt;P&gt;SEND ME REPLY AS I AM WAITING FOR REPLY&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;THANK YOU &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRABHANJAN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 04:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047323#M967501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T04:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047324#M967502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi expert,&lt;/P&gt;&lt;P&gt;goood morning &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i have some problem with material creation by using bapi and rfc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i am able to create material by using  BAPI_MATERIAL_GETINITNUMBER&lt;/P&gt;&lt;P&gt;                                                                BAPI_MATERIAL_SAVEDATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE THING IS I MATERIAL HAS BEEN CREATED &lt;/P&gt;&lt;P&gt;AND I NEED TO EXTEND THIS TO VALUATION TYPE ITS IS NOT GET UPDATED IN MBEW TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND WAT DO I NEED TO GET UPDATED THAT FIELD IN MBEW &lt;/P&gt;&lt;P&gt;AND WAT FUNCTIONS R WAT SELECT STAMENTS DO I NEED TO USEE&lt;/P&gt;&lt;P&gt;PLEASE&lt;/P&gt;&lt;P&gt;SEND ME REPLY AS I AM WAITING FOR REPLY&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;THANK YOU &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRABHANJAN &lt;/P&gt;&lt;P&gt;prabhanjan.g06&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 04:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047324#M967502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T04:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047325#M967503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi expert,&lt;/P&gt;&lt;P&gt;goood morning &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i have some problem with material creation by using bapi and rfc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i am able to create material by using  BAPI_MATERIAL_GETINITNUMBER&lt;/P&gt;&lt;P&gt;                                                                BAPI_MATERIAL_SAVEDATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE THING IS I MATERIAL HAS BEEN CREATED &lt;/P&gt;&lt;P&gt;AND I NEED TO EXTEND THIS TO VALUATION TYPE ITS IS NOT GET UPDATED IN MBEW TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND WAT DO I NEED TO GET UPDATED THAT FIELD IN MBEW &lt;/P&gt;&lt;P&gt;AND WAT FUNCTIONS R WAT SELECT STAMENTS DO I NEED TO USEE&lt;/P&gt;&lt;P&gt;PLEASE&lt;/P&gt;&lt;P&gt;SEND ME REPLY AS I AM WAITING FOR REPLY&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;THANK YOU &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRABHANJAN &lt;/P&gt;&lt;P&gt;prabhanjan.g06&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 04:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047325#M967503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T04:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047326#M967504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi expert,&lt;/P&gt;&lt;P&gt;goood morning &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i have some problem with material creation by using bapi and rfc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i am able to create material by using  BAPI_MATERIAL_GETINITNUMBER&lt;/P&gt;&lt;P&gt;                                                                BAPI_MATERIAL_SAVEDATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE THING IS I MATERIAL HAS BEEN CREATED &lt;/P&gt;&lt;P&gt;AND I NEED TO EXTEND THIS TO VALUATION TYPE ITS IS NOT GET UPDATED IN MBEW TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND WAT DO I NEED TO GET UPDATED THAT FIELD IN MBEW &lt;/P&gt;&lt;P&gt;AND WAT FUNCTIONS R WAT SELECT STAMENTS DO I NEED TO USEE&lt;/P&gt;&lt;P&gt;PLEASE&lt;/P&gt;&lt;P&gt;SEND ME REPLY AS I AM WAITING FOR REPLY&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;THANK YOU &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRABHANJAN &lt;/P&gt;&lt;P&gt;prabhanjan.g06&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 04:55:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047326#M967504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T04:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047327#M967505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi expert,&lt;/P&gt;&lt;P&gt;goood morning &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i have some problem with material creation by using bapi and rfc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i am able to create material by using  BAPI_MATERIAL_GETINITNUMBER&lt;/P&gt;&lt;P&gt;                                                                BAPI_MATERIAL_SAVEDATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE THING IS I MATERIAL HAS BEEN CREATED &lt;/P&gt;&lt;P&gt;AND I NEED TO EXTEND THIS TO VALUATION TYPE ITS IS NOT GET UPDATED IN MBEW TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND WAT DO I NEED TO GET UPDATED THAT FIELD IN MBEW &lt;/P&gt;&lt;P&gt;AND WAT FUNCTIONS R WAT SELECT STAMENTS DO I NEED TO USEE&lt;/P&gt;&lt;P&gt;PLEASE&lt;/P&gt;&lt;P&gt;SEND ME REPLY AS I AM WAITING FOR REPLY&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;THANK YOU &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRABHANJAN &lt;/P&gt;&lt;P&gt;prabhanjan.g06&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 04:56:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047327#M967505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T04:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: how can i identify the bapi?difference between rfc and bapi?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047328#M967506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi expert,&lt;/P&gt;&lt;P&gt;goood morning &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i have some problem with material creation by using bapi and rfc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i am able to create material by using  BAPI_MATERIAL_GETINITNUMBER&lt;/P&gt;&lt;P&gt;                                                                BAPI_MATERIAL_SAVEDATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE THING IS I MATERIAL HAS BEEN CREATED &lt;/P&gt;&lt;P&gt;AND I NEED TO EXTEND THIS TO VALUATION TYPE ITS IS NOT GET UPDATED IN MBEW TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND WAT DO I NEED TO GET UPDATED THAT FIELD IN MBEW &lt;/P&gt;&lt;P&gt;AND WAT FUNCTIONS R WAT SELECT STAMENTS DO I NEED TO USEE&lt;/P&gt;&lt;P&gt;PLEASE&lt;/P&gt;&lt;P&gt;SEND ME REPLY AS I AM WAITING FOR REPLY&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;THANK YOU &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRABHANJAN &lt;/P&gt;&lt;P&gt;prabhanjan.g06&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 04:56:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-identify-the-bapi-difference-between-rfc-and-bapi/m-p/4047328#M967506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T04:56:34Z</dc:date>
    </item>
  </channel>
</rss>

