SAP SCMS_RFC_INFO_SEND Function Module for









SCMS_RFC_INFO_SEND is a standard scms rfc info send 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 scms rfc info send FM, simply by entering the name SCMS_RFC_INFO_SEND into the relevant SAP transaction such as SE37 or SE38.

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



Function SCMS_RFC_INFO_SEND 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 'SCMS_RFC_INFO_SEND'"
EXPORTING
ARC_ID = "
* DESTINATION = SY-SYSID "
* LU = SY-HOST "
* TP = "
* GWHOST = "
* GWSERV = "
* CLIENT = SY-MANDT "
* P_CREP_RFC = "KPRO CMS: Content Repositories (RFC)

EXCEPTIONS
ERROR_KERNEL = 1 ERROR_ARCHIV = 2 ERROR_CONFIG = 3
.



IMPORTING Parameters details for SCMS_RFC_INFO_SEND

ARC_ID -

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

DESTINATION -

Data type: SY-SYSID
Default: SY-SYSID
Optional: Yes
Call by Reference: No ( called with pass by value option)

LU -

Data type: SY-HOST
Default: SY-HOST
Optional: Yes
Call by Reference: No ( called with pass by value option)

TP -

Data type: TOAVALUE-TP
Optional: Yes
Call by Reference: No ( called with pass by value option)

GWHOST -

Data type: SY-HOST
Optional: Yes
Call by Reference: No ( called with pass by value option)

GWSERV -

Data type: TOAVALUE-GWSERVER
Optional: Yes
Call by Reference: No ( called with pass by value option)

CLIENT -

Data type: SY-MANDT
Default: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)

P_CREP_RFC - KPRO CMS: Content Repositories (RFC)

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

EXCEPTIONS details

ERROR_KERNEL -

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

ERROR_ARCHIV -

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

ERROR_CONFIG -

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

Copy and paste ABAP code example for SCMS_RFC_INFO_SEND 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_arc_id  TYPE C, "   
lv_error_kernel  TYPE C, "   
lv_destination  TYPE SY-SYSID, "   SY-SYSID
lv_error_archiv  TYPE SY, "   
lv_lu  TYPE SY-HOST, "   SY-HOST
lv_error_config  TYPE SY, "   
lv_tp  TYPE TOAVALUE-TP, "   
lv_gwhost  TYPE SY-HOST, "   
lv_gwserv  TYPE TOAVALUE-GWSERVER, "   
lv_client  TYPE SY-MANDT, "   SY-MANDT
lv_p_crep_rfc  TYPE CREP_RFC. "   

  CALL FUNCTION 'SCMS_RFC_INFO_SEND'  "
    EXPORTING
         ARC_ID = lv_arc_id
         DESTINATION = lv_destination
         LU = lv_lu
         TP = lv_tp
         GWHOST = lv_gwhost
         GWSERV = lv_gwserv
         CLIENT = lv_client
         P_CREP_RFC = lv_p_crep_rfc
    EXCEPTIONS
        ERROR_KERNEL = 1
        ERROR_ARCHIV = 2
        ERROR_CONFIG = 3
. " SCMS_RFC_INFO_SEND




ABAP code using 7.40 inline data declarations to call FM SCMS_RFC_INFO_SEND

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_destination).
DATA(ld_destination) = SY-SYSID.
 
 
"SELECT single HOST FROM SY INTO @DATA(ld_lu).
DATA(ld_lu) = SY-HOST.
 
 
"SELECT single TP FROM TOAVALUE INTO @DATA(ld_tp).
 
"SELECT single HOST FROM SY INTO @DATA(ld_gwhost).
 
"SELECT single GWSERVER FROM TOAVALUE INTO @DATA(ld_gwserv).
 
"SELECT single MANDT FROM SY INTO @DATA(ld_client).
DATA(ld_client) = SY-MANDT.
 
 


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!