SAP MM_ARRANGEMENT_CHECK_WAERS Function Module for NOTRANSL: Währungen in einer Absprache auf Euro-Umstellung prüfen
MM_ARRANGEMENT_CHECK_WAERS is a standard mm arrangement check waers SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Währungen in einer Absprache auf Euro-Umstellung prüfen 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 mm arrangement check waers FM, simply by entering the name MM_ARRANGEMENT_CHECK_WAERS into the relevant SAP transaction such as SE37 or SE38.
Function Group: WNE1
Program Name: SAPLWNE1
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MM_ARRANGEMENT_CHECK_WAERS 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 'MM_ARRANGEMENT_CHECK_WAERS'"NOTRANSL: Währungen in einer Absprache auf Euro-Umstellung prüfen.
EXPORTING
I_ARRANGEMENT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_NEW_ARRANGEMENT_WAERS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING
E_CONTAINS_EURO_WAERS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_CONTAINS_EURO_WAERS_CR = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_CONTAINS_DIFF_KONA_WAERS_CR = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_CONTAINS_DIFF_EURO_WAERS_CR = "DE-EN-LANG-SWITCH-NO-TRANSLATION
TABLES
* T_VARIABLE_KEY = "Variable Key
* T_CONDITION_RECORD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* T_ERROR_MESSAGES = "List of Messages
EXCEPTIONS
CONDITION_RECORD_NOT_FOUND = 1
IMPORTING Parameters details for MM_ARRANGEMENT_CHECK_WAERS
I_ARRANGEMENT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: KONAOptional: No
Call by Reference: No ( called with pass by value option)
I_NEW_ARRANGEMENT_WAERS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: KONA-WAERSOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for MM_ARRANGEMENT_CHECK_WAERS
E_CONTAINS_EURO_WAERS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
E_CONTAINS_EURO_WAERS_CR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
E_CONTAINS_DIFF_KONA_WAERS_CR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
E_CONTAINS_DIFF_EURO_WAERS_CR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for MM_ARRANGEMENT_CHECK_WAERS
T_VARIABLE_KEY - Variable Key
Data type: VAKEOptional: Yes
Call by Reference: No ( called with pass by value option)
T_CONDITION_RECORD - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: KONPOptional: Yes
Call by Reference: No ( called with pass by value option)
T_ERROR_MESSAGES - List of Messages
Data type: ARRANG_ERROptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CONDITION_RECORD_NOT_FOUND - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for MM_ARRANGEMENT_CHECK_WAERS 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_arrangement | TYPE KONA, " | |||
| lt_t_variable_key | TYPE STANDARD TABLE OF VAKE, " | |||
| lv_e_contains_euro_waers | TYPE C, " | |||
| lv_condition_record_not_found | TYPE C, " | |||
| lt_t_condition_record | TYPE STANDARD TABLE OF KONP, " | |||
| lv_i_new_arrangement_waers | TYPE KONA-WAERS, " | |||
| lv_e_contains_euro_waers_cr | TYPE C, " | |||
| lt_t_error_messages | TYPE STANDARD TABLE OF ARRANG_ERR, " | |||
| lv_e_contains_diff_kona_waers_cr | TYPE C, " | |||
| lv_e_contains_diff_euro_waers_cr | TYPE C. " |
|   CALL FUNCTION 'MM_ARRANGEMENT_CHECK_WAERS' "NOTRANSL: Währungen in einer Absprache auf Euro-Umstellung prüfen |
| EXPORTING | ||
| I_ARRANGEMENT | = lv_i_arrangement | |
| I_NEW_ARRANGEMENT_WAERS | = lv_i_new_arrangement_waers | |
| IMPORTING | ||
| E_CONTAINS_EURO_WAERS | = lv_e_contains_euro_waers | |
| E_CONTAINS_EURO_WAERS_CR | = lv_e_contains_euro_waers_cr | |
| E_CONTAINS_DIFF_KONA_WAERS_CR | = lv_e_contains_diff_kona_waers_cr | |
| E_CONTAINS_DIFF_EURO_WAERS_CR | = lv_e_contains_diff_euro_waers_cr | |
| TABLES | ||
| T_VARIABLE_KEY | = lt_t_variable_key | |
| T_CONDITION_RECORD | = lt_t_condition_record | |
| T_ERROR_MESSAGES | = lt_t_error_messages | |
| EXCEPTIONS | ||
| CONDITION_RECORD_NOT_FOUND = 1 | ||
| . " MM_ARRANGEMENT_CHECK_WAERS | ||
ABAP code using 7.40 inline data declarations to call FM MM_ARRANGEMENT_CHECK_WAERS
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 WAERS FROM KONA INTO @DATA(ld_i_new_arrangement_waers). | ||||
Search for further information about these or an SAP related objects