SAP SCSM_PING_SYSTEMS Function Module for









SCSM_PING_SYSTEMS is a standard scsm ping 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 scsm ping systems FM, simply by entering the name SCSM_PING_SYSTEMS into the relevant SAP transaction such as SE37 or SE38.

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



Function SCSM_PING_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 'SCSM_PING_SYSTEMS'"
EXPORTING
* SYSID = "Name of SAP R/3 System
* SYSID_DESTINAT = "Destination table for Remote Function Call
* GROUP_NAME = "Object name in CCMS Repository
* SUPPRESS_REFILL = ' ' "Alert: SALC: Flag (X) if only local input for function call

EXCEPTIONS
SYSTEM_UNKNOWN = 1 SYSTEM_NOT_REACHABLE = 2 GROUP_NOT_FOUND_IN_REPOSITORY = 3 GROUP_HAS_NO_MEMBERS = 4 NEITHER_SYSID_NOR_GROUP_GIVEN = 5 BOTH_SYSID_AND_GROUP_GIVEN = 6 INTERNAL_ERROR = 7
.



IMPORTING Parameters details for SCSM_PING_SYSTEMS

SYSID - Name of SAP R/3 System

Data type: SY-SYSID
Optional: Yes
Call by Reference: Yes

SYSID_DESTINAT - Destination table for Remote Function Call

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

GROUP_NAME - Object name in CCMS Repository

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

SUPPRESS_REFILL - Alert: SALC: Flag (X) if only local input for function call

Data type: ALPARAMS-ONLY_LOCAL
Default: SPACE
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

SYSTEM_UNKNOWN -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

SYSTEM_NOT_REACHABLE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

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_SYSID_NOR_GROUP_GIVEN -

Data type:
Optional: No
Call by Reference: Yes

BOTH_SYSID_AND_GROUP_GIVEN -

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_PING_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_sysid  TYPE SY-SYSID, "   
lv_system_unknown  TYPE SY, "   
lv_sysid_destinat  TYPE RFCDEST, "   
lv_system_not_reachable  TYPE RFCDEST, "   
lv_group_name  TYPE CSMOBJNM, "   
lv_group_not_found_in_repository  TYPE CSMOBJNM, "   
lv_suppress_refill  TYPE ALPARAMS-ONLY_LOCAL, "   SPACE
lv_group_has_no_members  TYPE ALPARAMS, "   
lv_neither_sysid_nor_group_given  TYPE ALPARAMS, "   
lv_both_sysid_and_group_given  TYPE ALPARAMS, "   
lv_internal_error  TYPE ALPARAMS. "   

  CALL FUNCTION 'SCSM_PING_SYSTEMS'  "
    EXPORTING
         SYSID = lv_sysid
         SYSID_DESTINAT = lv_sysid_destinat
         GROUP_NAME = lv_group_name
         SUPPRESS_REFILL = lv_suppress_refill
    EXCEPTIONS
        SYSTEM_UNKNOWN = 1
        SYSTEM_NOT_REACHABLE = 2
        GROUP_NOT_FOUND_IN_REPOSITORY = 3
        GROUP_HAS_NO_MEMBERS = 4
        NEITHER_SYSID_NOR_GROUP_GIVEN = 5
        BOTH_SYSID_AND_GROUP_GIVEN = 6
        INTERNAL_ERROR = 7
. " SCSM_PING_SYSTEMS




ABAP code using 7.40 inline data declarations to call FM SCSM_PING_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.

"SELECT single SYSID FROM SY INTO @DATA(ld_sysid).
 
 
 
 
 
 
"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



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!