SAP EXIT_SAPLCORU_S_101 Function Module for Return Data from Customer-Defined Screen to SAPLCORU_S









EXIT_SAPLCORU_S_101 is a standard exit saplcoru s 101 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Return Data from Customer-Defined Screen to SAPLCORU_S 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 101 FM, simply by entering the name EXIT_SAPLCORU_S_101 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_101 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_101'"Return Data from Customer-Defined Screen to SAPLCORU_S
IMPORTING
ES_AFRUD = "Dialog Table for Order Confirmations
.



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

EXPORTING Parameters details for EXIT_SAPLCORU_S_101

ES_AFRUD - Dialog Table for Order Confirmations

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

Copy and paste ABAP code example for EXIT_SAPLCORU_S_101 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. "   

  CALL FUNCTION 'EXIT_SAPLCORU_S_101'  "Return Data from Customer-Defined Screen to SAPLCORU_S
    IMPORTING
         ES_AFRUD = lv_es_afrud
. " EXIT_SAPLCORU_S_101




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLCORU_S_101

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!