SAP ISU_DB_EITR_SELECT Function Module for INTERNAL: Read EITR (Unqualified)
ISU_DB_EITR_SELECT is a standard isu db eitr select SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for INTERNAL: Read EITR (Unqualified) 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 isu db eitr select FM, simply by entering the name ISU_DB_EITR_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: EITR
Program Name: SAPLEITR
Main Program: SAPLEITR
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_DB_EITR_SELECT 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 'ISU_DB_EITR_SELECT'"INTERNAL: Read EITR (Unqualified).
EXPORTING
* X_ACTUAL = "Consistent Data Version ('X' = Yes, ' ' = No)
* X_SIMULATED = "
* X_TOBRELEASD = "
* X_NON_SIMULATED = "
* X_WHERE = "
IMPORTING
Y_EITR = "
Y_COUNT = "Number of Hits
TABLES
* XT_BUKRS = "
* XT_BEL_ART = "
* XT_BELNR = "
* XT_FAEDN = "
YT_EITR = "No.of hits
* XT_PORTION = "
* XT_GPARTNER = "
* XT_VKONTO = "
* XT_SAMMLERVK = "
* XT_ABRVORG = "
* XT_VERTRAG = "
* XT_SPARTE = "
* XT_MANUOUTSORT = "
EXCEPTIONS
IU_ERROR = 1 SYSTEM_ERROR = 2
IMPORTING Parameters details for ISU_DB_EITR_SELECT
X_ACTUAL - Consistent Data Version ('X' = Yes, ' ' = No)
Data type: REGEN-ACTUALOptional: Yes
Call by Reference: No ( called with pass by value option)
X_SIMULATED -
Data type: REGEN-KENNZXOptional: Yes
Call by Reference: No ( called with pass by value option)
X_TOBRELEASD -
Data type: EITR-TOBRELEASDOptional: Yes
Call by Reference: No ( called with pass by value option)
X_NON_SIMULATED -
Data type: REGEN-KENNZXOptional: Yes
Call by Reference: No ( called with pass by value option)
X_WHERE -
Data type: RSDS_WHEREOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISU_DB_EITR_SELECT
Y_EITR -
Data type: EITROptional: No
Call by Reference: No ( called with pass by value option)
Y_COUNT - Number of Hits
Data type: REGEN-MAXCOUNTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISU_DB_EITR_SELECT
XT_BUKRS -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
XT_BEL_ART -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
XT_BELNR -
Data type: ISU_RANGESOptional: Yes
Call by Reference: Yes
XT_FAEDN -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
YT_EITR - No.of hits
Data type: EITROptional: No
Call by Reference: No ( called with pass by value option)
XT_PORTION -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
XT_GPARTNER -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
XT_VKONTO -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
XT_SAMMLERVK -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
XT_ABRVORG -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
XT_VERTRAG -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
XT_SPARTE -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
XT_MANUOUTSORT -
Data type: ISU_RANGESOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
IU_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SYSTEM_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_DB_EITR_SELECT 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_y_eitr | TYPE EITR, " | |||
| lv_iu_error | TYPE EITR, " | |||
| lt_xt_bukrs | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lv_x_actual | TYPE REGEN-ACTUAL, " | |||
| lt_xt_bel_art | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lt_xt_belnr | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lt_xt_faedn | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lt_yt_eitr | TYPE STANDARD TABLE OF EITR, " | |||
| lv_y_count | TYPE REGEN-MAXCOUNT, " | |||
| lt_xt_portion | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lv_x_simulated | TYPE REGEN-KENNZX, " | |||
| lv_system_error | TYPE REGEN, " | |||
| lt_xt_gpartner | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lv_x_tobreleasd | TYPE EITR-TOBRELEASD, " | |||
| lt_xt_vkonto | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lv_x_non_simulated | TYPE REGEN-KENNZX, " | |||
| lv_x_where | TYPE RSDS_WHERE, " | |||
| lt_xt_sammlervk | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lt_xt_abrvorg | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lt_xt_vertrag | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lt_xt_sparte | TYPE STANDARD TABLE OF ISU_RANGES, " | |||
| lt_xt_manuoutsort | TYPE STANDARD TABLE OF ISU_RANGES. " |
|   CALL FUNCTION 'ISU_DB_EITR_SELECT' "INTERNAL: Read EITR (Unqualified) |
| EXPORTING | ||
| X_ACTUAL | = lv_x_actual | |
| X_SIMULATED | = lv_x_simulated | |
| X_TOBRELEASD | = lv_x_tobreleasd | |
| X_NON_SIMULATED | = lv_x_non_simulated | |
| X_WHERE | = lv_x_where | |
| IMPORTING | ||
| Y_EITR | = lv_y_eitr | |
| Y_COUNT | = lv_y_count | |
| TABLES | ||
| XT_BUKRS | = lt_xt_bukrs | |
| XT_BEL_ART | = lt_xt_bel_art | |
| XT_BELNR | = lt_xt_belnr | |
| XT_FAEDN | = lt_xt_faedn | |
| YT_EITR | = lt_yt_eitr | |
| XT_PORTION | = lt_xt_portion | |
| XT_GPARTNER | = lt_xt_gpartner | |
| XT_VKONTO | = lt_xt_vkonto | |
| XT_SAMMLERVK | = lt_xt_sammlervk | |
| XT_ABRVORG | = lt_xt_abrvorg | |
| XT_VERTRAG | = lt_xt_vertrag | |
| XT_SPARTE | = lt_xt_sparte | |
| XT_MANUOUTSORT | = lt_xt_manuoutsort | |
| EXCEPTIONS | ||
| IU_ERROR = 1 | ||
| SYSTEM_ERROR = 2 | ||
| . " ISU_DB_EITR_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM ISU_DB_EITR_SELECT
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 ACTUAL FROM REGEN INTO @DATA(ld_x_actual). | ||||
| "SELECT single MAXCOUNT FROM REGEN INTO @DATA(ld_y_count). | ||||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_simulated). | ||||
| "SELECT single TOBRELEASD FROM EITR INTO @DATA(ld_x_tobreleasd). | ||||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_non_simulated). | ||||
Search for further information about these or an SAP related objects