BAPI Step by Step Example
BAPI Step by Step Example
http://www.erpgenie.com/sap/abap/bapi/example.htm
-1284
Web
ERPGenie.COM
WorkflowGenie.COM
ERPGenie Menu
Consultant Corner
Client Corner
ERPGenie.COM -> SAP Technical -> ABAP -> BAPI ->BAPI Step by Step Example
Business Application Program Interface
1. About the Example 2. STEP 1 - Define a structures for the BAPI 3. STEP 2 - Write Function Module 4. STEP 3 - Create the API Method Using the BAPI WIZARD 5. STEP 4 - Final steps
1 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
You will have to define a structure for every parameter in the BAPI. You cannot use the same structures used in existing applications because BAPI structures are frozen when BAPIs are released and then there are restrictions on changing the
ZBAPI_ORDER_STATUS_IMPORT
2 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
ZBAPISTAT
3 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
Each BAPI must have its own function group. Under the attributes tab remember to select Processing Type Remote Enabled module, otherwise the function modu cannot be invoked via RFC and used as a BAPI Import/Export parameters can only be BY VALUE for an RFC enabled function module We are only creating one BAPI in this example, but you can create related BAPIs in the same function pool, so they be able to share global data.
Attributes
4 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
Import Parameters
5 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
Export Parameters
6 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
Tables
7 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
Code
Notes:
The subroutine SET_RETURN_MESSAGE is a standard routine used for BAPIs that use the BAPIRETURN structure In form Z_BAPI_GET_ORDER_SYSTEM_STATUS there is a test IF 1 = 2. If the test is true a message is displayed. condition will obviously never be true, and we will never want to display a message in a BAPI. The reason why it is included is, that it create a reference for the message, so that the WHERE USED functionality can be used for the message. This is the SAP standard way to handle it, copied from the Company Code GetList BAPI.
INCLUDE LZBAPISTATUSUXX ***************************************************************** * THIS FILE IS GENERATED BY THE FUNCTION LIBRARY. * * NEVER CHANGE IT MANUALLY, PLEASE! * ***************************************************************** INCLUDE LZBAPISTATUSU02. "Z_BAPI_GET_ORDER_SYSTEM_STATUS INCLUDE LZBAPISTATUSTOP - Global data FUNCTION-POOL ZBAPISTATUS. Types: begin of Type_tj02t, istat like tj02t-istat, txt04 like tj02t-txt04, txt30 like tj02t-txt30, end of type_tj02t. "MESSAGE-ID Z3
8 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
DATA: * Declarations for TABLE parameter T_BAPISTAT like ZBAPISTAT occurs 0, G_BAPISTAT like ZBAPISTAT, * Table for object texts t_tj02t type type_tj02t occurs 0, g_tj02t type type_tj02t. * Structure for return messages DATA: BEGIN OF MESSAGE, MSGTY LIKE SY-MSGTY, MSGID LIKE SY-MSGID, MSGNO LIKE SY-MSGNO, MSGV1 LIKE SY-MSGV1, MSGV2 LIKE SY-MSGV2, MSGV3 LIKE SY-MSGV3, MSGV4 LIKE SY-MSGV4, END OF MESSAGE. INCLUDE LZBAPISTATUSF01 - Subroutines ***INCLUDE LZBAPISTATUSF01 . *----------------------------------------------------------------------* *&---------------------------------------------------------------------* *& Form SET_RETURN_MESSAGE *&---------------------------------------------------------------------* * This routine is used for setting the BAPI return message. * The routine is a standard routine for BAPIs that handles the message * structure for the BAPIRETURN structure. It has been copied from the * BAPI Company Code Getlist *----------------------------------------------------------------------* * -->P_MESSAGE text * <--P_RETURN text *----------------------------------------------------------------------* form SET_RETURN_MESSAGE USING VALUE(P_MESSAGE) LIKE MESSAGE CHANGING P_RETURN LIKE BAPIRETURN. CHECK NOT MESSAGE IS INITIAL. CALL FUNCTION 'BALW_BAPIRETURN_GET' EXPORTING TYPE = P_MESSAGE-MSGTY CL = P_MESSAGE-MSGID NUMBER = P_MESSAGE-MSGNO PAR1 = P_MESSAGE-MSGV1 PAR2 = P_MESSAGE-MSGV2 PAR3 = P_MESSAGE-MSGV3 PAR4 = P_MESSAGE-MSGV4 * LOG_NO ='' * LOG_MSG_NO = ' ' IMPORTING BAPIRETURN = P_RETURN EXCEPTIONS OTHERS = 1. endform. " SET_RETURN_MESSAGE FUNCTION Z_BAPI_GET_ORDER_STATUS FUNCTION z_bapi_get_order_system_status. *"---------------------------------------------------------------------*"*"Local interface: *" IMPORTING *" VALUE(I_AUFNR) TYPE AUFNR *" VALUE(I_SPRAS) TYPE SPRAS DEFAULT SY-LANGU *" VALUE(I_EXCLUDEINACTIVE) TYPE CHAR1 OPTIONAL *" EXPORTING *" VALUE(RETURN) TYPE BAPIRETURN *" TABLES *" T_BAPISTAT STRUCTURE ZBAPISTAT
9 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
*"---------------------------------------------------------------------DATA: l_aufnr LIKE afko-aufnr, l_objnr LIKE jest-objnr. ******************************************** * Check if order exists ******************************************** SELECT SINGLE aufnr FROM afko INTO l_aufnr WHERE aufnr = BAPI_ORDER_STATUS_IMPORT-orderid. IF sy-subrc NE 0. CLEAR message. message-msgty = 'E'. message-msgid = 'Z3'. message-msgno = '000'. message-msgv1 = BAPI_ORDER_STATUS_IMPORT-orderid. PERFORM set_return_message USING message CHANGING return. IF 1 = 2. * The only reason to include this statement, that will obviously * never execute, is that it will create a referecence so that you * can find out where a particular message is being used. This * functionality is used by the BAPIs programmed by SAP MESSAGE e000(z3). ENDIF. ENDIF. CHECK return IS INITIAL. ******************************************** * Read order status ******************************************** CONCATENATE 'OR' BAPI_ORDER_STATUS_IMPORT-orderid INTO l_objnr. IF BAPI_ORDER_STATUS_IMPORT-i_excludeinactive = 'X'. SELECT objnr stat inact FROM jest INTO TABLE t_bapistat WHERE objnr = l_objnr AND inact <> 'X'. ELSE. SELECT objnr stat inact FROM jest INTO TABLE t_bapistat WHERE objnr = l_objnr. ENDIF. IF sy-subrc <> 0. * No object status found CLEAR message. message-msgty = 'E'. message-msgid = 'Z3'. message-msgno = '001'. message-msgv1 = BAPI_ORDER_STATUS_IMPORT-orderid. PERFORM set_return_message USING message CHANGING return. IF 1 = 2. MESSAGE e001(z3). ENDIF. ENDIF. CHECK return IS INITIAL. ******************************************** * Read order status texts ******************************************** SELECT istat txt04 txt30 FROM tj02t INTO TABLE t_tj02t FOR ALL ENTRIES IN t_bapistat WHERE istat = t_bapistat-stat AND
10 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
spras = BAPI_ORDER_STATUS_IMPORT-i_spras. SORT t_tj02t BY istat. LOOP AT t_bapistat INTO g_bapistat. READ TABLE t_tj02t WITH KEY istat = g_bapistat-stat BINARY SEARCH INTO g_tj02t. IF sy-subrc = 0. MOVE: g_tj02t-txt04 TO g_bapistat-txt04, g_tj02t-txt30 TO g_bapistat-txt30. MODIFY t_bapistat FROM g_bapistat TRANSPORTING txt04 txt30. ENDIF. ENDLOOP. ENDFUNCTION.
You can either create the new Object type as a subtype of an existing business object or create a new business object from scratch. In this example would be obvious to create the Object type as a subtype of BUS2005 Production order. However, to illustrate how to create a new Object type from scratch, we will do this. In the Object/Interface type field write the name of the new Business Object: ZORDERSTAT. Press enter and fill in the additional fields necessary to the object type. Supertype: Not relevant because we are creating our object from scratch
Program. This is the name of the program where the wizard generates code for the Object type, NOT the function module we created earlier. The pr name must not be the name of an existing program.
11 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
Press enter and create the new business object. Note that when you create the business object a standard interface, an attribute ObjectType and the methods ExistenceCheck and Display are automatically generated. These cannot be changed !
The next step is to add the Z_BAPI_GET_ORDER_STATUS method to the business object. Select Utilities -> API methods -> Add method and name of the function module in the dialog box. Next the dialog ox show below will be shown. This is the start screen of the BAPI wizard. Proceed wit wizard by pressing the button.
12 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
After you have finished the wizard, you will notice that the ZGetOrderStatus has been added to the business object:
13 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
You can double-click on the method to see its properties. To use the business object you must change the Object type status to Implemented. Use m Edit->Change releases status->Object type->To implemented. No you can test the object (Press F8). Note that the BAPI wizard has added a wrapper class for the function module so it can be sued as method in the business object. Choose menu Goto->Program to display the program: ***** Implementation of object type ZORDERSTAT ***** INCLUDE <OBJECT>. BEGIN_DATA OBJECT. " Do not change.. DATA is generated * only private members may be inserted into structure private DATA: " begin of private, " to declare private attributes remove comments and " insert private attributes here ... " end of private, KEY LIKE SWOTOBJID-OBJKEY. END_DATA OBJECT. " Do not change.. DATA is generated BEGIN_METHOD ZGETORDERSTATUS CHANGING CONTAINER. DATA: BAPIORDERSTATUSIMPORT LIKE ZBAPI_ORDER_STATUS_IMPORT, RETURN LIKE BAPIRETURN, TBAPISTAT LIKE ZBAPISTAT OCCURS 0. SWC_GET_ELEMENT CONTAINER 'BapiOrderStatusImport' BAPIORDERSTATUSIMPORT. SWC_GET_TABLE CONTAINER 'TBapistat' TBAPISTAT. CALL FUNCTION 'Z_BAPI_GET_ORDER_STATUS' EXPORTING BAPI_ORDER_STATUS_IMPORT = BAPIORDERSTATUSIMPORT IMPORTING RETURN = RETURN TABLES T_BAPISTAT = TBAPISTAT EXCEPTIONS OTHERS = 01. CASE SY-SUBRC. WHEN 0. " OK WHEN OTHERS. " to be implemented ENDCASE. SWC_SET_ELEMENT CONTAINER 'Return' RETURN. SWC_SET_TABLE CONTAINER 'TBapistat' TBAPISTAT. END_METHOD.
14 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
Release the BAPI as a method in the BOR (Release the methods you has created - Set the cursor on the me then Edit -> Change release status -> Object type component -> To released ) For potential write BAPIs: Release the IDoc and its segments You can now display the BAPI in the BAPI Explorer:
Who needs ABAPers??? The functional person's tool for stress testing and data conversions.. Siamease is an easy to use tool that allows you to migrate data, upload data, stress test, and Contact Us | Polls | Add URL | Contribute much more andTerms | Feedback | Help! | About | Privacy | you don't need to Message Board | Discussion Forum | BLOG | Consultants: Post your resume | Companies: Advertise on ERPGenie.COM | Post Job know any ABAP
15 of 16
7/8/2012 9:55 AM
http://www.erpgenie.com/sap/abap/bapi/example.htm
Financials Consultant | Consultant Review | Gallia Consulting | Supply Chain Project | SAP Financials Forum Genie Press | WorkflowGenie | ESAGenie | ERPTopSites | ABAP Tips and Tricks 2001-2007 ERPGenie.COM, Inc. All rights reserved. All product names are trademarks of their respective companies. ERPGenie.COM, Inc. is in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver, and and any other SAP trademarks are registered trademarks of SAP AG in Germany and in several other countries. Every effort is made to ensure content integrity. Use information on this site at your own risk.
16 of 16
7/8/2012 9:55 AM