SAP Function Modules

BAPI_PAYMENTREQUEST_CANCEL SAP Function module - Cancel Payment Request







BAPI_PAYMENTREQUEST_CANCEL is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name BAPI_PAYMENTREQUEST_CANCEL into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: 2021
Released Date: 26.11.1999
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM BAPI_PAYMENTREQUEST_CANCEL - BAPI PAYMENTREQUEST CANCEL





CALL FUNCTION 'BAPI_PAYMENTREQUEST_CANCEL' "Cancel Payment Request
  EXPORTING
    requestid =                 " bapi2021_keyno-requestid  Key Number for Payment Request
    reason_rev =                " bapi2021_rev-reason_rev  Reason for Cancelation
    date_rev =                  " bapi2021_rev-date_rev  Date of Cancelation
*   testrun =                   " bapi2021_help-testrun  Switch to Simulation Session for Write BAPIs
  IMPORTING
    return =                    " bapiret2      Return Parameter
    .  "  BAPI_PAYMENTREQUEST_CANCEL

ABAP code example for Function Module BAPI_PAYMENTREQUEST_CANCEL





The ABAP code below is a full code listing to execute function module BAPI_PAYMENTREQUEST_CANCEL including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).

DATA:
ld_return  TYPE BAPIRET2 .


DATA(ld_requestid) = some text here

DATA(ld_reason_rev) = some text here

DATA(ld_date_rev) = 20210129

DATA(ld_testrun) = some text here . CALL FUNCTION 'BAPI_PAYMENTREQUEST_CANCEL' EXPORTING requestid = ld_requestid reason_rev = ld_reason_rev date_rev = ld_date_rev * testrun = ld_testrun IMPORTING return = ld_return . " BAPI_PAYMENTREQUEST_CANCEL
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_return  TYPE BAPIRET2 ,
ld_requestid  TYPE BAPI2021_KEYNO-REQUESTID ,
ld_reason_rev  TYPE BAPI2021_REV-REASON_REV ,
ld_date_rev  TYPE BAPI2021_REV-DATE_REV ,
ld_testrun  TYPE BAPI2021_HELP-TESTRUN .


ld_requestid = some text here

ld_reason_rev = some text here

ld_date_rev = 20210129

ld_testrun = some text here

SAP Documentation for FM BAPI_PAYMENTREQUEST_CANCEL


One payment request can be canceled each time the method is called. A cancelation indicator is assigned for the payment request and ...See here for full SAP fm documentation

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name BAPI_PAYMENTREQUEST_CANCEL or its description.