SAP INTERN_CHECK_DD_NAME Function Module for









INTERN_CHECK_DD_NAME is a standard intern check dd name SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 intern check dd name FM, simply by entering the name INTERN_CHECK_DD_NAME into the relevant SAP transaction such as SE37 or SE38.

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



Function INTERN_CHECK_DD_NAME 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 'INTERN_CHECK_DD_NAME'"
EXPORTING
* ERR_MESSAGE = ' ' "Flag:X=popup with E-message, else S-message
* FCT = 'E' "Function
* TABCLASS = "For creation: table/view type (import, optional)
* I_NO_ACCESS_CHECK = '' "
* I_APPEND_OBJECT_NAME = "

IMPORTING
MASTERLANGU = "Original language
MDF_LANGU = "Language for filling missing text
GO_ON = "Flag for continuation(' '/S/A/E)
OBJCLASS = "For creation: table/view type (export)
TADIR_TYPE = "TADIR type
DEV_CLASS = "Development class
TRANSPORT_KEY = "Key for transport request (TADIR key)
EXTEND = "Customer enhancement mode ('X'->yes)
E_FROZEN = "

CHANGING
* OBJNAME = "Object name
* SECNAME = ' ' "Supplementary name
OBJTYPE = "Object type (DE type)

EXCEPTIONS
OBJECT_NOT_FOUND = 1 OTHER_OBJECT_CLASS = 2 INVALID_PARAMETER = 3 OBJECT_ALREADY_EXISTS = 4 PERMISSION_FAILURE = 5 NOT_EXECUTED = 6 INVALID_NAME = 7
.



IMPORTING Parameters details for INTERN_CHECK_DD_NAME

ERR_MESSAGE - Flag:X=popup with E-message, else S-message

Data type: DDREFSTRUC-FLAG
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

FCT - Function

Data type: RSDXX-FCT
Default: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABCLASS - For creation: table/view type (import, optional)

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

I_NO_ACCESS_CHECK -

Data type: DDBOOL_D
Default: ''
Optional: No
Call by Reference: Yes

I_APPEND_OBJECT_NAME -

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

EXPORTING Parameters details for INTERN_CHECK_DD_NAME

MASTERLANGU - Original language

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

MDF_LANGU - Language for filling missing text

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

GO_ON - Flag for continuation(' '/S/A/E)

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

OBJCLASS - For creation: table/view type (export)

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

TADIR_TYPE - TADIR type

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

DEV_CLASS - Development class

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

TRANSPORT_KEY - Key for transport request (TADIR key)

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

EXTEND - Customer enhancement mode ('X'->yes)

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

E_FROZEN -

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

CHANGING Parameters details for INTERN_CHECK_DD_NAME

OBJNAME - Object name

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

SECNAME - Supplementary name

Data type: RSEDD0-INDEXID
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

OBJTYPE - Object type (DE type)

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

EXCEPTIONS details

OBJECT_NOT_FOUND - Dictionary object does not exist (display/change)

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

OTHER_OBJECT_CLASS - OBJNAME is defined in another object class

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

INVALID_PARAMETER - Invalid parameter value

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

OBJECT_ALREADY_EXISTS - Object already exists (create)

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

PERMISSION_FAILURE - Access not possible

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

NOT_EXECUTED - Action was cancelled

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

INVALID_NAME - Name does not satisfy name convention (create)

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

Copy and paste ABAP code example for INTERN_CHECK_DD_NAME 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_objname  TYPE RSEDD0-DDOBJNAME, "   
lv_err_message  TYPE DDREFSTRUC-FLAG, "   ' '
lv_masterlangu  TYPE SY-LANGU, "   
lv_object_not_found  TYPE SY, "   
lv_fct  TYPE RSDXX-FCT, "   'E'
lv_secname  TYPE RSEDD0-INDEXID, "   ' '
lv_mdf_langu  TYPE SY-LANGU, "   
lv_other_object_class  TYPE SY, "   
lv_go_on  TYPE DDREFSTRUC-FLAG, "   
lv_objtype  TYPE RSEDD0-DDOBJTYPE, "   
lv_tabclass  TYPE RSEDD0, "   
lv_invalid_parameter  TYPE RSEDD0, "   
lv_objclass  TYPE RSEDD0, "   
lv_i_no_access_check  TYPE DDBOOL_D, "   ''
lv_object_already_exists  TYPE DDBOOL_D, "   
lv_tadir_type  TYPE RSDXX-TROBJTYPE, "   
lv_permission_failure  TYPE RSDXX, "   
lv_i_append_object_name  TYPE DDOBJNAME, "   
lv_dev_class  TYPE TADIR-DEVCLASS, "   
lv_not_executed  TYPE TADIR, "   
lv_invalid_name  TYPE TADIR, "   
lv_transport_key  TYPE TRKEY, "   
lv_extend  TYPE C, "   
lv_e_frozen  TYPE C. "   

  CALL FUNCTION 'INTERN_CHECK_DD_NAME'  "
    EXPORTING
         ERR_MESSAGE = lv_err_message
         FCT = lv_fct
         TABCLASS = lv_tabclass
         I_NO_ACCESS_CHECK = lv_i_no_access_check
         I_APPEND_OBJECT_NAME = lv_i_append_object_name
    IMPORTING
         MASTERLANGU = lv_masterlangu
         MDF_LANGU = lv_mdf_langu
         GO_ON = lv_go_on
         OBJCLASS = lv_objclass
         TADIR_TYPE = lv_tadir_type
         DEV_CLASS = lv_dev_class
         TRANSPORT_KEY = lv_transport_key
         EXTEND = lv_extend
         E_FROZEN = lv_e_frozen
    CHANGING
         OBJNAME = lv_objname
         SECNAME = lv_secname
         OBJTYPE = lv_objtype
    EXCEPTIONS
        OBJECT_NOT_FOUND = 1
        OTHER_OBJECT_CLASS = 2
        INVALID_PARAMETER = 3
        OBJECT_ALREADY_EXISTS = 4
        PERMISSION_FAILURE = 5
        NOT_EXECUTED = 6
        INVALID_NAME = 7
. " INTERN_CHECK_DD_NAME




ABAP code using 7.40 inline data declarations to call FM INTERN_CHECK_DD_NAME

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 DDOBJNAME FROM RSEDD0 INTO @DATA(ld_objname).
 
"SELECT single FLAG FROM DDREFSTRUC INTO @DATA(ld_err_message).
DATA(ld_err_message) = ' '.
 
"SELECT single LANGU FROM SY INTO @DATA(ld_masterlangu).
 
 
"SELECT single FCT FROM RSDXX INTO @DATA(ld_fct).
DATA(ld_fct) = 'E'.
 
"SELECT single INDEXID FROM RSEDD0 INTO @DATA(ld_secname).
DATA(ld_secname) = ' '.
 
"SELECT single LANGU FROM SY INTO @DATA(ld_mdf_langu).
 
 
"SELECT single FLAG FROM DDREFSTRUC INTO @DATA(ld_go_on).
 
"SELECT single DDOBJTYPE FROM RSEDD0 INTO @DATA(ld_objtype).
 
 
 
 
DATA(ld_i_no_access_check) = ''.
 
 
"SELECT single TROBJTYPE FROM RSDXX INTO @DATA(ld_tadir_type).
 
 
 
"SELECT single DEVCLASS FROM TADIR INTO @DATA(ld_dev_class).
 
 
 
 
 
 


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!