SAP EXIT_SAPLCORU_S_100 Function Module for Transfer Data from SAPLCORU_S to Customer-Defined Screen









EXIT_SAPLCORU_S_100 is a standard exit saplcoru s 100 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Transfer Data from SAPLCORU_S to Customer-Defined Screen 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 s 100 FM, simply by entering the name EXIT_SAPLCORU_S_100 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XCOF
Program Name: SAPLXCOF
Main Program:
Appliation area:
Release date: 01-Jan-1970
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPLCORU_S_100 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_S_100'"Transfer Data from SAPLCORU_S to Customer-Defined Screen
EXPORTING
IS_AFRUD = "Dialog Table for Order Confirmations
IS_CAUFVD = "Dialog Structure for Order Headers and Items
IS_AFVGD = "Order: Dialog Table for Table AFVG (Order Operation)
IS_RCR01 = "View of Work Center from Task Lists
.



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_S_100

IS_AFRUD - Dialog Table for Order Confirmations

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

IS_CAUFVD - Dialog Structure for Order Headers and Items

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

IS_AFVGD - Order: Dialog Table for Table AFVG (Order Operation)

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

IS_RCR01 - View of Work Center from Task Lists

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

Copy and paste ABAP code example for EXIT_SAPLCORU_S_100 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_is_afrud  TYPE AFRUD, "   
lv_is_caufvd  TYPE CAUFVD, "   
lv_is_afvgd  TYPE AFVGD, "   
lv_is_rcr01  TYPE RCR01. "   

  CALL FUNCTION 'EXIT_SAPLCORU_S_100'  "Transfer Data from SAPLCORU_S to Customer-Defined Screen
    EXPORTING
         IS_AFRUD = lv_is_afrud
         IS_CAUFVD = lv_is_caufvd
         IS_AFVGD = lv_is_afvgd
         IS_RCR01 = lv_is_rcr01
. " EXIT_SAPLCORU_S_100




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLCORU_S_100

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!