SAP MM_ARRANG_CHECK_TKOMV_MWSKZ Function Module for NOTRANSL: Belegkonditionen auf Absprachen mit bestimm. Zeitpunkt Fortschre
MM_ARRANG_CHECK_TKOMV_MWSKZ is a standard mm arrang check tkomv mwskz 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: Belegkonditionen auf Absprachen mit bestimm. Zeitpunkt Fortschre 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 arrang check tkomv mwskz FM, simply by entering the name MM_ARRANG_CHECK_TKOMV_MWSKZ into the relevant SAP transaction such as SE37 or SE38.
Function Group: WNU0
Program Name: SAPLWNU0
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MM_ARRANG_CHECK_TKOMV_MWSKZ 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_ARRANG_CHECK_TKOMV_MWSKZ'"NOTRANSL: Belegkonditionen auf Absprachen mit bestimm. Zeitpunkt Fortschre.
EXPORTING
* I_CHECK_FOR_BE = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_CHECK_FOR_WE = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_CHECK_FOR_RE = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
I_KNUMV = "DE-EN-LANG-SWITCH-NO-TRANSLATION
I_EKPO = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_CHECK_FOR_KRUEK = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION
I_BUKRS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_T001 = "Company Code
TABLES
T_KOMV = "Document Conditions
EXCEPTIONS
CHECK_POSITIV = 1
IMPORTING Parameters details for MM_ARRANG_CHECK_TKOMV_MWSKZ
I_CHECK_FOR_BE - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_CHECK_FOR_WE - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_CHECK_FOR_RE - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_KNUMV - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: EKKO-KNUMVOptional: No
Call by Reference: No ( called with pass by value option)
I_EKPO - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: EKPOOptional: No
Call by Reference: No ( called with pass by value option)
I_CHECK_FOR_KRUEK - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_BUKRS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: EKKO-BUKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_T001 - Company Code
Data type: T001Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for MM_ARRANG_CHECK_TKOMV_MWSKZ
T_KOMV - Document Conditions
Data type: KOMVOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CHECK_POSITIV - 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_ARRANG_CHECK_TKOMV_MWSKZ 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: | ||||
| lt_t_komv | TYPE STANDARD TABLE OF KOMV, " | |||
| lv_check_positiv | TYPE KOMV, " | |||
| lv_i_check_for_be | TYPE C, " 'X' | |||
| lv_i_check_for_we | TYPE C, " 'X' | |||
| lv_i_check_for_re | TYPE C, " SPACE | |||
| lv_i_knumv | TYPE EKKO-KNUMV, " | |||
| lv_i_ekpo | TYPE EKPO, " | |||
| lv_i_check_for_kruek | TYPE C, " 'X' | |||
| lv_i_bukrs | TYPE EKKO-BUKRS, " | |||
| lv_i_t001 | TYPE T001. " |
|   CALL FUNCTION 'MM_ARRANG_CHECK_TKOMV_MWSKZ' "NOTRANSL: Belegkonditionen auf Absprachen mit bestimm. Zeitpunkt Fortschre |
| EXPORTING | ||
| I_CHECK_FOR_BE | = lv_i_check_for_be | |
| I_CHECK_FOR_WE | = lv_i_check_for_we | |
| I_CHECK_FOR_RE | = lv_i_check_for_re | |
| I_KNUMV | = lv_i_knumv | |
| I_EKPO | = lv_i_ekpo | |
| I_CHECK_FOR_KRUEK | = lv_i_check_for_kruek | |
| I_BUKRS | = lv_i_bukrs | |
| I_T001 | = lv_i_t001 | |
| TABLES | ||
| T_KOMV | = lt_t_komv | |
| EXCEPTIONS | ||
| CHECK_POSITIV = 1 | ||
| . " MM_ARRANG_CHECK_TKOMV_MWSKZ | ||
ABAP code using 7.40 inline data declarations to call FM MM_ARRANG_CHECK_TKOMV_MWSKZ
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.| DATA(ld_i_check_for_be) | = 'X'. | |||
| DATA(ld_i_check_for_we) | = 'X'. | |||
| DATA(ld_i_check_for_re) | = ' '. | |||
| "SELECT single KNUMV FROM EKKO INTO @DATA(ld_i_knumv). | ||||
| DATA(ld_i_check_for_kruek) | = 'X'. | |||
| "SELECT single BUKRS FROM EKKO INTO @DATA(ld_i_bukrs). | ||||
Search for further information about these or an SAP related objects