SAP EXIT_SAPLSEU0_001 Function Module for Exit Menu Painter (Invisible Call)









EXIT_SAPLSEU0_001 is a standard exit saplseu0 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 Exit Menu Painter (Invisible Call) 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 saplseu0 001 FM, simply by entering the name EXIT_SAPLSEU0_001 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XSEU
Program Name: SAPLXSEU
Main Program:
Appliation area: S
Release date: 09-Oct-1995
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPLSEU0_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_SAPLSEU0_001'"Exit Menu Painter (Invisible Call)
EXPORTING
* OBJECT = "Object name
PROGRAM = "Name of enclosing unit
OPERATION = "Processing Type

EXCEPTIONS
CANCELLED = 1
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
RS_CUA_ABAR_ADD Create Menu Bar
RS_CUA_ABAR_CHANGE Change the Menu Bars
RS_CUA_ABAR_DISPLAY
RS_CUA_ADD
RS_CUA_CHANGE Graphical User Interface: Change a Status
RS_CUA_CHECK
RS_CUA_COPY
RS_CUA_COPY_ALL
RS_CUA_COPY_STATUS Copy Status
RS_CUA_DELETE
RS_CUA_DELETE_ALL
RS_CUA_DISPLAY
RS_CUA_FUNL_ADD
RS_CUA_FUNL_CHANGE Change Function Texts
RS_CUA_FUNL_DISPLAY
RS_CUA_FUNL_REFERENCE
RS_CUA_GENERATE
RS_CUA_GENERATE_ALL
RS_CUA_INTERMEDIATE_VERSION
RS_CUA_MENU_ADD
RS_CUA_MENU_CHANGE Changes to Menu List
RS_CUA_MENU_DISPLAY Display the Menu List
RS_CUA_MENU_REFERENCE
RS_CUA_MOD_FUNCTIONS
RS_CUA_MOD_GENERATE
RS_CUA_OBJECTS
RS_CUA_ORIGINAL_DISPLAY Display an Original Version
RS_CUA_PFKL_ADD
RS_CUA_PFKL_CHANGE Change Function Key Settings
RS_CUA_PFKL_DISPLAY
RS_CUA_PFKL_REFERENCE
RS_CUA_PRINT
RS_CUA_RENAME
RS_CUA_RESET
RS_CUA_SAPMENU_LIST
RS_CUA_SEARCH Global Search in GUIs
RS_CUA_SEARCH_SCREEN Global Search in GUIs
RS_CUA_SIMULATE
RS_CUA_SINGLE_ABAR_CHANGE Change a Menu Bar
RS_CUA_SINGLE_ABAR_DISPLAY Change a Menu Bar
RS_CUA_SINGLE_MENU_CHANGE Change a menu
RS_CUA_SINGLE_MENU_DISPLAY Change a menu
RS_CUA_SINGLE_PFK_CHANGE Change A Function Key Setting
RS_CUA_SINGLE_PFK_DISPLAY Change A Function Key Setting
RS_CUA_SINGLE_TITLE_ADD
RS_CUA_SINGLE_TITLE_CHANGE
RS_CUA_SINGLE_TITLE_COPY Copy Status
RS_CUA_SINGLE_TITLE_DELETE
RS_CUA_SINGLE_TITLE_DISPLAY
RS_CUA_SINGLE_TITLE_RENAME Copy Status
RS_CUA_STATEXT_ADD
RS_CUA_STATEXT_CHANGE Change status short texts
RS_CUA_STATEXT_DISPLAY
RS_CUA_TITLE_ADD
RS_CUA_TITLE_CHANGE
RS_CUA_TITLE_DISPLAY
RS_CUA_TRANSLATION
RS_CUA_VERSION
RS_CUA_VERSION_DISPLAY
RS_CUA_VERSION_EXPORT

IMPORTING Parameters details for EXIT_SAPLSEU0_001

OBJECT - Object name

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

PROGRAM - Name of enclosing unit

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

OPERATION - Processing Type

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

EXCEPTIONS details

CANCELLED -

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

Copy and paste ABAP code example for EXIT_SAPLSEU0_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_object  TYPE RSEU1-STATUS, "   
lv_cancelled  TYPE RSEU1, "   
lv_program  TYPE TRDIR-NAME, "   
lv_operation  TYPE C. "   

  CALL FUNCTION 'EXIT_SAPLSEU0_001'  "Exit Menu Painter (Invisible Call)
    EXPORTING
         OBJECT = lv_object
         PROGRAM = lv_program
         OPERATION = lv_operation
    EXCEPTIONS
        CANCELLED = 1
. " EXIT_SAPLSEU0_001




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

"SELECT single STATUS FROM RSEU1 INTO @DATA(ld_object).
 
 
"SELECT single NAME FROM TRDIR INTO @DATA(ld_program).
 
 


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!