SAP SCSM_RS_OBJECT_ENTRY_CREATE Function Module for
SCSM_RS_OBJECT_ENTRY_CREATE is a standard scsm rs object entry create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 scsm rs object entry create FM, simply by entering the name SCSM_RS_OBJECT_ENTRY_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: SCSM_REPOSITORY_SET
Program Name: SAPLSCSM_REPOSITORY_SET
Main Program: SAPLSCSM_REPOSITORY_SET
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SCSM_RS_OBJECT_ENTRY_CREATE 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 'SCSM_RS_OBJECT_ENTRY_CREATE'".
EXPORTING
OBJECT_SCHEME = "Name of Schema or Semantic in System Repository
DOMINANT_SYSTEM = "System GUID for R/3 or other system
REPORTER = "System GUID for R/3 or other system
TIMESTAMP = "UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
CLASSDEFINITION = "Class Definition for CSMBK_MDATA_IN (CCMS SCR)
CLASSPROPERTIES = "Property Table for Function Group SCSMBK_MDATA_IN (CCMS SCR)
CLASSQUALIFIERS = "Input Table for CCMS System Repository Qualifiers
SAPKEYS = "
PROPQUALIFIERS = "Input Table for CCMS System Repository Qualifiers
CSM_MTE = "Alert: Global Monitoring Type Identifier
SCOPING_OBJECT_GUID = "System GUID for R/3 or other system
OBJECT_CLASS = "CCMS Class Names
SCOPING_OBJECT_ENTRY = "New Object Table for SCR from SAP Web AS 6.10
NAME' '_NAME = "Object name in CCMS Repository
NAME' '_ENTRY = "New Object Table for SCR from SAP Web AS 6.10
* OBJECT_KEY_ELEMENTS = "System Component Repository Properties and Values
* OBJECT_KEY_STRING = "Text Field: Length 250
* OBJECT_EXTENDED_KEY_STRING = "Structure for Extended Key Values for SCR Objects
OBJECT_SEMANTIC = "Name of Schema or Semantic in System Repository
OBJECT_STATUS = "Indicator for Meta Data in System Component Repository
OBJECT_SYSTEM = "System GUID for R/3 or other system
OBJECT_DESTINATION = "Logical Destination (Specified in Function Call)
IMPORTING
OBJECT_STATUS_RETURN = "Indicator for Meta Data in System Component Repository
OBJECT_ENTRY = "New Object Table for SCR from SAP Web AS 6.10
EXCEPTIONS
COULD_NOT_OBTAIN_NEW_GUID = 1 ERROR_FINDING_PARENT_OBJECT = 2 DATABASE_PROBLEM_INSERTING_OBJ = 3 EXTENDEDVAL_EXPORT_ERROR = 4 INTERNAL_ERROR = 5
IMPORTING Parameters details for SCSM_RS_OBJECT_ENTRY_CREATE
OBJECT_SCHEME - Name of Schema or Semantic in System Repository
Data type: CSMSMNTCOptional: No
Call by Reference: Yes
DOMINANT_SYSTEM - System GUID for R/3 or other system
Data type: CSMSYSGUIDOptional: No
Call by Reference: Yes
REPORTER - System GUID for R/3 or other system
Data type: CSMSYSGUIDOptional: No
Call by Reference: Yes
TIMESTAMP - UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
Data type: TIMESTAMPOptional: No
Call by Reference: Yes
CLASSDEFINITION - Class Definition for CSMBK_MDATA_IN (CCMS SCR)
Data type: CSM_CLASSOptional: No
Call by Reference: Yes
CLASSPROPERTIES - Property Table for Function Group SCSMBK_MDATA_IN (CCMS SCR)
Data type: CSM_TOKENTOptional: No
Call by Reference: Yes
CLASSQUALIFIERS - Input Table for CCMS System Repository Qualifiers
Data type: CSM_Q_INPTOptional: No
Call by Reference: Yes
SAPKEYS -
Data type: CSM_PRINHTOptional: No
Call by Reference: Yes
PROPQUALIFIERS - Input Table for CCMS System Repository Qualifiers
Data type: CSM_Q_INPTOptional: No
Call by Reference: Yes
CSM_MTE - Alert: Global Monitoring Type Identifier
Data type: ALGLOBTIDOptional: No
Call by Reference: Yes
SCOPING_OBJECT_GUID - System GUID for R/3 or other system
Data type: CSMSYSGUIDOptional: No
Call by Reference: Yes
OBJECT_CLASS - CCMS Class Names
Data type: CSMCLASSOptional: No
Call by Reference: Yes
SCOPING_OBJECT_ENTRY - New Object Table for SCR from SAP Web AS 6.10
Data type: CSMBK_OB2Optional: No
Call by Reference: Yes
NAMESPACE_NAME - Object name in CCMS Repository
Data type: CSMOBJNMOptional: No
Call by Reference: Yes
NAMESPACE_ENTRY - New Object Table for SCR from SAP Web AS 6.10
Data type: CSMBK_OB2Optional: No
Call by Reference: Yes
OBJECT_KEY_ELEMENTS - System Component Repository Properties and Values
Data type: CSM_PRPVALTOptional: Yes
Call by Reference: Yes
OBJECT_KEY_STRING - Text Field: Length 250
Data type: CSM_250Optional: Yes
Call by Reference: Yes
OBJECT_EXTENDED_KEY_STRING - Structure for Extended Key Values for SCR Objects
Data type: CSMEXTVALLOptional: Yes
Call by Reference: Yes
OBJECT_SEMANTIC - Name of Schema or Semantic in System Repository
Data type: CSMSMNTCOptional: No
Call by Reference: Yes
OBJECT_STATUS - Indicator for Meta Data in System Component Repository
Data type: CSMACTIVEOptional: No
Call by Reference: Yes
OBJECT_SYSTEM - System GUID for R/3 or other system
Data type: CSMSYSGUIDOptional: No
Call by Reference: Yes
OBJECT_DESTINATION - Logical Destination (Specified in Function Call)
Data type: RFCDESTOptional: No
Call by Reference: Yes
EXPORTING Parameters details for SCSM_RS_OBJECT_ENTRY_CREATE
OBJECT_STATUS_RETURN - Indicator for Meta Data in System Component Repository
Data type: CSMACTIVEOptional: No
Call by Reference: Yes
OBJECT_ENTRY - New Object Table for SCR from SAP Web AS 6.10
Data type: CSMBK_OB2Optional: No
Call by Reference: Yes
EXCEPTIONS details
COULD_NOT_OBTAIN_NEW_GUID -
Data type:Optional: No
Call by Reference: Yes
ERROR_FINDING_PARENT_OBJECT -
Data type:Optional: No
Call by Reference: Yes
DATABASE_PROBLEM_INSERTING_OBJ -
Data type:Optional: No
Call by Reference: Yes
EXTENDEDVAL_EXPORT_ERROR -
Data type:Optional: No
Call by Reference: Yes
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SCSM_RS_OBJECT_ENTRY_CREATE 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_object_scheme | TYPE CSMSMNTC, " | |||
| lv_object_status_return | TYPE CSMACTIVE, " | |||
| lv_could_not_obtain_new_guid | TYPE CSMACTIVE, " | |||
| lv_dominant_system | TYPE CSMSYSGUID, " | |||
| lv_reporter | TYPE CSMSYSGUID, " | |||
| lv_timestamp | TYPE TIMESTAMP, " | |||
| lv_classdefinition | TYPE CSM_CLASS, " | |||
| lv_classproperties | TYPE CSM_TOKENT, " | |||
| lv_classqualifiers | TYPE CSM_Q_INPT, " | |||
| lv_sapkeys | TYPE CSM_PRINHT, " | |||
| lv_propqualifiers | TYPE CSM_Q_INPT, " | |||
| lv_csm_mte | TYPE ALGLOBTID, " | |||
| lv_scoping_object_guid | TYPE CSMSYSGUID, " | |||
| lv_object_class | TYPE CSMCLASS, " | |||
| lv_object_entry | TYPE CSMBK_OB2, " | |||
| lv_error_finding_parent_object | TYPE CSMBK_OB2, " | |||
| lv_scoping_object_entry | TYPE CSMBK_OB2, " | |||
| lv_namespace_name | TYPE CSMOBJNM, " | |||
| lv_namespace_entry | TYPE CSMBK_OB2, " | |||
| lv_object_key_elements | TYPE CSM_PRPVALT, " | |||
| lv_database_problem_inserting_obj | TYPE CSM_PRPVALT, " | |||
| lv_object_key_string | TYPE CSM_250, " | |||
| lv_extendedval_export_error | TYPE CSM_250, " | |||
| lv_internal_error | TYPE CSM_250, " | |||
| lv_object_extended_key_string | TYPE CSMEXTVALL, " | |||
| lv_object_semantic | TYPE CSMSMNTC, " | |||
| lv_object_status | TYPE CSMACTIVE, " | |||
| lv_object_system | TYPE CSMSYSGUID, " | |||
| lv_object_destination | TYPE RFCDEST. " |
|   CALL FUNCTION 'SCSM_RS_OBJECT_ENTRY_CREATE' " |
| EXPORTING | ||
| OBJECT_SCHEME | = lv_object_scheme | |
| DOMINANT_SYSTEM | = lv_dominant_system | |
| REPORTER | = lv_reporter | |
| TIMESTAMP | = lv_timestamp | |
| CLASSDEFINITION | = lv_classdefinition | |
| CLASSPROPERTIES | = lv_classproperties | |
| CLASSQUALIFIERS | = lv_classqualifiers | |
| SAPKEYS | = lv_sapkeys | |
| PROPQUALIFIERS | = lv_propqualifiers | |
| CSM_MTE | = lv_csm_mte | |
| SCOPING_OBJECT_GUID | = lv_scoping_object_guid | |
| OBJECT_CLASS | = lv_object_class | |
| SCOPING_OBJECT_ENTRY | = lv_scoping_object_entry | |
| NAMESPACE_NAME | = lv_namespace_name | |
| NAMESPACE_ENTRY | = lv_namespace_entry | |
| OBJECT_KEY_ELEMENTS | = lv_object_key_elements | |
| OBJECT_KEY_STRING | = lv_object_key_string | |
| OBJECT_EXTENDED_KEY_STRING | = lv_object_extended_key_string | |
| OBJECT_SEMANTIC | = lv_object_semantic | |
| OBJECT_STATUS | = lv_object_status | |
| OBJECT_SYSTEM | = lv_object_system | |
| OBJECT_DESTINATION | = lv_object_destination | |
| IMPORTING | ||
| OBJECT_STATUS_RETURN | = lv_object_status_return | |
| OBJECT_ENTRY | = lv_object_entry | |
| EXCEPTIONS | ||
| COULD_NOT_OBTAIN_NEW_GUID = 1 | ||
| ERROR_FINDING_PARENT_OBJECT = 2 | ||
| DATABASE_PROBLEM_INSERTING_OBJ = 3 | ||
| EXTENDEDVAL_EXPORT_ERROR = 4 | ||
| INTERNAL_ERROR = 5 | ||
| . " SCSM_RS_OBJECT_ENTRY_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM SCSM_RS_OBJECT_ENTRY_CREATE
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.Search for further information about these or an SAP related objects