Skip to main content

Posts

Showing posts with the label API

Custom BAPI creation - Step-by-step Procedure

To create the custom BAPI, we need to follow this step-by-step procedure. The steps are  Create the BAPI structure. Create Remote Function Module. Place the Remote Function Module into BOR (Business Object Repository). Implement, Generate and Release the BAPI. Step 1: To create BAPI structure, the structure name should start with the keyword ZBAPI . Here, Two BAPI structures are created in this scenario .The name of these BAPI structures are ZBAPI_IMPORT and ZBAPI_TABLE .   Step 2:   ZBAPI_IMPORT structure contains the following fields.     Step 3 : ZBAPI_TABLE structure contains the following fields.    Step 4: Now, define the Remote Enabled Function Module using T-Code SE37 starting with the ZBAPI . Provide the name of the function module as ZBAPI_DEMO_SD . We must pass the Import and export parameters as value parameters .  Attribute Parameters:    Import Parameters:     Export Parameters:    Re...