SAP CRS_REFX_ARCOBJ_EXTRACT Function Module for REFX Object Initial Load
CRS_REFX_ARCOBJ_EXTRACT is a standard crs refx arcobj extract SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for REFX Object Initial Load 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 crs refx arcobj extract FM, simply by entering the name CRS_REFX_ARCOBJ_EXTRACT into the relevant SAP transaction such as SE37 or SE38.
Function Group: COM_REFX_ARCOBJ_EXTRACT
Program Name: SAPLCOM_REFX_ARCOBJ_EXTRACT
Main Program: SAPLCOM_REFX_ARCOBJ_EXTRACT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CRS_REFX_ARCOBJ_EXTRACT 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 'CRS_REFX_ARCOBJ_EXTRACT'"REFX Object Initial Load.
EXPORTING
I_BAPICRMDH1 = "Bapi-Struktur Download Kopfdaten
I_OBJ_NAME = "Objektname für Download
IMPORTING
E_STATUS = "Verarbeitungsstatus Extraktor
TABLES
TI_TABLES = "Download Tabellen per Download Objekt
* TI_RELATION = "Beziehung zwischen Download Tabellen
* TI_RANGE = "Dynamische Selektionsparameter
* TE_BAPIIDLIST = "Schlüsselwerten
IMPORTING Parameters details for CRS_REFX_ARCOBJ_EXTRACT
I_BAPICRMDH1 - Bapi-Struktur Download Kopfdaten
Data type: BAPICRMDH1Optional: No
Call by Reference: Yes
I_OBJ_NAME - Objektname für Download
Data type: BAPICRMOBJ-OBJ_NAMEOptional: No
Call by Reference: Yes
EXPORTING Parameters details for CRS_REFX_ARCOBJ_EXTRACT
E_STATUS - Verarbeitungsstatus Extraktor
Data type: BAPICRMEXP-STATUS_EXTOptional: No
Call by Reference: Yes
TABLES Parameters details for CRS_REFX_ARCOBJ_EXTRACT
TI_TABLES - Download Tabellen per Download Objekt
Data type: CRMTABLESOptional: No
Call by Reference: No ( called with pass by value option)
TI_RELATION - Beziehung zwischen Download Tabellen
Data type: CRMRELAOptional: Yes
Call by Reference: No ( called with pass by value option)
TI_RANGE - Dynamische Selektionsparameter
Data type: CRMSELSTROptional: Yes
Call by Reference: No ( called with pass by value option)
TE_BAPIIDLIST - Schlüsselwerten
Data type: BAPIIDLISTOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CRS_REFX_ARCOBJ_EXTRACT 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_e_status | TYPE BAPICRMEXP-STATUS_EXT, " | |||
| lt_ti_tables | TYPE STANDARD TABLE OF CRMTABLES, " | |||
| lv_i_bapicrmdh1 | TYPE BAPICRMDH1, " | |||
| lv_i_obj_name | TYPE BAPICRMOBJ-OBJ_NAME, " | |||
| lt_ti_relation | TYPE STANDARD TABLE OF CRMRELA, " | |||
| lt_ti_range | TYPE STANDARD TABLE OF CRMSELSTR, " | |||
| lt_te_bapiidlist | TYPE STANDARD TABLE OF BAPIIDLIST. " |
|   CALL FUNCTION 'CRS_REFX_ARCOBJ_EXTRACT' "REFX Object Initial Load |
| EXPORTING | ||
| I_BAPICRMDH1 | = lv_i_bapicrmdh1 | |
| I_OBJ_NAME | = lv_i_obj_name | |
| IMPORTING | ||
| E_STATUS | = lv_e_status | |
| TABLES | ||
| TI_TABLES | = lt_ti_tables | |
| TI_RELATION | = lt_ti_relation | |
| TI_RANGE | = lt_ti_range | |
| TE_BAPIIDLIST | = lt_te_bapiidlist | |
| . " CRS_REFX_ARCOBJ_EXTRACT | ||
ABAP code using 7.40 inline data declarations to call FM CRS_REFX_ARCOBJ_EXTRACT
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 STATUS_EXT FROM BAPICRMEXP INTO @DATA(ld_e_status). | ||||
| "SELECT single OBJ_NAME FROM BAPICRMOBJ INTO @DATA(ld_i_obj_name). | ||||
Search for further information about these or an SAP related objects