SAP CO_RU_AFRP0_PROC Function Module for NOTRANSL: CIM-Rückmeldung: Verarbeitung von Vormerkungen
CO_RU_AFRP0_PROC is a standard co ru afrp0 proc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: CIM-Rückmeldung: Verarbeitung von Vormerkungen 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 co ru afrp0 proc FM, simply by entering the name CO_RU_AFRP0_PROC into the relevant SAP transaction such as SE37 or SE38.
Function Group: CORS
Program Name: SAPLCORS
Main Program: SAPLCORS
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function CO_RU_AFRP0_PROC 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 'CO_RU_AFRP0_PROC'"NOTRANSL: CIM-Rückmeldung: Verarbeitung von Vormerkungen.
IMPORTING
E_RFCSI_INFO = "RFC System Information (See RFC_SYSTEM_INFO Function Module)
TABLES
AFRP0_KEY_TAB = "Key fields for planned confirmation table
E_CONF_LOG = "Return information for APIs
EXCEPTIONS
PARAMETER_FAILURE = 1
EXPORTING Parameters details for CO_RU_AFRP0_PROC
E_RFCSI_INFO - RFC System Information (See RFC_SYSTEM_INFO Function Module)
Data type: RFCSIOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CO_RU_AFRP0_PROC
AFRP0_KEY_TAB - Key fields for planned confirmation table
Data type: CONF_AFRP0_KEYOptional: No
Call by Reference: No ( called with pass by value option)
E_CONF_LOG - Return information for APIs
Data type: BAPI_CORU_RETURNOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
PARAMETER_FAILURE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CO_RU_AFRP0_PROC 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_rfcsi_info | TYPE RFCSI, " | |||
| lt_afrp0_key_tab | TYPE STANDARD TABLE OF CONF_AFRP0_KEY, " | |||
| lv_parameter_failure | TYPE CONF_AFRP0_KEY, " | |||
| lt_e_conf_log | TYPE STANDARD TABLE OF BAPI_CORU_RETURN. " |
|   CALL FUNCTION 'CO_RU_AFRP0_PROC' "NOTRANSL: CIM-Rückmeldung: Verarbeitung von Vormerkungen |
| IMPORTING | ||
| E_RFCSI_INFO | = lv_e_rfcsi_info | |
| TABLES | ||
| AFRP0_KEY_TAB | = lt_afrp0_key_tab | |
| E_CONF_LOG | = lt_e_conf_log | |
| EXCEPTIONS | ||
| PARAMETER_FAILURE = 1 | ||
| . " CO_RU_AFRP0_PROC | ||
ABAP code using 7.40 inline data declarations to call FM CO_RU_AFRP0_PROC
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