SAP EXIT_SAPLCORU_001 Function Module for Order Confirmation: Deactivation of Functions









EXIT_SAPLCORU_001 is a standard exit saplcoru 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Order Confirmation: Deactivation of Functions 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 exit saplcoru 001 FM, simply by entering the name EXIT_SAPLCORU_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLCORU_001 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 'EXIT_SAPLCORU_001'"Order Confirmation: Deactivation of Functions
EXPORTING
* I_CAUFVD = "Order Header
* I_AFVGD = "Order Operation

TABLES
T_CUAFC = "Table of Functions to be Hidden
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
CO_RU_CHECK_RUECK_IN_AFRP0
CO_RU_CHECK_RUECK_IN_COL_TAB
CO_RU_CLEAN_DIALOGTAB
CO_RU_COLTAB_ON_SUBSCREEN_POST
CO_RU_CONFIRMATION
CO_RU_CONFIRMATION_HVOM
CO_RU_CONFIRMATION_HVOM_NEW
CO_RU_CREATE_COL_TAB_FROM_OPER
CO_RU_CUA_DET_AND_SET
CO_RU_DET_SIZE_OF_DIALOGTAB
CO_RU_FILL_VAR_LINE
CO_RU_GET_ACTUAL_COL_TAB_ENTRY
CO_RU_GET_AFRU
CO_RU_GET_COL_TAB
CO_RU_GET_DEL_COL_TAB
CO_RU_INIT
CO_RU_MAINTAIN_COLLECTIVE_CONF
CO_RU_ORDER_CONFIRMATION NOTRANSL: Confirmation of CIM order
CO_RU_SET_OK_CODE
CO_RU_SET_SELECTION_PARAM
CO_RU_TCORU_EDIT
CO_RU_TCORU_GET
CO_RU_UPD_COLTAB_WITH_SRV_DATA
SHLP_EXIT_CATEGORY Search help exit for category
SHLP_EXIT_CONFTYPE Search help exit for conftype

IMPORTING Parameters details for EXIT_SAPLCORU_001

I_CAUFVD - Order Header

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

I_AFVGD - Order Operation

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

TABLES Parameters details for EXIT_SAPLCORU_001

T_CUAFC - Table of Functions to be Hidden

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

Copy and paste ABAP code example for EXIT_SAPLCORU_001 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_t_cuafc  TYPE STANDARD TABLE OF CUAFCODE, "   
lv_i_caufvd  TYPE CAUFVD, "   
lv_i_afvgd  TYPE AFVGD. "   

  CALL FUNCTION 'EXIT_SAPLCORU_001'  "Order Confirmation: Deactivation of Functions
    EXPORTING
         I_CAUFVD = lv_i_caufvd
         I_AFVGD = lv_i_afvgd
    TABLES
         T_CUAFC = lt_t_cuafc
. " EXIT_SAPLCORU_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLCORU_001

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!