SAP DD_EXIX_GET Function Module for









DD_EXIX_GET is a standard dd exix get 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 dd exix get FM, simply by entering the name DD_EXIX_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function DD_EXIX_GET 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 'DD_EXIX_GET'"
EXPORTING
* GET_STATE = 'M ' "
* LANGU = SY-LANGU "Language in which Texts are Read
* PRID = 0 "
EXIX_NAME = "
* WITHTEXT = ' ' "
* TRACELEVEL = 0 "Precision of log

IMPORTING
DD90V_WA_A = "
DD90V_WA_N = "
GOT_STATE = "

TABLES
* DD91V_TAB_A = "
* DD96V_TAB_N = "
* DD91V_TAB_N = "
* DD92V_TAB_A = "
* DD92V_TAB_N = "
* DD93V_TAB_A = "
* DD93V_TAB_N = "
* DD94V_TAB_A = "
* DD94V_TAB_N = "
* DD96V_TAB_A = "

EXCEPTIONS
ILLEGAL_VALUE = 1 OP_FAILURE = 2
.



IMPORTING Parameters details for DD_EXIX_GET

GET_STATE -

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

LANGU - Language in which Texts are Read

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

PRID -

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

EXIX_NAME -

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

WITHTEXT -

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

TRACELEVEL - Precision of log

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

EXPORTING Parameters details for DD_EXIX_GET

DD90V_WA_A -

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

DD90V_WA_N -

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

GOT_STATE -

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

TABLES Parameters details for DD_EXIX_GET

DD91V_TAB_A -

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

DD96V_TAB_N -

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

DD91V_TAB_N -

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

DD92V_TAB_A -

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

DD92V_TAB_N -

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

DD93V_TAB_A -

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

DD93V_TAB_N -

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

DD94V_TAB_A -

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

DD94V_TAB_N -

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

DD96V_TAB_A -

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

EXCEPTIONS details

ILLEGAL_VALUE - Value not allowed for parameter

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

OP_FAILURE - Internal Error

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

Copy and paste ABAP code example for DD_EXIX_GET 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_get_state  TYPE DCEXIXGET, "   'M '
lv_dd90v_wa_a  TYPE DD90V, "   
lt_dd91v_tab_a  TYPE STANDARD TABLE OF DD91V, "   
lv_illegal_value  TYPE DD91V, "   
lt_dd96v_tab_n  TYPE STANDARD TABLE OF DD96V, "   
lv_langu  TYPE SY-LANGU, "   SY-LANGU
lv_dd90v_wa_n  TYPE DD90V, "   
lv_op_failure  TYPE DD90V, "   
lt_dd91v_tab_n  TYPE STANDARD TABLE OF DD91V, "   
lv_prid  TYPE SY-TABIX, "   0
lv_got_state  TYPE DCEXIXGET, "   
lt_dd92v_tab_a  TYPE STANDARD TABLE OF DD92V, "   
lv_exix_name  TYPE DD90L-EXIXNAME, "   
lt_dd92v_tab_n  TYPE STANDARD TABLE OF DD92V, "   
lv_withtext  TYPE DDBOOL_D, "   ' '
lt_dd93v_tab_a  TYPE STANDARD TABLE OF DD93V, "   
lv_tracelevel  TYPE SY-TABIX, "   0
lt_dd93v_tab_n  TYPE STANDARD TABLE OF DD93V, "   
lt_dd94v_tab_a  TYPE STANDARD TABLE OF DD94V, "   
lt_dd94v_tab_n  TYPE STANDARD TABLE OF DD94V, "   
lt_dd96v_tab_a  TYPE STANDARD TABLE OF DD96V. "   

  CALL FUNCTION 'DD_EXIX_GET'  "
    EXPORTING
         GET_STATE = lv_get_state
         LANGU = lv_langu
         PRID = lv_prid
         EXIX_NAME = lv_exix_name
         WITHTEXT = lv_withtext
         TRACELEVEL = lv_tracelevel
    IMPORTING
         DD90V_WA_A = lv_dd90v_wa_a
         DD90V_WA_N = lv_dd90v_wa_n
         GOT_STATE = lv_got_state
    TABLES
         DD91V_TAB_A = lt_dd91v_tab_a
         DD96V_TAB_N = lt_dd96v_tab_n
         DD91V_TAB_N = lt_dd91v_tab_n
         DD92V_TAB_A = lt_dd92v_tab_a
         DD92V_TAB_N = lt_dd92v_tab_n
         DD93V_TAB_A = lt_dd93v_tab_a
         DD93V_TAB_N = lt_dd93v_tab_n
         DD94V_TAB_A = lt_dd94v_tab_a
         DD94V_TAB_N = lt_dd94v_tab_n
         DD96V_TAB_A = lt_dd96v_tab_a
    EXCEPTIONS
        ILLEGAL_VALUE = 1
        OP_FAILURE = 2
. " DD_EXIX_GET




ABAP code using 7.40 inline data declarations to call FM DD_EXIX_GET

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_get_state) = 'M '.
 
 
 
 
 
"SELECT single LANGU FROM SY INTO @DATA(ld_langu).
DATA(ld_langu) = SY-LANGU.
 
 
 
 
"SELECT single TABIX FROM SY INTO @DATA(ld_prid).
 
 
 
"SELECT single EXIXNAME FROM DD90L INTO @DATA(ld_exix_name).
 
 
DATA(ld_withtext) = ' '.
 
 
"SELECT single TABIX FROM SY INTO @DATA(ld_tracelevel).
 
 
 
 
 


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!