‎2007 Feb 23 6:32 AM
hi all
i created Object in SWO1 but under arrtibutes ObjectType. is automatically created with a deep structure and under methods , 2 methods - ExistenceCheck and Display are automatically created.
what is the purpose of that? For every object it is created?
‎2007 Feb 23 6:43 AM
Hi,
These 2 are
Existence check --> Check the Existence of Objects
Display ---> Display the Objects
Look at the below one, you will understand everything
http://www.erpgenie.com/abap/bapi/example.htm
Regards
Sudheer
‎2007 Feb 23 11:19 AM
Hi,
The BAPI ExistenceCheck() checks whether an entry exists in the database for an SAP business object type, for example, whether the customer master has been created.
It can be useful to check the existence of sub-objects at the same time. This could involve checking whether information exists within a particular company code for a customer.
The ExistenceCheck() BAPI is an instance method.
Display - displays the object.
Check this link
http://help.sap.com/saphelp_nw04/helpdata/en/8b/40aedcc95c11d1ad0c080009b0fb56/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/7c/3ce3a865ba11d395fe00a0c94260a5/content.htm
Regards,
Sruthi
‎2007 Feb 23 1:32 PM
yes always it creates two methods one for check and one for display.
when a bapi is called from other platform like java or vb it is useful.
‎2007 Feb 23 1:33 PM
yes always it creates two methods one for check and one for display.
when a bapi is called from other platform like java or vb it is useful.
reward this point
‎2007 Feb 23 6:59 PM