SAP CO_RU_PROCESS_CUSTFUNC_CHECK1 Function Module for NOTRANSL: Customer-Exit der Rückmeldung zur Prüfung der Istdaten mit Änder









CO_RU_PROCESS_CUSTFUNC_CHECK1 is a standard co ru process custfunc check1 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: Customer-Exit der Rückmeldung zur Prüfung der Istdaten mit Änder 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 process custfunc check1 FM, simply by entering the name CO_RU_PROCESS_CUSTFUNC_CHECK1 into the relevant SAP transaction such as SE37 or SE38.

Function Group: CORF
Program Name: SAPLCORF
Main Program: SAPLCORF
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CO_RU_PROCESS_CUSTFUNC_CHECK1 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_PROCESS_CUSTFUNC_CHECK1'"NOTRANSL: Customer-Exit der Rückmeldung zur Prüfung der Istdaten mit Änder
EXPORTING
IS_CAUFVD = "Order Header
IS_AFVGD = "Operation
IS_AFRUD = "Confirmation

IMPORTING
ES_AFRUD = "

EXCEPTIONS
CONF_DATA_FALSE = 1
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLCORF_001 PM/SM Order Confirmation: Customer-Specific Setting of Default Values
EXIT_SAPLCORF_002 PM/SM Order Confirmation: Customer-Specific Entry Check Without Change
EXIT_SAPLCORF_003 PM/SM Order Conf.: Customer-Specific Checks Acc. to Operation Selection
EXIT_SAPLCORF_004 PM/SM Order Confirmation: Customer-Specific Entry Checks with Change
EXIT_SAPLCORF_005 PM/SM Order Conf.: Customer-Spec. Enhancements when Saving (No Dialog!!!)
EXIT_SAPLCORF_006 PS Confirmation: Customer-Specific Setting of Default Values
EXIT_SAPLCORF_007 PS Confirmation: Customer-Specific Input Check Without Change
EXIT_SAPLCORF_008 PS Confirmation: Customer-Specific Check After Operation Selection
EXIT_SAPLCORF_009 PS Confirmation: Customer-Specific Input Check With Change
EXIT_SAPLCORF_010 PS Confirmation: Customer-Specific Enhancements when Saving (No Dialog!!!)
EXIT_SAPLCORF_101 PP Order Confirmation: Customer-Specific Setting of Default Values
EXIT_SAPLCORF_102 PP Order Confirmation: Customer-Specific Input Check Without Change
EXIT_SAPLCORF_103 PP Order Confirmation: Customer-Specific Checks after Operation Selection
EXIT_SAPLCORF_104 PP Order Confirmation: Customer-Specific Input Check With Change
EXIT_SAPLCORF_105 PP Order Conf.: Customer-Specific Enhancements when Saving (No Dialog!!!)
EXIT_SAPLCORF_106 PP Order Conf.: Actual Data Transfer for Milestone Confirmation
EXIT_SAPLCORF_401 Process Order Conf.: Customer-Specific Setting of Default Values
EXIT_SAPLCORF_402 Process Order Confirmation: Customer-Specific Input Check Without Change
EXIT_SAPLCORF_403 Process Order Conf.: Customer-Specific Checks after Operation Selection
EXIT_SAPLCORF_404 Process Order Confirmation: Customer-Specific Input Checks With Change
EXIT_SAPLCORF_405 Process Ord. Conf.: Cust.-Specific Enhancements when Saving (No Dialog!!!)
EXIT_SAPLCORF_406 Process Order Conf.: Actual Data Transfer for Milestone Confirmation

IMPORTING Parameters details for CO_RU_PROCESS_CUSTFUNC_CHECK1

IS_CAUFVD - Order Header

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

IS_AFVGD - Operation

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

IS_AFRUD - Confirmation

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

EXPORTING Parameters details for CO_RU_PROCESS_CUSTFUNC_CHECK1

ES_AFRUD -

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

EXCEPTIONS details

CONF_DATA_FALSE -

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

Copy and paste ABAP code example for CO_RU_PROCESS_CUSTFUNC_CHECK1 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_es_afrud  TYPE AFRUD, "   
lv_is_caufvd  TYPE CAUFVD, "   
lv_conf_data_false  TYPE CAUFVD, "   
lv_is_afvgd  TYPE AFVGD, "   
lv_is_afrud  TYPE AFRUD. "   

  CALL FUNCTION 'CO_RU_PROCESS_CUSTFUNC_CHECK1'  "NOTRANSL: Customer-Exit der Rückmeldung zur Prüfung der Istdaten mit Änder
    EXPORTING
         IS_CAUFVD = lv_is_caufvd
         IS_AFVGD = lv_is_afvgd
         IS_AFRUD = lv_is_afrud
    IMPORTING
         ES_AFRUD = lv_es_afrud
    EXCEPTIONS
        CONF_DATA_FALSE = 1
. " CO_RU_PROCESS_CUSTFUNC_CHECK1




ABAP code using 7.40 inline data declarations to call FM CO_RU_PROCESS_CUSTFUNC_CHECK1

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!