SAP FKK_AMOUNT_CHECK_FOR_EURO Function Module for
FKK_AMOUNT_CHECK_FOR_EURO is a standard fkk amount check for euro 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 fkk amount check for euro FM, simply by entering the name FKK_AMOUNT_CHECK_FOR_EURO into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKB3
Program Name: SAPLFKB3
Main Program: SAPLFKB3
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_AMOUNT_CHECK_FOR_EURO 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 'FKK_AMOUNT_CHECK_FOR_EURO'".
EXPORTING
I_ISOHW = "
I_ISOH2 = "
I_ISOH3 = "
I_HWAER = "
I_HWAE2 = "
I_HWAE3 = "
I_BETRH = "Amount in Local Currency
I_BETR2 = "
I_BETR3 = "
IMPORTING Parameters details for FKK_AMOUNT_CHECK_FOR_EURO
I_ISOHW -
Data type: FKK001-ISOHWOptional: No
Call by Reference: No ( called with pass by value option)
I_ISOH2 -
Data type: FKK001-ISOH2Optional: No
Call by Reference: No ( called with pass by value option)
I_ISOH3 -
Data type: FKK001-ISOH3Optional: No
Call by Reference: No ( called with pass by value option)
I_HWAER -
Data type: T001-WAERSOptional: No
Call by Reference: No ( called with pass by value option)
I_HWAE2 -
Data type: X001-HWAE2Optional: No
Call by Reference: No ( called with pass by value option)
I_HWAE3 -
Data type: X001-HWAE3Optional: No
Call by Reference: No ( called with pass by value option)
I_BETRH - Amount in Local Currency
Data type: FKKOP-BETRHOptional: No
Call by Reference: No ( called with pass by value option)
I_BETR2 -
Data type: FKKOP-BETR2Optional: No
Call by Reference: No ( called with pass by value option)
I_BETR3 -
Data type: FKKOP-BETR3Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FKK_AMOUNT_CHECK_FOR_EURO 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_isohw | TYPE FKK001-ISOHW, " | |||
| lv_i_isoh2 | TYPE FKK001-ISOH2, " | |||
| lv_i_isoh3 | TYPE FKK001-ISOH3, " | |||
| lv_i_hwaer | TYPE T001-WAERS, " | |||
| lv_i_hwae2 | TYPE X001-HWAE2, " | |||
| lv_i_hwae3 | TYPE X001-HWAE3, " | |||
| lv_i_betrh | TYPE FKKOP-BETRH, " | |||
| lv_i_betr2 | TYPE FKKOP-BETR2, " | |||
| lv_i_betr3 | TYPE FKKOP-BETR3. " |
|   CALL FUNCTION 'FKK_AMOUNT_CHECK_FOR_EURO' " |
| EXPORTING | ||
| I_ISOHW | = lv_i_isohw | |
| I_ISOH2 | = lv_i_isoh2 | |
| I_ISOH3 | = lv_i_isoh3 | |
| I_HWAER | = lv_i_hwaer | |
| I_HWAE2 | = lv_i_hwae2 | |
| I_HWAE3 | = lv_i_hwae3 | |
| I_BETRH | = lv_i_betrh | |
| I_BETR2 | = lv_i_betr2 | |
| I_BETR3 | = lv_i_betr3 | |
| . " FKK_AMOUNT_CHECK_FOR_EURO | ||
ABAP code using 7.40 inline data declarations to call FM FKK_AMOUNT_CHECK_FOR_EURO
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 ISOHW FROM FKK001 INTO @DATA(ld_i_isohw). | ||||
| "SELECT single ISOH2 FROM FKK001 INTO @DATA(ld_i_isoh2). | ||||
| "SELECT single ISOH3 FROM FKK001 INTO @DATA(ld_i_isoh3). | ||||
| "SELECT single WAERS FROM T001 INTO @DATA(ld_i_hwaer). | ||||
| "SELECT single HWAE2 FROM X001 INTO @DATA(ld_i_hwae2). | ||||
| "SELECT single HWAE3 FROM X001 INTO @DATA(ld_i_hwae3). | ||||
| "SELECT single BETRH FROM FKKOP INTO @DATA(ld_i_betrh). | ||||
| "SELECT single BETR2 FROM FKKOP INTO @DATA(ld_i_betr2). | ||||
| "SELECT single BETR3 FROM FKKOP INTO @DATA(ld_i_betr3). | ||||
Search for further information about these or an SAP related objects