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

Function SCSM_SYSTEM_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_SYSTEM_LIST'".
EXPORTING
* SYS_GROUP = '' "Object name in CCMS Repository
* INCLUDE_LOCAL_SYS = ' ' "Alert: SALC: Flag (X) if only local input for function call
* SUPPRESS_REFILL = ' ' "Alert: SALC: Flag (X) if only local input for function call
TABLES
* SYSTEMS = "CCMS Central System Management: Remote Managed Systems
* MGD_SYSTEMS_IN_LOCAL_MC = "CCMS monitoring architecture: SYSID only
* ALL_SYSTEMS_SIDS = "CCMS monitoring architecture: SYSID only
EXCEPTIONS
GROUP_NOT_FOUND_IN_REPOSITORY = 1 GROUP_HAS_NO_MEMBERS = 2 CSM_BK_INTERNAL_ERROR = 3
IMPORTING Parameters details for SCSM_SYSTEM_LIST
SYS_GROUP - Object name in CCMS Repository
Data type: CSMOBJNMDefault: '
Optional: Yes
Call by Reference: No ( called with pass by value option)
INCLUDE_LOCAL_SYS - Alert: SALC: Flag (X) if only local input for function call
Data type: ALPARAMS-ONLY_LOCALDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
SUPPRESS_REFILL - Alert: SALC: Flag (X) if only local input for function call
Data type: ALPARAMS-ONLY_LOCALDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SCSM_SYSTEM_LIST
SYSTEMS - CCMS Central System Management: Remote Managed Systems
Data type: ALSYSTEMSOptional: Yes
Call by Reference: Yes
MGD_SYSTEMS_IN_LOCAL_MC - CCMS monitoring architecture: SYSID only
Data type: ALSYSIDOptional: Yes
Call by Reference: Yes
ALL_SYSTEMS_SIDS - CCMS monitoring architecture: SYSID only
Data type: ALSYSIDOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
GROUP_NOT_FOUND_IN_REPOSITORY -
Data type:Optional: No
Call by Reference: Yes
GROUP_HAS_NO_MEMBERS -
Data type:Optional: No
Call by Reference: Yes
CSM_BK_INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SCSM_SYSTEM_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: | ||||
| lt_systems | TYPE STANDARD TABLE OF ALSYSTEMS, " | |||
| lv_sys_group | TYPE CSMOBJNM, " ' | |||
| lv_group_not_found_in_repository | TYPE CSMOBJNM, " | |||
| lv_include_local_sys | TYPE ALPARAMS-ONLY_LOCAL, " ' ' | |||
| lv_group_has_no_members | TYPE ALPARAMS, " | |||
| lt_mgd_systems_in_local_mc | TYPE STANDARD TABLE OF ALSYSID, " | |||
| lv_suppress_refill | TYPE ALPARAMS-ONLY_LOCAL, " ' ' | |||
| lt_all_systems_sids | TYPE STANDARD TABLE OF ALSYSID, " | |||
| lv_csm_bk_internal_error | TYPE ALSYSID. " |
|   CALL FUNCTION 'SCSM_SYSTEM_LIST' " |
| EXPORTING | ||
| SYS_GROUP | = lv_sys_group | |
| INCLUDE_LOCAL_SYS | = lv_include_local_sys | |
| SUPPRESS_REFILL | = lv_suppress_refill | |
| TABLES | ||
| SYSTEMS | = lt_systems | |
| MGD_SYSTEMS_IN_LOCAL_MC | = lt_mgd_systems_in_local_mc | |
| ALL_SYSTEMS_SIDS | = lt_all_systems_sids | |
| EXCEPTIONS | ||
| GROUP_NOT_FOUND_IN_REPOSITORY = 1 | ||
| GROUP_HAS_NO_MEMBERS = 2 | ||
| CSM_BK_INTERNAL_ERROR = 3 | ||
| . " SCSM_SYSTEM_LIST | ||
ABAP code using 7.40 inline data declarations to call FM SCSM_SYSTEM_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.| DATA(ld_sys_group) | = ' | |||
| "SELECT single ONLY_LOCAL FROM ALPARAMS INTO @DATA(ld_include_local_sys). | ||||
| DATA(ld_include_local_sys) | = ' '. | |||
| "SELECT single ONLY_LOCAL FROM ALPARAMS INTO @DATA(ld_suppress_refill). | ||||
| DATA(ld_suppress_refill) | = ' '. | |||
Search for further information about these or an SAP related objects