SAP SEO_CLIF_CORR_INSERT Function Module for Korrektureintrag für einen Objekttyp bzw. Teil davon









SEO_CLIF_CORR_INSERT is a standard seo clif corr insert SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Korrektureintrag für einen Objekttyp bzw. Teil davon 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 clif corr insert FM, simply by entering the name SEO_CLIF_CORR_INSERT 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_CLIF_CORR_INSERT 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_CLIF_CORR_INSERT'"Korrektureintrag für einen Objekttyp bzw. Teil davon
EXPORTING
CIFKEY = "Object Type
* SUPPRESS_WORKING_AREA_UPDATE = SEOX_FALSE "
* CPDNAME = "Methoden-Schlüssel (für LIMU METH)
* INCNAME = "Include-Name (für LIMU CINC)
* LIMU = "Transport Object
* DELETED = SEOX_FALSE "Objekt wurde gelöscht (nur LIMU METH)
* OBJECT_CLASS_SUPPORTS_MA = "
* EXTEND = "
* SUPPRESS_DIALOG = SEOX_FALSE "alle Meldungen des Korrektursystems unterdrücken
* LIFECYCLE_MANAGER = "Lifecycle manager

IMPORTING
NEW_EXTEND = "

CHANGING
* CORRNR = "
* DEVCLASS = "Package

EXCEPTIONS
NOT_EXISTING = 1 NO_ACCESS = 2 UNKNOWN_TRKEY = 3 CANCELLED = 4
.



IMPORTING Parameters details for SEO_CLIF_CORR_INSERT

CIFKEY - Object Type

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

SUPPRESS_WORKING_AREA_UPDATE -

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

CPDNAME - Methoden-Schlüssel (für LIMU METH)

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

INCNAME - Include-Name (für LIMU CINC)

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

LIMU - Transport Object

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

DELETED - Objekt wurde gelöscht (nur LIMU METH)

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

OBJECT_CLASS_SUPPORTS_MA -

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

EXTEND -

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

SUPPRESS_DIALOG - alle Meldungen des Korrektursystems unterdrücken

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

LIFECYCLE_MANAGER - Lifecycle manager

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

EXPORTING Parameters details for SEO_CLIF_CORR_INSERT

NEW_EXTEND -

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

CHANGING Parameters details for SEO_CLIF_CORR_INSERT

CORRNR -

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

DEVCLASS - Package

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

EXCEPTIONS details

NOT_EXISTING -

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)

UNKNOWN_TRKEY -

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

CANCELLED -

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

Copy and paste ABAP code example for SEO_CLIF_CORR_INSERT 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_cifkey  TYPE SEOCLSKEY, "   
lv_corrnr  TYPE TRKORR, "   
lv_new_extend  TYPE C, "   
lv_not_existing  TYPE C, "   
lv_suppress_working_area_update  TYPE SEOX_BOOLEAN, "   SEOX_FALSE
lv_cpdname  TYPE SEOCPDNAME, "   
lv_devclass  TYPE DEVCLASS, "   
lv_no_access  TYPE DEVCLASS, "   
lv_incname  TYPE PROGRAMM, "   
lv_unknown_trkey  TYPE PROGRAMM, "   
lv_limu  TYPE TROBJTYPE, "   
lv_cancelled  TYPE TROBJTYPE, "   
lv_deleted  TYPE SEOX_BOOLEAN, "   SEOX_FALSE
lv_object_class_supports_ma  TYPE C, "   
lv_extend  TYPE C, "   
lv_suppress_dialog  TYPE SEOX_BOOLEAN, "   SEOX_FALSE
lv_lifecycle_manager  TYPE IF_ADT_LIFECYCLE_MANAGER. "   

  CALL FUNCTION 'SEO_CLIF_CORR_INSERT'  "Korrektureintrag für einen Objekttyp bzw. Teil davon
    EXPORTING
         CIFKEY = lv_cifkey
         SUPPRESS_WORKING_AREA_UPDATE = lv_suppress_working_area_update
         CPDNAME = lv_cpdname
         INCNAME = lv_incname
         LIMU = lv_limu
         DELETED = lv_deleted
         OBJECT_CLASS_SUPPORTS_MA = lv_object_class_supports_ma
         EXTEND = lv_extend
         SUPPRESS_DIALOG = lv_suppress_dialog
         LIFECYCLE_MANAGER = lv_lifecycle_manager
    IMPORTING
         NEW_EXTEND = lv_new_extend
    CHANGING
         CORRNR = lv_corrnr
         DEVCLASS = lv_devclass
    EXCEPTIONS
        NOT_EXISTING = 1
        NO_ACCESS = 2
        UNKNOWN_TRKEY = 3
        CANCELLED = 4
. " SEO_CLIF_CORR_INSERT




ABAP code using 7.40 inline data declarations to call FM SEO_CLIF_CORR_INSERT

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_working_area_update) = SEOX_FALSE.
 
 
 
 
 
 
 
 
DATA(ld_deleted) = SEOX_FALSE.
 
 
 
DATA(ld_suppress_dialog) = 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!