SAP FB_ICRC_RCOMP_RFC_DEST_CHECK Function Module for Check for companies at RFC destination









FB_ICRC_RCOMP_RFC_DEST_CHECK is a standard fb icrc rcomp rfc dest check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check for companies at RFC destination processing and below is the pattern details for this FM, 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 fb icrc rcomp rfc dest check FM, simply by entering the name FB_ICRC_RCOMP_RFC_DEST_CHECK into the relevant SAP transaction such as SE37 or SE38.

Function Group: FB_ICRC_SERVICES
Program Name: SAPLFB_ICRC_SERVICES
Main Program: SAPLFB_ICRC_SERVICES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function FB_ICRC_RCOMP_RFC_DEST_CHECK 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 'FB_ICRC_RCOMP_RFC_DEST_CHECK'"Check for companies at RFC destination
EXPORTING
* ED_RPROC = "Reconciliation Process
* ES_STRUCT = "Information about DDIC structure
* ET_STRUCT = "Information about DDIC structure
* ES_STRUCT2 = "Information about DDIC structure
* ET_STRUCT2 = "Information about DDIC structure

TABLES
CT_RCOMP = "Company exists

EXCEPTIONS
EXC_DDIC_UPDATE_FAILURE = 1
.



IMPORTING Parameters details for FB_ICRC_RCOMP_RFC_DEST_CHECK

ED_RPROC - Reconciliation Process

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

ES_STRUCT - Information about DDIC structure

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

ET_STRUCT - Information about DDIC structure

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

ES_STRUCT2 - Information about DDIC structure

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

ET_STRUCT2 - Information about DDIC structure

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

TABLES Parameters details for FB_ICRC_RCOMP_RFC_DEST_CHECK

CT_RCOMP - Company exists

Data type: FBICRC_T_RCOMP_CHECK
Optional: No
Call by Reference: Yes

EXCEPTIONS details

EXC_DDIC_UPDATE_FAILURE -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FB_ICRC_RCOMP_RFC_DEST_CHECK 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_ct_rcomp  TYPE STANDARD TABLE OF FBICRC_T_RCOMP_CHECK, "   
lv_ed_rproc  TYPE FB_RC_RPROC, "   
lv_exc_ddic_update_failure  TYPE FB_RC_RPROC, "   
lv_es_struct  TYPE DD02V, "   
lv_et_struct  TYPE FBICRC_T_DD03P, "   
lv_es_struct2  TYPE DD02V, "   
lv_et_struct2  TYPE FBICRC_T_DD03P. "   

  CALL FUNCTION 'FB_ICRC_RCOMP_RFC_DEST_CHECK'  "Check for companies at RFC destination
    EXPORTING
         ED_RPROC = lv_ed_rproc
         ES_STRUCT = lv_es_struct
         ET_STRUCT = lv_et_struct
         ES_STRUCT2 = lv_es_struct2
         ET_STRUCT2 = lv_et_struct2
    TABLES
         CT_RCOMP = lt_ct_rcomp
    EXCEPTIONS
        EXC_DDIC_UPDATE_FAILURE = 1
. " FB_ICRC_RCOMP_RFC_DEST_CHECK




ABAP code using 7.40 inline data declarations to call FM FB_ICRC_RCOMP_RFC_DEST_CHECK

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.

 
 
 
 
 
 
 


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!