SAP FI_PAYMENT_REQUEST_PP_CHECK Function Module for
FI_PAYMENT_REQUEST_PP_CHECK is a standard fi payment request pp check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for fi payment request pp check FM, simply by entering the name FI_PAYMENT_REQUEST_PP_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: F0PR
Program Name: SAPLF0PR
Main Program: SAPLF0PR
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function FI_PAYMENT_REQUEST_PP_CHECK pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'FI_PAYMENT_REQUEST_PP_CHECK'".
EXPORTING
* I_PAYRQ = "Payment request
* I_PAYRC = "
* I_PAYBU = "Payment transfer
* I_TCODE = "
* I_POST = ' ' "
TABLES
T_VBKPF_NEW = "Document Headers
* T_VBSET_OLD = "Taxes
* T_VBSEG_OLD = "
* T_PAYCT_OLD = "
T_VBSEC_NEW = "One-Time Account Data
T_VBSEG_NEW = "Document Items
T_VBSET_NEW = "Taxes
* T_PAYKO_NEW = "
* T_PAYCT_NEW = "
* T_VBKPF_OLD = "
* T_VBSEC_OLD = "
* T_PAYKO_OLD = "
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLF0PR_001 FM Account Determination
EXIT_SAPLF0PR_002 Checks for Payment Requests / Incoming Payment Requests
EXIT_SAPLF0PR_003 Writing Payment Request / Incoming Payment Request
IMPORTING Parameters details for FI_PAYMENT_REQUEST_PP_CHECK
I_PAYRQ - Payment request
Data type: PAYRQOptional: Yes
Call by Reference: No ( called with pass by value option)
I_PAYRC -
Data type: PAYRCOptional: Yes
Call by Reference: No ( called with pass by value option)
I_PAYBU - Payment transfer
Data type: PAYBUOptional: Yes
Call by Reference: No ( called with pass by value option)
I_TCODE -
Data type: ACCHD-TCODEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_POST -
Data type: BOOLE-BOOLEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FI_PAYMENT_REQUEST_PP_CHECK
T_VBKPF_NEW - Document Headers
Data type: VBKPFOptional: No
Call by Reference: No ( called with pass by value option)
T_VBSET_OLD - Taxes
Data type: VBSETOptional: Yes
Call by Reference: No ( called with pass by value option)
T_VBSEG_OLD -
Data type: VBSEGOptional: Yes
Call by Reference: No ( called with pass by value option)
T_PAYCT_OLD -
Data type: PAYCTOptional: Yes
Call by Reference: No ( called with pass by value option)
T_VBSEC_NEW - One-Time Account Data
Data type: VBSECOptional: No
Call by Reference: No ( called with pass by value option)
T_VBSEG_NEW - Document Items
Data type: VBSEGOptional: No
Call by Reference: No ( called with pass by value option)
T_VBSET_NEW - Taxes
Data type: VBSETOptional: No
Call by Reference: No ( called with pass by value option)
T_PAYKO_NEW -
Data type: PAYKOOptional: Yes
Call by Reference: No ( called with pass by value option)
T_PAYCT_NEW -
Data type: PAYCTOptional: Yes
Call by Reference: No ( called with pass by value option)
T_VBKPF_OLD -
Data type: VBKPFOptional: Yes
Call by Reference: No ( called with pass by value option)
T_VBSEC_OLD -
Data type: VBSECOptional: Yes
Call by Reference: No ( called with pass by value option)
T_PAYKO_OLD -
Data type: PAYKOOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FI_PAYMENT_REQUEST_PP_CHECK Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_i_payrq | TYPE PAYRQ, " | |||
| lt_t_vbkpf_new | TYPE STANDARD TABLE OF VBKPF, " | |||
| lt_t_vbset_old | TYPE STANDARD TABLE OF VBSET, " | |||
| lt_t_vbseg_old | TYPE STANDARD TABLE OF VBSEG, " | |||
| lt_t_payct_old | TYPE STANDARD TABLE OF PAYCT, " | |||
| lv_i_payrc | TYPE PAYRC, " | |||
| lt_t_vbsec_new | TYPE STANDARD TABLE OF VBSEC, " | |||
| lv_i_paybu | TYPE PAYBU, " | |||
| lt_t_vbseg_new | TYPE STANDARD TABLE OF VBSEG, " | |||
| lv_i_tcode | TYPE ACCHD-TCODE, " | |||
| lt_t_vbset_new | TYPE STANDARD TABLE OF VBSET, " | |||
| lv_i_post | TYPE BOOLE-BOOLE, " SPACE | |||
| lt_t_payko_new | TYPE STANDARD TABLE OF PAYKO, " | |||
| lt_t_payct_new | TYPE STANDARD TABLE OF PAYCT, " | |||
| lt_t_vbkpf_old | TYPE STANDARD TABLE OF VBKPF, " | |||
| lt_t_vbsec_old | TYPE STANDARD TABLE OF VBSEC, " | |||
| lt_t_payko_old | TYPE STANDARD TABLE OF PAYKO. " |
|   CALL FUNCTION 'FI_PAYMENT_REQUEST_PP_CHECK' " |
| EXPORTING | ||
| I_PAYRQ | = lv_i_payrq | |
| I_PAYRC | = lv_i_payrc | |
| I_PAYBU | = lv_i_paybu | |
| I_TCODE | = lv_i_tcode | |
| I_POST | = lv_i_post | |
| TABLES | ||
| T_VBKPF_NEW | = lt_t_vbkpf_new | |
| T_VBSET_OLD | = lt_t_vbset_old | |
| T_VBSEG_OLD | = lt_t_vbseg_old | |
| T_PAYCT_OLD | = lt_t_payct_old | |
| T_VBSEC_NEW | = lt_t_vbsec_new | |
| T_VBSEG_NEW | = lt_t_vbseg_new | |
| T_VBSET_NEW | = lt_t_vbset_new | |
| T_PAYKO_NEW | = lt_t_payko_new | |
| T_PAYCT_NEW | = lt_t_payct_new | |
| T_VBKPF_OLD | = lt_t_vbkpf_old | |
| T_VBSEC_OLD | = lt_t_vbsec_old | |
| T_PAYKO_OLD | = lt_t_payko_old | |
| . " FI_PAYMENT_REQUEST_PP_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM FI_PAYMENT_REQUEST_PP_CHECK
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single TCODE FROM ACCHD INTO @DATA(ld_i_tcode). | ||||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_post). | ||||
| DATA(ld_i_post) | = ' '. | |||
Search for further information about these or an SAP related objects