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
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
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).
| ld_return | TYPE BAPIRET2 . |
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 . |
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.
BAPI_PAYMENTREQUEST_CANCEL - Cancel Payment Request BAPI_PAYIT_POST_SENDER_TAB - Check and Post Payment Items of Ordering Party (+ SWIFT and Bank Ctrl BAPI_PAYIT_POST_SENDER - Check and Post Payment Items of Ordering Party (+ SWIFT and Bank Ctrl BAPI_PAYIT_POST_RECEIVER - Check and Post Payment Items of Recipient (+ SWIFT and Bank Control Ke BAPI_PAYIT_POST_ITEM - Post Turnover (+ SWIFT and Bank Control Key) BAPI_PAYIT_POST_CLEARING - Check and Post Payment Items of Routing