SAP EXIT_SAPLCORU_S_001 Function Module for QM: Create Notif. from Confirmation of Production Order









EXIT_SAPLCORU_S_001 is a standard exit saplcoru s 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 QM: Create Notif. from Confirmation of Production Order 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 001 FM, simply by entering the name EXIT_SAPLCORU_S_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLCORU_S_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_S_001'"QM: Create Notif. from Confirmation of Production Order
EXPORTING
I_RIQS5 = "PM/SM/QM Notifications: I/O Data for Creating Notification

IMPORTING
E_RIQS5 = "PM/SM/QM Notifications: I/O Data for Creating Notification
.



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_001

I_RIQS5 - PM/SM/QM Notifications: I/O Data for Creating Notification

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

EXPORTING Parameters details for EXIT_SAPLCORU_S_001

E_RIQS5 - PM/SM/QM Notifications: I/O Data for Creating Notification

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

Copy and paste ABAP code example for EXIT_SAPLCORU_S_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:
lv_e_riqs5  TYPE RIQS5, "   
lv_i_riqs5  TYPE RIQS5. "   

  CALL FUNCTION 'EXIT_SAPLCORU_S_001'  "QM: Create Notif. from Confirmation of Production Order
    EXPORTING
         I_RIQS5 = lv_i_riqs5
    IMPORTING
         E_RIQS5 = lv_e_riqs5
. " EXIT_SAPLCORU_S_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLCORU_S_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!