SAP SEO_METHOD_CALL_EDITOR Function Module for Editor für Methodenimplementierung aufrufen









SEO_METHOD_CALL_EDITOR is a standard seo method call editor SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Editor für Methodenimplementierung aufrufen 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 seo method call editor FM, simply by entering the name SEO_METHOD_CALL_EDITOR into the relevant SAP transaction such as SE37 or SE38.

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



Function SEO_METHOD_CALL_EDITOR 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 'SEO_METHOD_CALL_EDITOR'"Editor für Methodenimplementierung aufrufen
EXPORTING
MTDKEY = "
* EDIT = SEOX_FALSE "
* REDEFINE = SEOX_FALSE "
* SET_CURSOR = SEOX_FALSE "
* CURSOR_LINE = 1 "
* CURSOR_OFFSET = 0 "

IMPORTING
DUMMY = "

EXCEPTIONS
NOT_EXISTING = 1 MODEL_ONLY = 2 NO_ACCESS = 3
.



IMPORTING Parameters details for SEO_METHOD_CALL_EDITOR

MTDKEY -

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

EDIT -

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

REDEFINE -

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

SET_CURSOR -

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

CURSOR_LINE -

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

CURSOR_OFFSET -

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

EXPORTING Parameters details for SEO_METHOD_CALL_EDITOR

DUMMY -

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

EXCEPTIONS details

NOT_EXISTING -

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

MODEL_ONLY -

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

NO_ACCESS -

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

Copy and paste ABAP code example for SEO_METHOD_CALL_EDITOR 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_dummy  TYPE I, "   
lv_mtdkey  TYPE SEOCPDKEY, "   
lv_not_existing  TYPE SEOCPDKEY, "   
lv_edit  TYPE SEOX_BOOLEAN, "   SEOX_FALSE
lv_model_only  TYPE SEOX_BOOLEAN, "   
lv_redefine  TYPE SEOX_BOOLEAN, "   SEOX_FALSE
lv_no_access  TYPE SEOX_BOOLEAN, "   
lv_set_cursor  TYPE SEOX_BOOLEAN, "   SEOX_FALSE
lv_cursor_line  TYPE TOKEN_ROW, "   1
lv_cursor_offset  TYPE TOKEN_COL. "   0

  CALL FUNCTION 'SEO_METHOD_CALL_EDITOR'  "Editor für Methodenimplementierung aufrufen
    EXPORTING
         MTDKEY = lv_mtdkey
         EDIT = lv_edit
         REDEFINE = lv_redefine
         SET_CURSOR = lv_set_cursor
         CURSOR_LINE = lv_cursor_line
         CURSOR_OFFSET = lv_cursor_offset
    IMPORTING
         DUMMY = lv_dummy
    EXCEPTIONS
        NOT_EXISTING = 1
        MODEL_ONLY = 2
        NO_ACCESS = 3
. " SEO_METHOD_CALL_EDITOR




ABAP code using 7.40 inline data declarations to call FM SEO_METHOD_CALL_EDITOR

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.

 
 
 
DATA(ld_edit) = SEOX_FALSE.
 
 
DATA(ld_redefine) = SEOX_FALSE.
 
 
DATA(ld_set_cursor) = SEOX_FALSE.
 
DATA(ld_cursor_line) = 1.
 
 


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!