‎2007 Aug 21 8:27 AM
hi guru's,
i want an example for bapi, how to create , how to use it in Abap editor to retrive data , to create.
send me proper programs if possible
thanks in advance
‎2007 Aug 21 8:31 AM
Hi,
<u>You can learn BAPI Concepts from here:</u> http://help.sap.com/saphelp_nw04/helpdata/en/e0/9eb2370f9cbe68e10000009b38f8cf/frameset.htm
<u>BAPI example: -</u>
http://www.sap-img.com/abap/bapi-goodsmvt-create-to-post-goods-movement.htm
<u>BAPI Step by step creation:</u>
http://www.sap-img.com/abap/bapi-step-by-step-guidance.htm
Regards,
Krishna.
‎2007 Aug 21 8:32 AM
Hi,
Business application Prograaming Interface is nothing but the Method of a Business object.
BAPI-step by step
http://www.sapgenie.com/abap/bapi/example.htm
list of all bapis
http://www.planetsap.com/LIST_ALL_BAPIs.htm
for BAPI's
http://www.sappoint.com/abap/bapiintro.pdf
http://www.sappoint.com/abap/bapiprg.pdf
http://www.sappoint.com/abap/bapiactx.pdf
http://www.sappoint.com/abap/bapilst.pdf
http://www.sappoint.com/abap/bapiexer.pdf
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
http://www.planetsap.com/Bapi_main_page.htm
http://www.topxml.com/sap/sap_idoc_xml.asp
http://www.sapdevelopment.co.uk/
http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
Also refer to the following links..
www.sappoint.com/abap/bapiintro.pdf
www.sap-img.com/abap/bapi-conventions.htm
www.planetsap.com/Bapi_main_page.htm
www.sapgenie.com/abap/bapi/index.htm
The small piece of code are-------
.
TABLES : MARA.
TYPES : BEGIN OF T_MARA,
MATNR TYPE MATNR,
MTART TYPE MTART,
END OF T_MARA.
DATA : IT_MARA TYPE STANDARD TABLE OF T_MARA WITH HEADER LINE.
DATA : RET LIKE Z8BAPI_MARA.
SELECT-OPTIONS : P_MATNR FOR MARA-MATNR.
START-OF-SELECTION.
CALL FUNCTION 'ZBAPI_MATERIAL_DISP'
EXPORTING
matnr = P_MATNR
IMPORTING
RETURN = RET
TABLES
ITAB = IT_MARA
.
**do rewards if usefull
Regards,
vijay