SAP SEO_INTERFACE_CREATE_COMPLETE Function Module for Komplettes Interface aus Parametern neu anlegen
SEO_INTERFACE_CREATE_COMPLETE is a standard seo interface create complete SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Komplettes Interface aus Parametern neu anlegen 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 interface create complete FM, simply by entering the name SEO_INTERFACE_CREATE_COMPLETE into the relevant SAP transaction such as SE37 or SE38.
Function Group: SEOQ
Program Name: SAPLSEOQ
Main Program: SAPLSEOQ
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SEO_INTERFACE_CREATE_COMPLETE 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_INTERFACE_CREATE_COMPLETE'"Komplettes Interface aus Parametern neu anlegen.
EXPORTING
* CORRNR = "Correction Number
* SUPPRESS_REFACTORING_SUPPORT = SEOX_TRUE "
* TYPESRC = "
* SUPPRESS_DIALOG = "Suppress Dialogs
* SUPPRESS_CORR = SEOX_FALSE "
* LIFECYCLE_MANAGER = "Lifecycle manager
* LOCK_HANDLE = "Lock Handle
* SUPPRESS_UNLOCK = SEOX_FALSE "
* SUPPRESS_COMMIT = SEOX_FALSE "
* DEVCLASS = "Package
* VERSION = SEOC_VERSION_INACTIVE "Active/Inactive
* GENFLAG = ' ' "Generation Flag
* AUTHORITY_CHECK = SEOX_TRUE "
* OVERWRITE = SEOX_FALSE "
IMPORTING
KORRNR = "Request/Task
CHANGING
INTERFACE = "
* CLSDEFERRDS = "
* INTDEFERRDS = "
* TYPES = "
* COMPRISINGS = "
* ATTRIBUTES = "
* METHODS = "
* EVENTS = "
* PARAMETERS = "
* EXCEPS = "
* ALIASES = "
* TYPEPUSAGES = "
TABLES
* CLASS_DESCRIPTIONS = "Short description class/interface
* COMPONENT_DESCRIPTIONS = "Short description class/interface component
* SUBCOMPONENT_DESCRIPTIONS = "Class/interface subcomponent short description
EXCEPTIONS
EXISTING = 1 IS_CLASS = 2 DB_ERROR = 3 COMPONENT_ERROR = 4 NO_ACCESS = 5 OTHER = 6
IMPORTING Parameters details for SEO_INTERFACE_CREATE_COMPLETE
CORRNR - Correction Number
Data type: TRKORROptional: Yes
Call by Reference: No ( called with pass by value option)
SUPPRESS_REFACTORING_SUPPORT -
Data type: SEOX_BOOLEANDefault: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TYPESRC -
Data type: SEOO_TYPESRCOptional: Yes
Call by Reference: Yes
SUPPRESS_DIALOG - Suppress Dialogs
Data type: SEOX_BOOLEANOptional: Yes
Call by Reference: No ( called with pass by value option)
SUPPRESS_CORR -
Data type: SEOX_BOOLEANDefault: SEOX_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)
LIFECYCLE_MANAGER - Lifecycle manager
Data type: IF_ADT_LIFECYCLE_MANAGEROptional: Yes
Call by Reference: Yes
LOCK_HANDLE - Lock Handle
Data type: IF_ADT_LOCK_HANDLEOptional: Yes
Call by Reference: Yes
SUPPRESS_UNLOCK -
Data type: SEOX_BOOLEANDefault: SEOX_FALSE
Optional: No
Call by Reference: No ( called with pass by value option)
SUPPRESS_COMMIT -
Data type: SEOX_BOOLEANDefault: SEOX_FALSE
Optional: No
Call by Reference: No ( called with pass by value option)
DEVCLASS - Package
Data type: DEVCLASSOptional: Yes
Call by Reference: No ( called with pass by value option)
VERSION - Active/Inactive
Data type: SEOVERSIONDefault: SEOC_VERSION_INACTIVE
Optional: Yes
Call by Reference: No ( called with pass by value option)
GENFLAG - Generation Flag
Data type: GENFLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
AUTHORITY_CHECK -
Data type: SEOX_BOOLEANDefault: SEOX_TRUE
Optional: No
Call by Reference: No ( called with pass by value option)
OVERWRITE -
Data type: SEOX_BOOLEANDefault: SEOX_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SEO_INTERFACE_CREATE_COMPLETE
KORRNR - Request/Task
Data type: TRKORROptional: No
Call by Reference: Yes
CHANGING Parameters details for SEO_INTERFACE_CREATE_COMPLETE
INTERFACE -
Data type: VSEOINTERFOptional: No
Call by Reference: Yes
CLSDEFERRDS -
Data type: SEOT_CLSDEFERRDS_ROptional: Yes
Call by Reference: Yes
INTDEFERRDS -
Data type: SEOT_INTDEFERRDS_ROptional: Yes
Call by Reference: Yes
TYPES -
Data type: SEOO_TYPES_ROptional: Yes
Call by Reference: Yes
COMPRISINGS -
Data type: SEOR_COMPRISINGS_ROptional: Yes
Call by Reference: Yes
ATTRIBUTES -
Data type: SEOO_ATTRIBUTES_ROptional: Yes
Call by Reference: Yes
METHODS -
Data type: SEOO_METHODS_ROptional: Yes
Call by Reference: Yes
EVENTS -
Data type: SEOO_EVENTS_ROptional: Yes
Call by Reference: Yes
PARAMETERS -
Data type: SEOS_PARAMETERS_ROptional: Yes
Call by Reference: Yes
EXCEPS -
Data type: SEOS_EXCEPTIONS_ROptional: Yes
Call by Reference: Yes
ALIASES -
Data type: SEOO_ALIASES_ROptional: Yes
Call by Reference: Yes
TYPEPUSAGES -
Data type: SEOT_TYPEPUSAGES_ROptional: Yes
Call by Reference: Yes
TABLES Parameters details for SEO_INTERFACE_CREATE_COMPLETE
CLASS_DESCRIPTIONS - Short description class/interface
Data type: SEOCLASSTXOptional: Yes
Call by Reference: Yes
COMPONENT_DESCRIPTIONS - Short description class/interface component
Data type: SEOCOMPOTXOptional: Yes
Call by Reference: Yes
SUBCOMPONENT_DESCRIPTIONS - Class/interface subcomponent short description
Data type: SEOSUBCOTXOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
EXISTING -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
IS_CLASS -
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)
COMPONENT_ERROR -
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)
OTHER -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SEO_INTERFACE_CREATE_COMPLETE 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_corrnr | TYPE TRKORR, " | |||
| lv_korrnr | TYPE TRKORR, " | |||
| lv_existing | TYPE TRKORR, " | |||
| lv_interface | TYPE VSEOINTERF, " | |||
| lt_class_descriptions | TYPE STANDARD TABLE OF SEOCLASSTX, " | |||
| lv_clsdeferrds | TYPE SEOT_CLSDEFERRDS_R, " | |||
| lv_suppress_refactoring_support | TYPE SEOX_BOOLEAN, " SEOX_TRUE | |||
| lv_typesrc | TYPE SEOO_TYPESRC, " | |||
| lv_intdeferrds | TYPE SEOT_INTDEFERRDS_R, " | |||
| lv_types | TYPE SEOO_TYPES_R, " | |||
| lv_suppress_dialog | TYPE SEOX_BOOLEAN, " | |||
| lv_suppress_corr | TYPE SEOX_BOOLEAN, " SEOX_FALSE | |||
| lv_lifecycle_manager | TYPE IF_ADT_LIFECYCLE_MANAGER, " | |||
| lv_is_class | TYPE IF_ADT_LIFECYCLE_MANAGER, " | |||
| lv_comprisings | TYPE SEOR_COMPRISINGS_R, " | |||
| lv_lock_handle | TYPE IF_ADT_LOCK_HANDLE, " | |||
| lt_component_descriptions | TYPE STANDARD TABLE OF SEOCOMPOTX, " | |||
| lv_db_error | TYPE SEOCOMPOTX, " | |||
| lv_attributes | TYPE SEOO_ATTRIBUTES_R, " | |||
| lv_suppress_unlock | TYPE SEOX_BOOLEAN, " SEOX_FALSE | |||
| lt_subcomponent_descriptions | TYPE STANDARD TABLE OF SEOSUBCOTX, " | |||
| lv_methods | TYPE SEOO_METHODS_R, " | |||
| lv_component_error | TYPE SEOO_METHODS_R, " | |||
| lv_suppress_commit | TYPE SEOX_BOOLEAN, " SEOX_FALSE | |||
| lv_events | TYPE SEOO_EVENTS_R, " | |||
| lv_devclass | TYPE DEVCLASS, " | |||
| lv_no_access | TYPE DEVCLASS, " | |||
| lv_other | TYPE DEVCLASS, " | |||
| lv_version | TYPE SEOVERSION, " SEOC_VERSION_INACTIVE | |||
| lv_parameters | TYPE SEOS_PARAMETERS_R, " | |||
| lv_exceps | TYPE SEOS_EXCEPTIONS_R, " | |||
| lv_genflag | TYPE GENFLAG, " SPACE | |||
| lv_aliases | TYPE SEOO_ALIASES_R, " | |||
| lv_authority_check | TYPE SEOX_BOOLEAN, " SEOX_TRUE | |||
| lv_overwrite | TYPE SEOX_BOOLEAN, " SEOX_FALSE | |||
| lv_typepusages | TYPE SEOT_TYPEPUSAGES_R. " |
|   CALL FUNCTION 'SEO_INTERFACE_CREATE_COMPLETE' "Komplettes Interface aus Parametern neu anlegen |
| EXPORTING | ||
| CORRNR | = lv_corrnr | |
| SUPPRESS_REFACTORING_SUPPORT | = lv_suppress_refactoring_support | |
| TYPESRC | = lv_typesrc | |
| SUPPRESS_DIALOG | = lv_suppress_dialog | |
| SUPPRESS_CORR | = lv_suppress_corr | |
| LIFECYCLE_MANAGER | = lv_lifecycle_manager | |
| LOCK_HANDLE | = lv_lock_handle | |
| SUPPRESS_UNLOCK | = lv_suppress_unlock | |
| SUPPRESS_COMMIT | = lv_suppress_commit | |
| DEVCLASS | = lv_devclass | |
| VERSION | = lv_version | |
| GENFLAG | = lv_genflag | |
| AUTHORITY_CHECK | = lv_authority_check | |
| OVERWRITE | = lv_overwrite | |
| IMPORTING | ||
| KORRNR | = lv_korrnr | |
| CHANGING | ||
| INTERFACE | = lv_interface | |
| CLSDEFERRDS | = lv_clsdeferrds | |
| INTDEFERRDS | = lv_intdeferrds | |
| TYPES | = lv_types | |
| COMPRISINGS | = lv_comprisings | |
| ATTRIBUTES | = lv_attributes | |
| METHODS | = lv_methods | |
| EVENTS | = lv_events | |
| PARAMETERS | = lv_parameters | |
| EXCEPS | = lv_exceps | |
| ALIASES | = lv_aliases | |
| TYPEPUSAGES | = lv_typepusages | |
| TABLES | ||
| CLASS_DESCRIPTIONS | = lt_class_descriptions | |
| COMPONENT_DESCRIPTIONS | = lt_component_descriptions | |
| SUBCOMPONENT_DESCRIPTIONS | = lt_subcomponent_descriptions | |
| EXCEPTIONS | ||
| EXISTING = 1 | ||
| IS_CLASS = 2 | ||
| DB_ERROR = 3 | ||
| COMPONENT_ERROR = 4 | ||
| NO_ACCESS = 5 | ||
| OTHER = 6 | ||
| . " SEO_INTERFACE_CREATE_COMPLETE | ||
ABAP code using 7.40 inline data declarations to call FM SEO_INTERFACE_CREATE_COMPLETE
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_suppress_refactoring_support) | = SEOX_TRUE. | |||
| DATA(ld_suppress_corr) | = SEOX_FALSE. | |||
| DATA(ld_suppress_unlock) | = SEOX_FALSE. | |||
| DATA(ld_suppress_commit) | = SEOX_FALSE. | |||
| DATA(ld_version) | = SEOC_VERSION_INACTIVE. | |||
| DATA(ld_genflag) | = ' '. | |||
| DATA(ld_authority_check) | = SEOX_TRUE. | |||
| DATA(ld_overwrite) | = SEOX_FALSE. | |||
Search for further information about these or an SAP related objects