Skip to Content

Implement a Wrapper for the "Create Purchase Requisition" (BAPI_PR_CREATE) function module

Learn how to wrap the BAPI_PR_CREATE in your SAP S/4HANA or SAP S/4HANA Cloud, private edition system and release it for consumption in ABAP Cloud Development.
You will learn
  • How to create a wrapper interface, a wrapper class and a factory class for the BAPI_PR_CREATE.
  • How to test that the wrapper objects have been released for consumption in ABAP Cloud Development.
  • How to release the wrapper for consumption in ABAP Cloud Development.

Prerequisites

  • In this tutorial series, it is assumed that your system is running on the SAP S/4HANA 2023 release with feature pack stack 3 installed.
  • You have completed the previous tutorials in this group to learn about the clean core extensibility model and connect to your SAP S/4HANA system.

Throughout this tutorial, wherever ### appears, use a number (e.g. 000). This tutorial is done with the placeholder 000.

In a previous tutorial of this group, you learned about the clean core extensibility model and got an overview of the sample scenario used for this tutorial group, which will include a Shopping Cart Business Object with purchase requisition creation capability.

In this tutorial we show how to deal with the case in which no convenient released API is available to create purchase requisitions. The ABAP Cloud API Enablement Guidelines for SAP S/4HANA Cloud, private edition, and SAP S/4HANA documentation recommends to use a BAPI as an alternative to a released API, wrap it and then release the wrapper for consumption in ABAP Cloud Development. In a later tutorial you will then create a Shopping Cart RAP Business Object for the online shop application and integrate this wrapper to create purchase requisitions.

  • Step 1

    The first step is to look for a suitable unreleased API to create purchase requisitions. You can use the BAPI Explorer for this purpose. Connect to the backend of your SAP S/4HANA system and start transaction BAPI. For the purpose of this tutorial, we will use the unreleased BAPI BAPI_PR_CREATE: switch to the Alphabetical view (1), look for the Business Object PurchaseRequisition (2), find and click on the method CreateFromData1 (3). You can see that its function module is the BAPI_PR_CREATE (4).

    BAPI explorer

    In the Documentation tab you can find more information on what the BAPI is used for (in this case: to create purchase requisitions) and you can find examples for various scenarios and how to fill the respective parameter values.

    In the Tools section you can click on the Function Builder and then click on Display to see the required parameters:

    BAPI explorer - Tools
    BAPI explorer - Function Builder

    The BAPI_PR_CREATE has a TESTRUN parameter that can be used to call the BAPI in validation mode. Some BAPI have a similar test mode that can be used to validate input data. It is best practice to make use of this test mode, if available, as we will address in more details in a later tutorial of this group.

  • Step 2

    You will develop the wrapper in a dedicated package under the package $TMP in your SAP S/4HANA system.

    In ADT, open your SAP S/4HANA system project folder, right click on it and select New > ABAP Package and input the Name $Z_PURCHASE_REQ_CUST_WRAP_000 and a Description:

    Create custom wrapper package

    Select Add to favorite packages for easy access later on. Keep the Package Type as Development and click on Next. Do not change anything in the following wizard window, and click on Next, then click on Finish. The package will be created.

  • Step 3

    You now want to wrap the API BAPI_PR_CREATE. For this we create a wrapper interface, a wrapper class and a factory class for the BAPI_PR_CREATE.

    Create the wrapper interface

    In order to create the wrapper interface, right click on your previously created package and select New > ABAP Interface and input the Name ZIF_WRAP_BAPI_PR_CREATE_###

    Creater Wrapper Interface

    Copy and paste the following code into your previously created interface:

    ABAP
    Copy
            INTERFACE zif_wrap_bapi_pr_create_###
          PUBLIC.
    
      TYPES:
        BEGIN OF bapimereqheader,
          pr_type TYPE bsart,
        END OF bapimereqheader.
    
      TYPES:
        BEGIN OF bapimereqheaderx,
          pr_type TYPE bapiupdate,
        END OF bapimereqheaderx.
    
      TYPES char1 TYPE c LENGTH 000001.
    
      TYPES:
        BEGIN OF bapimereqitemimp,
          preq_item  TYPE bnfpo,
          plant      TYPE ewerk,
          acctasscat TYPE knttp,
          currency   TYPE waers,
          deliv_date TYPE eindt,
          material   TYPE matnr18,
          matl_group TYPE matkl,
          preq_price TYPE bapicurext,
          quantity   TYPE bamng,
          unit       TYPE bamei,
          pur_group  TYPE ekgrp,
          purch_org  TYPE ekorg,
          short_text TYPE txz01,
        END OF bapimereqitemimp.
      TYPES _bapimereqitemimp TYPE STANDARD TABLE OF bapimereqitemimp WITH DEFAULT KEY.
    
      TYPES:
        BEGIN OF bapimereqitemx,
          preq_item  TYPE bnfpo,
          plant      TYPE bapiupdate,
          acctasscat TYPE bapiupdate,
          currency   TYPE bapiupdate,
          deliv_date TYPE bapiupdate,
          material   TYPE bapiupdate,
          matl_group TYPE bapiupdate,
          preq_price TYPE bapiupdate,
          quantity   TYPE bapiupdate,
          unit       TYPE bapiupdate,
          pur_group  TYPE bapiupdate,
          purch_org  TYPE bapiupdate,
          short_text TYPE bapiupdate,
        END OF bapimereqitemx.
      TYPES _bapimereqitemx TYPE STANDARD TABLE OF bapimereqitemx WITH DEFAULT KEY.
    
      TYPES _bapiret2       TYPE STANDARD TABLE OF bapiret2 WITH DEFAULT KEY.
    
      METHODS bapi_pr_create
        IMPORTING prheader    TYPE bapimereqheader  OPTIONAL
                  prheaderx   TYPE bapimereqheaderx OPTIONAL
                  testrun     TYPE char1            OPTIONAL
        EXPORTING !number     TYPE banfn
                  prheaderexp TYPE bapimereqheader
        CHANGING  pritem      TYPE _bapimereqitemimp
                  pritemx     TYPE _bapimereqitemx  OPTIONAL
                  !return     TYPE _bapiret2        OPTIONAL.
    ENDINTERFACE.
    

    Create the wrapper factory class

    Next, create the wrapper factory class. Right click on your package $Z_PURCHASE_REQ_CUST_WRAP_### and select New > ABAP Class and input the Name ZCL_BAPI_WRAP_FACTORY_###:

    Create factory class

    Copy and paste the following code into your previously created factory class:

    ABAP
    Copy
        CLASS zcl_bapi_wrap_factory_### DEFINITION
        PUBLIC
        FINAL
        CREATE PRIVATE.
    
        PUBLIC SECTION.
    
          CLASS-METHODS create_instance
            IMPORTING
              !destination  TYPE rfcdest OPTIONAL
            RETURNING
              VALUE(result) TYPE REF TO zif_wrap_bapi_pr_create_###.
        PROTECTED SECTION.
        PRIVATE SECTION.
    
          METHODS constructor.
      ENDCLASS.
    
      CLASS zcl_bapi_wrap_factory_### IMPLEMENTATION.
    
        METHOD constructor.
        ENDMETHOD.
    
        METHOD create_instance.
          result = NEW zcl_bapi_pr_wrapper_###( destination = destination  ).
        ENDMETHOD.
      ENDCLASS.
    

    Hint:

    At this point, it is not yet possible to save and activate the class. To achieve this, the wrapper class described in the next section must first be created. Once the wrapper class is created, the factory class can also be saved and activated.

    Create the BAPI Wrapper Class

    Now create the BAPI wrapper class. Right click on your package $Z_PURCHASE_REQ_CUST_WRAP_### and select New > ABAP Class and input the Name ZCL_BAPI_PR_WRAPPER_###:

    Create wrapper class

    Copy and paste the following code into your previously created wrapper class:

    ABAP
    Copy
      CLASS zcl_bapi_pr_wrapper_### DEFINITION
        PUBLIC
        CREATE PRIVATE
    
        GLOBAL FRIENDS zcl_bapi_wrap_factory_### .
    
        PUBLIC SECTION.
    
    
          INTERFACES zif_wrap_bapi_pr_create_### .
        PROTECTED SECTION.
    
          DATA destination TYPE rfcdest .
      PRIVATE SECTION.
        METHODS call_bapi_pr_create
          IMPORTING prheader    TYPE zif_wrap_bapi_pr_create_###~bapimereqheader  OPTIONAL
                    prheaderx   TYPE zif_wrap_bapi_pr_create_###~bapimereqheaderx OPTIONAL
                    testrun     TYPE zif_wrap_bapi_pr_create_###~char1            OPTIONAL
          EXPORTING !number     TYPE banfn
                    prheaderexp TYPE zif_wrap_bapi_pr_create_###~bapimereqheader
          CHANGING  pritem      TYPE zif_wrap_bapi_pr_create_###~_bapimereqitemimp
                    pritemx     TYPE zif_wrap_bapi_pr_create_###~_bapimereqitemx  OPTIONAL
                    !return     TYPE zif_wrap_bapi_pr_create_###~_bapiret2        OPTIONAL
    
          RAISING   cx_root.
    
        METHODS constructor
          IMPORTING !destination TYPE rfcdest.
      ENDCLASS.
    
      CLASS zcl_bapi_pr_wrapper_### IMPLEMENTATION.
      METHOD call_bapi_pr_create.
    
        DATA ls_prheader    TYPE bapimereqheader.
        DATA ls_prheaderx   TYPE bapimereqheaderx.
        DATA ls_prheaderexp TYPE bapimereqheader.
    
        MOVE-CORRESPONDING prheader TO ls_prheader.
        MOVE-CORRESPONDING prheaderx TO ls_prheaderx.
    
        DATA lt_pritem  TYPE STANDARD TABLE OF bapimereqitemimp.
        DATA lt_pritemx TYPE STANDARD TABLE OF bapimereqitemx.
    
        lt_pritem = VALUE #( FOR ls_my_pritem IN pritem
                             ( CORRESPONDING #( ls_my_pritem ) ) ).
    
        lt_pritemx = VALUE #( FOR ls_my_pritemx IN pritemx
                              ( CORRESPONDING #( ls_my_pritemx ) ) ).
    
        CALL FUNCTION 'BAPI_PR_CREATE' DESTINATION me->destination
          EXPORTING prheader    = ls_prheader
                    prheaderx   = ls_prheaderx
                    testrun     = testrun
          IMPORTING number      = number
                    prheaderexp = ls_prheaderexp
          TABLES    pritem      = lt_pritem
                    pritemx     = lt_pritemx
                    return      = return.
      ENDMETHOD.
    
      METHOD constructor.
        me->destination = destination.
      ENDMETHOD.
    
        METHOD zif_wrap_bapi_pr_create_###~bapi_pr_create.
          TRY.
              me->call_bapi_pr_create(
              EXPORTING
                prheader = prheader
                prheaderx = prheaderx
                testrun = testrun
              IMPORTING
                number = number
                prheaderexp = prheaderexp
              CHANGING
                return = return
                pritemx = pritemx
                pritem = pritem
    
            ).
            CATCH cx_root INTO DATA(lx_root_pr_create).
    
          ENDTRY.
        ENDMETHOD.
      ENDCLASS.
    
  • Step 4

    The wrapper you just created is currently not released for consumption in ABAP Cloud Development. You can test this by creating a console application in ABAP Cloud Development to call the (unreleased) wrapper. We suggest to create a dedicated package under the ABAP Cloud Development ZLOCAL package in your SAP S/4HANA System for this test.

    In ADT, open your SAP S/4HANA system project folder, navigate to the ZLOCAL structure package, right click on it and select New > ABAP Package and input the Name Z_PURCHASE_REQ_TEST_### and a Description:

    Create test package

    Click on Next and then Next again. Select a suitable transport request (or create a new one if needed) and then click on Finish. Now you can create the class for the console application. Right click on the newly created package and select New > ABAP Class and input the Name ZCL_BAPI_WRAP_TEST_### and a Description:

    Create test class

    Click on Next, select a suitable transport request (or create a new one if needed) and then click on Finish.

    You can check that the newly created class is an ABAP Cloud Development class by checking that the ABAP Language Version is ABAP Language for Cloud Development in the Properties > General tab:

    Console application language

    Implement the newly created class as follows:

    ABAP
    Copy
        CLASS zcl_bapi_wrap_test_### DEFINITION
          PUBLIC
          FINAL
          CREATE PUBLIC .
    
          PUBLIC SECTION.
          INTERFACES if_oo_adt_classrun .
          PROTECTED SECTION.
          PRIVATE SECTION.
        ENDCLASS.
    
        CLASS zcl_bapi_wrap_test_### IMPLEMENTATION.
        METHOD if_oo_adt_classrun~main.
    
            DATA pr_returns TYPE bapirettab.
            DATA number  TYPE banfn  .
    
            "if the data element banfn is not released for the use in cloud develoment in your system
            "you have to use the shadow type zif_wrap_bapi_pr_create_###=>banfn
    
            "DATA number  TYPE zif_wrap_bapi_pr_create_###=>banfn  .
            DATA prheader TYPE zif_wrap_bapi_pr_create_###=>bapimereqheader .
            DATA prheaderx TYPE zif_wrap_bapi_pr_create_###=>bapimereqheaderx .       
            DATA pritem  TYPE zif_wrap_bapi_pr_create_###=>_bapimereqitemimp .
            DATA pritemx  TYPE zif_wrap_bapi_pr_create_###=>_bapimereqitemx  .
            DATA prheaderexp  TYPE zif_wrap_bapi_pr_create_###=>bapimereqheader .
    
            DATA(myclass) = zcl_bapi_wrap_factory_###=>create_instance( ).
    
            prheader = VALUE #( pr_type = 'NB' ).
            prheaderx = VALUE #( pr_type = 'X' ).
    
            pritem           = VALUE #( (
                              preq_item  = '00010'
                              plant      = '1010'
                              acctasscat = 'U'
                              currency   = 'EUR'
                              deliv_date = cl_abap_context_info=>get_system_date(  ) + 14   "format: yyyy-mm-dd (at least 10 days)
                              material   = 'ZPRINTER01'
                              matl_group = 'A001'
                              preq_price = '100.00'
                              quantity   = '1'
                              unit       = 'ST'
                              pur_group = '001'
                              purch_org = '1010'
                              short_text = 'ZPRINTER01'
                            ) ).
    
            pritemx           = VALUE #( (
                              preq_item  = '00010'
                              plant      = 'X'
                              acctasscat = 'X'
                              currency   = 'X'
                              deliv_date = 'X'
                              material   = 'X'
                              matl_group = 'X'
                              preq_price = 'X'
                              quantity   = 'X'
                              unit       = 'X'
                              pur_group = 'X'
                              purch_org = 'X'
                              short_text = 'X'
                            ) ).
    
            TRY.
                myclass->bapi_pr_create(
                  EXPORTING
                    prheader = prheader
                    prheaderx = prheaderx
                    testrun = abap_false
                  IMPORTING
                    number   = number
                    prheaderexp = prheaderexp
                  CHANGING
                    pritem = pritem
                    pritemx = pritemx
                    return = pr_returns
            )
                .
              CATCH cx_root into data(error).
                "handle exception            
            ENDTRY.
            out->write( |purchase requisition number: { number  } | ).
            LOOP AT pr_returns INTO DATA(bapiret2_line).
              out->write( |bapi_return: { bapiret2_line-message } | ).
            ENDLOOP.
          ENDMETHOD.
        ENDCLASS.
    

    Save it.

    The class calls the wrapper factory class and, given some input parameter values like the delivery date and the item price, creates a purchase requisition for that specific item and prints the information to the console. Since the wrapper is not released for consumption in ABAP Cloud Development, when you try to activate the class you will get an error message.

    unreleased wrapper error

    The class calls the method create_instance of the BAPI, which will create an instance of the Shopping Cart Business Object and the relative purchase requisition. In the context of this tutorial group, this is of course done for educational purposes, to show the creation of a purchase requisition and test the wrapper via console application. If for any reason you do not wish to create an instance of the Shopping Cart Business Object at this point, you can instead make use of the BAPI method check.

  • Step 5

    Now you need to release the wrapper interface and wrapper factory class for consumption in ABAP Cloud Development. To do this, you need to add a Release Contract (C1) to both objects for use system-internally and use in Cloud Development.

    In your Project Explorer open the ABAP Interface you created. In the Properties tab click on the API State tab and then click on the green plus icon next to the Use System-Internally (Contract C1).

    Release interface

    Make sure the Release State is set to Released and check the option Use in Cloud Development:

    Release interface - 2

    Click on Next. The changes will be validated. No issues should arise:

    Release interface - 3

    Click on Next and then click on Finish.

    The API State tab will now show the new Release State:

    Release interface - 4

    Repeat the same steps to release the factory class you created:

    When releasing this class, you will see an option in the wizard called ‘Enable Configuration of Authorization Default Values’ which allows you to define authorization default values while releasing the class. In the scope of this tutorial, we will not utilize this option, since at the moment we have no information on the needed authorization default values for BAPI_PR_CREATE. The handling of authorizations will be handled in a later tutorial of this series.

    Release factory class

    You will not release the wrapper class.

  • Step 6

    Important! If you execute ATC checks (as described below) on your package $Z_PURCHASE_REQ_CUST_WRAP_000 using the check variant you created for Clean Core Extensibility (as described in Step 4 Verify technical requirements of the first tutorial in this group), you will receive no findings:

    Check variant clean core

    Note: The next step is not required for this tutorial. It outlines the procedure for requesting ATC exemptions for your created wrapper objects, which is only applicable when using a non-classic API; not applicable in this tutorial. There is no need to request an exemption for a classic API. For more information, please refer to note 3565942. This step is provided solely to illustrate the process that would be necessary if a non-classic API were used.

    You will need to run ATC checks on the objects you created and request exemptions to use the non classic API.

    To run the ATC checks right click on the $Z_PURCHASE_REQ_CUST_WRAP_000 package and select Run As > ABAP Test Cockpit With… and select your ATC check variant. Confirm by clicking on OK. The result of the ATC check will appear in the ATC Problems tab. As expected, you will get ATC check errors because you are using an unreleased API:

    ATC checks - class error

    Note that there are ATC checks errors for both the interface and the wrapper class. You will need to request an exemption for each of the two objects.

    Right click on any one of the class related errors in the ATC Problems tab and choose Request Exemption. You can then request an exemption for the whole class by selecting Class (ABAP Objects) under the Apply exemption To tab:

    Request exemptions for the whole class

    Click Next, choose a valid approver, a reason to request the exemptions and input a justification for it. Then click on Finish.

    Approver and justification

    Proceed in the same way to request an exemption for the whole wrapper class.

    How to maintain approvers and how to approve exemptions is beyond the scope of this tutorial. After a maintained approver has approved the exemptions, you can verify it by running ATC checks again in ADT: no issue should arise.

  • Step 7

    You can test that the wrapper was correctly released for consumption in ABAP Cloud Development by running the console application class ZCL_BAPI_WRAP_TEST_###. First, the errors in the class should have disappeared now that you released the wrapper, so you can save and activate the class. Now you can run it: right click on the class and select Run As > ABAP Application (Console). The class should now run without errors and the purchase requisition will be created and displayed in the console:

    Purchase requisition creation test

    The console application is a quick and simple way to check if the BAPI was correctly wrapped and released and if the wrapper works as intended. In the next tutorials of this group you will create a Shopping Cart Business Object and you will integrate the wrapper to create purchase requisitions for the shopping cart entries.


Back to top