SAP RSRV_CCMS_MSC_CREATE_ATTACH Function Module for Module to add nodes under attributes









RSRV_CCMS_MSC_CREATE_ATTACH is a standard rsrv ccms msc create attach SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Module to add nodes under attributes 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 rsrv ccms msc create attach FM, simply by entering the name RSRV_CCMS_MSC_CREATE_ATTACH into the relevant SAP transaction such as SE37 or SE38.

Function Group: RSRV_CCMS
Program Name: SAPLRSRV_CCMS
Main Program: SAPLRSRV_CCMS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RSRV_CCMS_MSC_CREATE_ATTACH 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 'RSRV_CCMS_MSC_CREATE_ATTACH'"Module to add nodes under attributes
EXPORTING
I_S_TID = "Alert: global monitoring type identifier
I_MTE_NAME = "Alert: Short Name of Monitoring Type
* I_ALCOLOR = "Alert: alert value (1 = green, 2 = yellow, ....)
* I_ALSEVERITY = "Alert: severity (alerts, monitoring type custom..)
I_TEST_RESULT = "Alert: Short Name of Monitoring Type

IMPORTING
E_S_TID = "Alert: global monitoring type identifier

EXCEPTIONS
FAILED = 1
.



IMPORTING Parameters details for RSRV_CCMS_MSC_CREATE_ATTACH

I_S_TID - Alert: global monitoring type identifier

Data type: ALGLOBTID
Optional: No
Call by Reference: Yes

I_MTE_NAME - Alert: Short Name of Monitoring Type

Data type: ALMTCREATE-NAME
Optional: No
Call by Reference: Yes

I_ALCOLOR - Alert: alert value (1 = green, 2 = yellow, ....)

Data type: ALVALUE
Optional: Yes
Call by Reference: Yes

I_ALSEVERITY - Alert: severity (alerts, monitoring type custom..)

Data type: ALSEVERITY
Optional: Yes
Call by Reference: Yes

I_TEST_RESULT - Alert: Short Name of Monitoring Type

Data type: SYMSGV
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for RSRV_CCMS_MSC_CREATE_ATTACH

E_S_TID - Alert: global monitoring type identifier

Data type: ALGLOBTID
Optional: No
Call by Reference: Yes

EXCEPTIONS details

FAILED -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for RSRV_CCMS_MSC_CREATE_ATTACH 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_failed  TYPE STRING, "   
lv_e_s_tid  TYPE ALGLOBTID, "   
lv_i_s_tid  TYPE ALGLOBTID, "   
lv_i_mte_name  TYPE ALMTCREATE-NAME, "   
lv_i_alcolor  TYPE ALVALUE, "   
lv_i_alseverity  TYPE ALSEVERITY, "   
lv_i_test_result  TYPE SYMSGV. "   

  CALL FUNCTION 'RSRV_CCMS_MSC_CREATE_ATTACH'  "Module to add nodes under attributes
    EXPORTING
         I_S_TID = lv_i_s_tid
         I_MTE_NAME = lv_i_mte_name
         I_ALCOLOR = lv_i_alcolor
         I_ALSEVERITY = lv_i_alseverity
         I_TEST_RESULT = lv_i_test_result
    IMPORTING
         E_S_TID = lv_e_s_tid
    EXCEPTIONS
        FAILED = 1
. " RSRV_CCMS_MSC_CREATE_ATTACH




ABAP code using 7.40 inline data declarations to call FM RSRV_CCMS_MSC_CREATE_ATTACH

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 NAME FROM ALMTCREATE INTO @DATA(ld_i_mte_name).
 
 
 
 


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!