SAP MCS_CSTRUCTURE_UPDATE Function Module for NOTRANSL: Kommunikationsstruktur ändern (Dictionary)









MCS_CSTRUCTURE_UPDATE is a standard mcs cstructure update 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: Kommunikationsstruktur ändern (Dictionary) 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 update FM, simply by entering the name MCS_CSTRUCTURE_UPDATE 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_UPDATE 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_UPDATE'"NOTRANSL: Kommunikationsstruktur ändern (Dictionary)
EXPORTING
COMSTRU_NAME = "Name of communication structure
* RV_PROT = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* FLG_KEYFIELD = ' ' "

IMPORTING
E_RC = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_KEYFIELD = "

TABLES
I_MCSLISEH = "
I_MCSLISEF = "

EXCEPTIONS
COMSTRU_NOT_FOUND = 1 DATE_NOT_FOUND = 2 COMSTRU_NOT_ACTIVE = 3
.



IMPORTING Parameters details for MCS_CSTRUCTURE_UPDATE

COMSTRU_NAME - Name of communication structure

Data type: DMCSE-CSTRU
Optional: No
Call by Reference: No ( called with pass by value option)

RV_PROT - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

FLG_KEYFIELD -

Data type:
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for MCS_CSTRUCTURE_UPDATE

E_RC - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: SY-SUBRC
Optional: No
Call by Reference: No ( called with pass by value option)

E_KEYFIELD -

Data type: DFIES-FIELDNAME
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for MCS_CSTRUCTURE_UPDATE

I_MCSLISEH -

Data type: MCSLISEH
Optional: No
Call by Reference: No ( called with pass by value option)

I_MCSLISEF -

Data type: MCSLISEF
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

COMSTRU_NOT_FOUND - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

DATE_NOT_FOUND - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

COMSTRU_NOT_ACTIVE - 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 MCS_CSTRUCTURE_UPDATE 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, "   
lt_i_mcsliseh  TYPE STANDARD TABLE OF MCSLISEH, "   
lv_comstru_name  TYPE DMCSE-CSTRU, "   
lv_comstru_not_found  TYPE DMCSE, "   
lv_rv_prot  TYPE DMCSE, "   ' '
lv_e_keyfield  TYPE DFIES-FIELDNAME, "   
lt_i_mcslisef  TYPE STANDARD TABLE OF MCSLISEF, "   
lv_date_not_found  TYPE MCSLISEF, "   
lv_flg_keyfield  TYPE MCSLISEF, "   ' '
lv_comstru_not_active  TYPE MCSLISEF. "   

  CALL FUNCTION 'MCS_CSTRUCTURE_UPDATE'  "NOTRANSL: Kommunikationsstruktur ändern (Dictionary)
    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
    TABLES
         I_MCSLISEH = lt_i_mcsliseh
         I_MCSLISEF = lt_i_mcslisef
    EXCEPTIONS
        COMSTRU_NOT_FOUND = 1
        DATE_NOT_FOUND = 2
        COMSTRU_NOT_ACTIVE = 3
. " MCS_CSTRUCTURE_UPDATE




ABAP code using 7.40 inline data declarations to call FM MCS_CSTRUCTURE_UPDATE

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!