SAP FI_PAYMENT_CURRENCY_RATE_INIT Function Module for
FI_PAYMENT_CURRENCY_RATE_INIT is a standard fi payment currency rate init 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 currency rate init FM, simply by entering the name FI_PAYMENT_CURRENCY_RATE_INIT into the relevant SAP transaction such as SE37 or SE38.
Function Group: F110
Program Name: SAPLF110
Main Program: SAPLF110
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FI_PAYMENT_CURRENCY_RATE_INIT 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_CURRENCY_RATE_INIT'".
EXPORTING
I_WAERS = "
I_PDATE = "
I_T001 = "
I_X001 = "
IMPORTING
E_KURSFAKTOR = "
E_KURSFAKTOR2 = "
E_KURSFAKTOR3 = "
E_KURSTEILER = "
E_KURSTEILER2 = "
E_KURSTEILER3 = "
CHANGING
C_KURSF = "
C_KURS2 = "
C_KURS3 = "
IMPORTING Parameters details for FI_PAYMENT_CURRENCY_RATE_INIT
I_WAERS -
Data type: WAERSOptional: No
Call by Reference: Yes
I_PDATE -
Data type: BUDATOptional: No
Call by Reference: Yes
I_T001 -
Data type: T001Optional: No
Call by Reference: Yes
I_X001 -
Data type: X001Optional: No
Call by Reference: Yes
EXPORTING Parameters details for FI_PAYMENT_CURRENCY_RATE_INIT
E_KURSFAKTOR -
Data type:Optional: No
Call by Reference: Yes
E_KURSFAKTOR2 -
Data type:Optional: No
Call by Reference: Yes
E_KURSFAKTOR3 -
Data type:Optional: No
Call by Reference: Yes
E_KURSTEILER -
Data type:Optional: No
Call by Reference: Yes
E_KURSTEILER2 -
Data type:Optional: No
Call by Reference: Yes
E_KURSTEILER3 -
Data type:Optional: No
Call by Reference: Yes
CHANGING Parameters details for FI_PAYMENT_CURRENCY_RATE_INIT
C_KURSF -
Data type: KURSFOptional: No
Call by Reference: Yes
C_KURS2 -
Data type: KURS2Optional: No
Call by Reference: Yes
C_KURS3 -
Data type: KURS3Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FI_PAYMENT_CURRENCY_RATE_INIT 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_c_kursf | TYPE KURSF, " | |||
| lv_i_waers | TYPE WAERS, " | |||
| lv_e_kursfaktor | TYPE WAERS, " | |||
| lv_c_kurs2 | TYPE KURS2, " | |||
| lv_i_pdate | TYPE BUDAT, " | |||
| lv_e_kursfaktor2 | TYPE BUDAT, " | |||
| lv_i_t001 | TYPE T001, " | |||
| lv_c_kurs3 | TYPE KURS3, " | |||
| lv_e_kursfaktor3 | TYPE KURS3, " | |||
| lv_i_x001 | TYPE X001, " | |||
| lv_e_kursteiler | TYPE X001, " | |||
| lv_e_kursteiler2 | TYPE X001, " | |||
| lv_e_kursteiler3 | TYPE X001. " |
|   CALL FUNCTION 'FI_PAYMENT_CURRENCY_RATE_INIT' " |
| EXPORTING | ||
| I_WAERS | = lv_i_waers | |
| I_PDATE | = lv_i_pdate | |
| I_T001 | = lv_i_t001 | |
| I_X001 | = lv_i_x001 | |
| IMPORTING | ||
| E_KURSFAKTOR | = lv_e_kursfaktor | |
| E_KURSFAKTOR2 | = lv_e_kursfaktor2 | |
| E_KURSFAKTOR3 | = lv_e_kursfaktor3 | |
| E_KURSTEILER | = lv_e_kursteiler | |
| E_KURSTEILER2 | = lv_e_kursteiler2 | |
| E_KURSTEILER3 | = lv_e_kursteiler3 | |
| CHANGING | ||
| C_KURSF | = lv_c_kursf | |
| C_KURS2 | = lv_c_kurs2 | |
| C_KURS3 | = lv_c_kurs3 | |
| . " FI_PAYMENT_CURRENCY_RATE_INIT | ||
ABAP code using 7.40 inline data declarations to call FM FI_PAYMENT_CURRENCY_RATE_INIT
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