SAP SCSM_DSR_COMPONENTS_LIST Function Module for
SCSM_DSR_COMPONENTS_LIST is a standard scsm dsr components list 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 dsr components list FM, simply by entering the name SCSM_DSR_COMPONENTS_LIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: SCSM_CONSUMERS
Program Name: SAPLSCSM_CONSUMERS
Main Program: SAPLSCSM_CONSUMERS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SCSM_DSR_COMPONENTS_LIST 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_DSR_COMPONENTS_LIST'".
EXPORTING
* RESTRICT_TO_MON_SYSTEM = "Name of SAP R/3 System
* RESTRICT_TO_MON_AGENT = "Object name in CCMS Repository
* RESTRICT_TO_COMPONENT_TYPE = "CCMS Class Names
TABLES
DSR_COMPONENTS = "DSR Components in System Component Repository
EXCEPTIONS
NO_DATA_FOUND = 1 NOT_AUTHORIZED = 2 MONITORING_SYSTEM_NOT_FOUND = 3 MONITORING_AGENT_NOT_FOUND = 4 INTERNAL_ERROR = 5
IMPORTING Parameters details for SCSM_DSR_COMPONENTS_LIST
RESTRICT_TO_MON_SYSTEM - Name of SAP R/3 System
Data type: SY-SYSIDOptional: Yes
Call by Reference: Yes
RESTRICT_TO_MON_AGENT - Object name in CCMS Repository
Data type: CSMOBJNMOptional: Yes
Call by Reference: Yes
RESTRICT_TO_COMPONENT_TYPE - CCMS Class Names
Data type: CSMCLASSOptional: Yes
Call by Reference: Yes
TABLES Parameters details for SCSM_DSR_COMPONENTS_LIST
DSR_COMPONENTS - DSR Components in System Component Repository
Data type: CSMDSRCOMPOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_DATA_FOUND -
Data type:Optional: No
Call by Reference: Yes
NOT_AUTHORIZED -
Data type:Optional: No
Call by Reference: Yes
MONITORING_SYSTEM_NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
MONITORING_AGENT_NOT_FOUND -
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_DSR_COMPONENTS_LIST 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_no_data_found | TYPE STRING, " | |||
| lt_dsr_components | TYPE STANDARD TABLE OF CSMDSRCOMP, " | |||
| lv_restrict_to_mon_system | TYPE SY-SYSID, " | |||
| lv_not_authorized | TYPE SY, " | |||
| lv_restrict_to_mon_agent | TYPE CSMOBJNM, " | |||
| lv_restrict_to_component_type | TYPE CSMCLASS, " | |||
| lv_monitoring_system_not_found | TYPE CSMCLASS, " | |||
| lv_monitoring_agent_not_found | TYPE CSMCLASS, " | |||
| lv_internal_error | TYPE CSMCLASS. " |
|   CALL FUNCTION 'SCSM_DSR_COMPONENTS_LIST' " |
| EXPORTING | ||
| RESTRICT_TO_MON_SYSTEM | = lv_restrict_to_mon_system | |
| RESTRICT_TO_MON_AGENT | = lv_restrict_to_mon_agent | |
| RESTRICT_TO_COMPONENT_TYPE | = lv_restrict_to_component_type | |
| TABLES | ||
| DSR_COMPONENTS | = lt_dsr_components | |
| EXCEPTIONS | ||
| NO_DATA_FOUND = 1 | ||
| NOT_AUTHORIZED = 2 | ||
| MONITORING_SYSTEM_NOT_FOUND = 3 | ||
| MONITORING_AGENT_NOT_FOUND = 4 | ||
| INTERNAL_ERROR = 5 | ||
| . " SCSM_DSR_COMPONENTS_LIST | ||
ABAP code using 7.40 inline data declarations to call FM SCSM_DSR_COMPONENTS_LIST
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 SYSID FROM SY INTO @DATA(ld_restrict_to_mon_system). | ||||
Search for further information about these or an SAP related objects