SAP SALR_SYS_GROUP_GET_SYSTEMS Function Module for









SALR_SYS_GROUP_GET_SYSTEMS is a standard salr sys group get systems 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 salr sys group get systems FM, simply by entering the name SALR_SYS_GROUP_GET_SYSTEMS into the relevant SAP transaction such as SE37 or SE38.

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



Function SALR_SYS_GROUP_GET_SYSTEMS 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 'SALR_SYS_GROUP_GET_SYSTEMS'"
EXPORTING
* GROUP_NAME = "
* GROUP_GUID = "
* NAME' ' = CSM_DEFAULT_DOMAIN "
* RETURN_ONLY_VALID = CSM_YES "

TABLES
* MEMBER_SYSTEMS = "Fact Table for CCMS System Repository
* MEMBER_SYSTEMS_SID = "CCMS monitoring architecture: SYSID only

EXCEPTIONS
GROUP_NOT_FOUND_IN_REPOSITORY = 1 GROUP_HAS_NO_MEMBERS = 2 NEITHER_GUID_NOR_NAME_GIVEN = 3 BOTH_GUID_AND_NAME_GIVEN = 4 NOT_AUTHORIZED = 5 INTERNAL_ERROR = 6 NAMESPACE_NOT_FOUND = 7
.



IMPORTING Parameters details for SALR_SYS_GROUP_GET_SYSTEMS

GROUP_NAME -

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

GROUP_GUID -

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

NAMESPACE -

Data type: CSMOBJNM
Default: CSM_DEFAULT_DOMAIN
Optional: Yes
Call by Reference: Yes

RETURN_ONLY_VALID -

Data type: CSMACTIVE
Default: CSM_YES
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for SALR_SYS_GROUP_GET_SYSTEMS

MEMBER_SYSTEMS - Fact Table for CCMS System Repository

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

MEMBER_SYSTEMS_SID - CCMS monitoring architecture: SYSID only

Data type: ALSYSID
Optional: 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

NEITHER_GUID_NOR_NAME_GIVEN -

Data type:
Optional: No
Call by Reference: Yes

BOTH_GUID_AND_NAME_GIVEN -

Data type:
Optional: No
Call by Reference: Yes

NOT_AUTHORIZED - No Authorization

Data type:
Optional: No
Call by Reference: Yes

INTERNAL_ERROR -

Data type:
Optional: No
Call by Reference: Yes

NAMESPACE_NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for SALR_SYS_GROUP_GET_SYSTEMS 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_group_name  TYPE CSMOBJNM, "   
lt_member_systems  TYPE STANDARD TABLE OF CSMBK, "   
lv_group_not_found_in_repository  TYPE CSMBK, "   
lv_group_guid  TYPE CSMSYSGUID, "   
lt_member_systems_sid  TYPE STANDARD TABLE OF ALSYSID, "   
lv_group_has_no_members  TYPE ALSYSID, "   
lv_namespace  TYPE CSMOBJNM, "   CSM_DEFAULT_DOMAIN
lv_neither_guid_nor_name_given  TYPE CSMOBJNM, "   
lv_return_only_valid  TYPE CSMACTIVE, "   CSM_YES
lv_both_guid_and_name_given  TYPE CSMACTIVE, "   
lv_not_authorized  TYPE CSMACTIVE, "   
lv_internal_error  TYPE CSMACTIVE, "   
lv_namespace_not_found  TYPE CSMACTIVE. "   

  CALL FUNCTION 'SALR_SYS_GROUP_GET_SYSTEMS'  "
    EXPORTING
         GROUP_NAME = lv_group_name
         GROUP_GUID = lv_group_guid
         NAMESPACE = lv_namespace
         RETURN_ONLY_VALID = lv_return_only_valid
    TABLES
         MEMBER_SYSTEMS = lt_member_systems
         MEMBER_SYSTEMS_SID = lt_member_systems_sid
    EXCEPTIONS
        GROUP_NOT_FOUND_IN_REPOSITORY = 1
        GROUP_HAS_NO_MEMBERS = 2
        NEITHER_GUID_NOR_NAME_GIVEN = 3
        BOTH_GUID_AND_NAME_GIVEN = 4
        NOT_AUTHORIZED = 5
        INTERNAL_ERROR = 6
        NAMESPACE_NOT_FOUND = 7
. " SALR_SYS_GROUP_GET_SYSTEMS




ABAP code using 7.40 inline data declarations to call FM SALR_SYS_GROUP_GET_SYSTEMS

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_namespace) = CSM_DEFAULT_DOMAIN.
 
 
DATA(ld_return_only_valid) = CSM_YES.
 
 
 
 
 


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!