‎2007 Mar 06 11:33 AM
hi
1)if want to use bapi, we must check the function module in method, right? why so many people use the function module in the abap program?
2)what is the difference for bapi FM and other common FM?
thanks
‎2007 Mar 06 11:36 AM
Hi el,
the methods that you see in the Business Object cannot be directly called from an ABAP program. hence we use the BAPI function module for calling. The methods that we see in the BO are more used in the workflow tasks.
the BAPI function modules are special function odules which are RFC enabled(Can be Called from an external system (Non sap also)), and have a specific business functionality attached to them.
Regards,
ravi
‎2007 Mar 06 11:50 AM
hi,
1) from the reply, method is more for tasks as task is referring to method, correct?
2) bapi function module is rfc enabled, yes, that i know of. i do not understand what you mean by specific business functionality attached to them. can explain? or have example?
thanks
‎2007 Mar 06 12:07 PM
Hi,
BAPI's are API methods of Business Objects and can be implemented as Function Module.
In BAPI fun module you can't use CHANGING and EXCEPTIONS paramters,
You don;t Use: Include structures,Commit work,Call transaction, Submit report,Set GET parameters etc.
And in BAPI always you should declare a Export or table parameter with RETURN like BAPIRET2.
Always A TASK is assigned with a Business Object and A method of that business Object.
Hope this helps.
Regards,
Anji
‎2007 Mar 06 12:09 PM
BAPI are RFC enabled function modules. 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.
The following standardized BAPIs are provided:
Reading instances of SAP business objects
GetList ( ) With the BAPI GetList you can select a range of object key values, for example, company codes and material numbers.
The BAPI GetList() is a class method.
GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved and returned to the calling program. The instance is identified via its key. The BAPI GetDetail() is an instance method. BAPIs that can create, change or delete instances of a business object type
The following BAPIs of the same object type have to be programmed so that they can be called several times within one transaction. For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction, the second BAPI call must not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
Create( ) and CreateFromData! ( )
The BAPIs Create() and CreateFromData() create an instance of an SAP business object type, for example, a purchase order. These BAPIs are class methods.
Change( )
The BAPI Change() changes an existing instance of an SAP business object type, for example, a purchase order. The BAPI Change () is an instance method.
Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database or sets a deletion flag.
The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type. The instance to be cancelled remains in the database and an additional instance is created and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst! ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are instance methods.
Check these Links out
http://searchsap.techtarget.com/ateQuestionNResponse/0,289625,sid21_cid558752_tax293481,00.html
http://www.sap-img.com/abap/interview-question-on-bapi-rfc-abap-objects-tables.htm
http://www.sap-img.com/fu033.htm
http://www.sap-img.com/abap/ale-bapi.htm
REgards,
Kishore