SAP SEO_METHOD_CREATE_F_DATA Function Module for Create Method in the Background









SEO_METHOD_CREATE_F_DATA is a standard seo method create f data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create Method in the Background 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 create f data FM, simply by entering the name SEO_METHOD_CREATE_F_DATA into the relevant SAP transaction such as SE37 or SE38.

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



Function SEO_METHOD_CREATE_F_DATA 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_CREATE_F_DATA'"Create Method in the Background
EXPORTING
* SAVE = SEOX_TRUE "
* SUPPRESS_LOG_ENTRY = SEOX_FALSE "
* LIFECYCLE_MANAGER = "Lifecycle manager
* SUPPRESS_DB_READ = SEOX_FALSE "Internal use only

CHANGING
METHOD = "

EXCEPTIONS
EXISTING = 1 IS_EVENT = 2 IS_TYPE = 3 IS_ATTRIBUTE = 4 NOT_CREATED = 5 DB_ERROR = 6
.



IMPORTING Parameters details for SEO_METHOD_CREATE_F_DATA

SAVE -

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

SUPPRESS_LOG_ENTRY -

Data type: SEOX_BOOLEAN
Default: SEOX_FALSE
Optional: No
Call by Reference: Yes

LIFECYCLE_MANAGER - Lifecycle manager

Data type: IF_ADT_LIFECYCLE_MANAGER
Optional: Yes
Call by Reference: Yes

SUPPRESS_DB_READ - Internal use only

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

CHANGING Parameters details for SEO_METHOD_CREATE_F_DATA

METHOD -

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

EXCEPTIONS details

EXISTING -

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

IS_EVENT -

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

IS_TYPE -

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

IS_ATTRIBUTE -

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

NOT_CREATED -

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

DB_ERROR -

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

Copy and paste ABAP code example for SEO_METHOD_CREATE_F_DATA 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_save  TYPE SEOX_BOOLEAN, "   SEOX_TRUE
lv_method  TYPE VSEOMETHOD, "   
lv_existing  TYPE VSEOMETHOD, "   
lv_is_event  TYPE VSEOMETHOD, "   
lv_suppress_log_entry  TYPE SEOX_BOOLEAN, "   SEOX_FALSE
lv_is_type  TYPE SEOX_BOOLEAN, "   
lv_lifecycle_manager  TYPE IF_ADT_LIFECYCLE_MANAGER, "   
lv_is_attribute  TYPE IF_ADT_LIFECYCLE_MANAGER, "   
lv_suppress_db_read  TYPE SEOX_BOOLEAN, "   SEOX_FALSE
lv_not_created  TYPE SEOX_BOOLEAN, "   
lv_db_error  TYPE SEOX_BOOLEAN. "   

  CALL FUNCTION 'SEO_METHOD_CREATE_F_DATA'  "Create Method in the Background
    EXPORTING
         SAVE = lv_save
         SUPPRESS_LOG_ENTRY = lv_suppress_log_entry
         LIFECYCLE_MANAGER = lv_lifecycle_manager
         SUPPRESS_DB_READ = lv_suppress_db_read
    CHANGING
         METHOD = lv_method
    EXCEPTIONS
        EXISTING = 1
        IS_EVENT = 2
        IS_TYPE = 3
        IS_ATTRIBUTE = 4
        NOT_CREATED = 5
        DB_ERROR = 6
. " SEO_METHOD_CREATE_F_DATA




ABAP code using 7.40 inline data declarations to call FM SEO_METHOD_CREATE_F_DATA

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_save) = SEOX_TRUE.
 
 
 
 
DATA(ld_suppress_log_entry) = SEOX_FALSE.
 
 
 
 
DATA(ld_suppress_db_read) = SEOX_FALSE.
 
 
 


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!