SAP MCS_CSTRUCTURE_CHECK Function Module for NOTRANSL: Pruefen Kommunikationsstruktur auf LIS-Belange
MCS_CSTRUCTURE_CHECK is a standard mcs cstructure check 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: Pruefen Kommunikationsstruktur auf LIS-Belange 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 mcs cstructure check FM, simply by entering the name MCS_CSTRUCTURE_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: MCSE
Program Name: SAPLMCSE
Main Program: SAPLMCSE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MCS_CSTRUCTURE_CHECK 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 'MCS_CSTRUCTURE_CHECK'"NOTRANSL: Pruefen Kommunikationsstruktur auf LIS-Belange.
EXPORTING
COMSTRU_NAME = "Name of communication structure
* RV_PROT = ' ' "Log the errors, do not execute raise.
* FLG_KEYFIELD = ' ' "
IMPORTING
E_RC = "Ind.: Errors occur when RV_PROT is active
E_KEYFIELD = "
EXCEPTIONS
COMSTRU_NOT_FOUND = 1 DATE_NOT_FOUND = 2 COMSTRU_NOT_ACTIVE = 3
IMPORTING Parameters details for MCS_CSTRUCTURE_CHECK
COMSTRU_NAME - Name of communication structure
Data type: DMCSE-CSTRUOptional: No
Call by Reference: No ( called with pass by value option)
RV_PROT - Log the errors, do not execute raise.
Data type: XFLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
FLG_KEYFIELD -
Data type: XFLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for MCS_CSTRUCTURE_CHECK
E_RC - Ind.: Errors occur when RV_PROT is active
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
E_KEYFIELD -
Data type: DFIES-FIELDNAMEOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
COMSTRU_NOT_FOUND - Communication structure not in data dictionary
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DATE_NOT_FOUND - No date field in communication structure
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
COMSTRU_NOT_ACTIVE - Communication structure is not active in DD
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for MCS_CSTRUCTURE_CHECK 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_e_rc | TYPE SY-SUBRC, " | |||
| lv_comstru_name | TYPE DMCSE-CSTRU, " | |||
| lv_comstru_not_found | TYPE DMCSE, " | |||
| lv_rv_prot | TYPE XFLAG, " SPACE | |||
| lv_e_keyfield | TYPE DFIES-FIELDNAME, " | |||
| lv_date_not_found | TYPE DFIES, " | |||
| lv_flg_keyfield | TYPE XFLAG, " SPACE | |||
| lv_comstru_not_active | TYPE XFLAG. " |
|   CALL FUNCTION 'MCS_CSTRUCTURE_CHECK' "NOTRANSL: Pruefen Kommunikationsstruktur auf LIS-Belange |
| EXPORTING | ||
| COMSTRU_NAME | = lv_comstru_name | |
| RV_PROT | = lv_rv_prot | |
| FLG_KEYFIELD | = lv_flg_keyfield | |
| IMPORTING | ||
| E_RC | = lv_e_rc | |
| E_KEYFIELD | = lv_e_keyfield | |
| EXCEPTIONS | ||
| COMSTRU_NOT_FOUND = 1 | ||
| DATE_NOT_FOUND = 2 | ||
| COMSTRU_NOT_ACTIVE = 3 | ||
| . " MCS_CSTRUCTURE_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM MCS_CSTRUCTURE_CHECK
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 SUBRC FROM SY INTO @DATA(ld_e_rc). | ||||
| "SELECT single CSTRU FROM DMCSE INTO @DATA(ld_comstru_name). | ||||
| DATA(ld_rv_prot) | = ' '. | |||
| "SELECT single FIELDNAME FROM DFIES INTO @DATA(ld_e_keyfield). | ||||
| DATA(ld_flg_keyfield) | = ' '. | |||
Search for further information about these or an SAP related objects