SAP FPRL_PROCESS_00001809 Function Module for Payment Release: Determination of house bank/partner bank
FPRL_PROCESS_00001809 is a standard fprl process 00001809 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Payment Release: Determination of house bank/partner bank processing and below is the pattern details for this FM, 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 fprl process 00001809 FM, simply by entering the name FPRL_PROCESS_00001809 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FPRL_INTEGRATION
Program Name: SAPLFPRL_INTEGRATION
Main Program: SAPLFPRL_INTEGRATION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FPRL_PROCESS_00001809 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 'FPRL_PROCESS_00001809'"Payment Release: Determination of house bank/partner bank.
EXPORTING
I_XVORL = "
I_LAUFD = "
I_LAUFI = "
IS_REGUH = "
IS_ZHLG1 = "
TABLES
T_HBANK = "
T_PBANK = "
IMPORTING Parameters details for FPRL_PROCESS_00001809
I_XVORL -
Data type: XVORLOptional: No
Call by Reference: Yes
I_LAUFD -
Data type: LAUFDOptional: No
Call by Reference: Yes
I_LAUFI -
Data type: LAUFIOptional: No
Call by Reference: Yes
IS_REGUH -
Data type: REGUHOptional: No
Call by Reference: Yes
IS_ZHLG1 -
Data type: ZHLG1Optional: No
Call by Reference: Yes
TABLES Parameters details for FPRL_PROCESS_00001809
T_HBANK -
Data type: IHBANKOptional: No
Call by Reference: No ( called with pass by value option)
T_PBANK -
Data type: F110_PBANKOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FPRL_PROCESS_00001809 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_xvorl | TYPE XVORL, " | |||
| lt_t_hbank | TYPE STANDARD TABLE OF IHBANK, " | |||
| lv_i_laufd | TYPE LAUFD, " | |||
| lt_t_pbank | TYPE STANDARD TABLE OF F110_PBANK, " | |||
| lv_i_laufi | TYPE LAUFI, " | |||
| lv_is_reguh | TYPE REGUH, " | |||
| lv_is_zhlg1 | TYPE ZHLG1. " |
|   CALL FUNCTION 'FPRL_PROCESS_00001809' "Payment Release: Determination of house bank/partner bank |
| EXPORTING | ||
| I_XVORL | = lv_i_xvorl | |
| I_LAUFD | = lv_i_laufd | |
| I_LAUFI | = lv_i_laufi | |
| IS_REGUH | = lv_is_reguh | |
| IS_ZHLG1 | = lv_is_zhlg1 | |
| TABLES | ||
| T_HBANK | = lt_t_hbank | |
| T_PBANK | = lt_t_pbank | |
| . " FPRL_PROCESS_00001809 | ||
ABAP code using 7.40 inline data declarations to call FM FPRL_PROCESS_00001809
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.Search for further information about these or an SAP related objects