SAP EXTERNAL_S_TABLE_EIS_EXTRACT Function Module for Daten lesen
EXTERNAL_S_TABLE_EIS_EXTRACT is a standard external s table eis extract SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Daten lesen 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 external s table eis extract FM, simply by entering the name EXTERNAL_S_TABLE_EIS_EXTRACT into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBI3
Program Name: SAPLJBI3
Main Program: SAPLJBI3
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXTERNAL_S_TABLE_EIS_EXTRACT 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 'EXTERNAL_S_TABLE_EIS_EXTRACT'"Daten lesen.
EXPORTING
I_APPLC = "
I_TABNM = "
* I_EXTERNAL = FTIS_FALSE "
* I_FORM = ' ' "
* I_PROG = ' ' "
IMPORTING
E_TFILL = "
TABLES
I_SF_TAB = "
I_SEL_TAB = "
* I_PARAM_TAB = "
* I_SH_TAB = "
IMPORTING Parameters details for EXTERNAL_S_TABLE_EIS_EXTRACT
I_APPLC -
Data type: RKB1D-APPLCLASSOptional: No
Call by Reference: No ( called with pass by value option)
I_TABNM -
Data type: RKB1X-TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_EXTERNAL -
Data type: FTIS_FLAGDefault: FTIS_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FORM -
Data type: DD27V-EFORMDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_PROG -
Data type: RS38M-PROGRAMMDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for EXTERNAL_S_TABLE_EIS_EXTRACT
E_TFILL -
Data type: SY-TFILLOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for EXTERNAL_S_TABLE_EIS_EXTRACT
I_SF_TAB -
Data type: CFBSF01Optional: No
Call by Reference: No ( called with pass by value option)
I_SEL_TAB -
Data type: CEDSTOptional: No
Call by Reference: No ( called with pass by value option)
I_PARAM_TAB -
Data type: RSPARAMSOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SH_TAB -
Data type: CFBSH01Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EXTERNAL_S_TABLE_EIS_EXTRACT 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_e_tfill | TYPE SY-TFILL, " | |||
| lv_i_applc | TYPE RKB1D-APPLCLASS, " | |||
| lt_i_sf_tab | TYPE STANDARD TABLE OF CFBSF01, " | |||
| lv_i_tabnm | TYPE RKB1X-TABNAME, " | |||
| lt_i_sel_tab | TYPE STANDARD TABLE OF CEDST, " | |||
| lv_i_external | TYPE FTIS_FLAG, " FTIS_FALSE | |||
| lt_i_param_tab | TYPE STANDARD TABLE OF RSPARAMS, " | |||
| lv_i_form | TYPE DD27V-EFORM, " SPACE | |||
| lt_i_sh_tab | TYPE STANDARD TABLE OF CFBSH01, " | |||
| lv_i_prog | TYPE RS38M-PROGRAMM. " SPACE |
|   CALL FUNCTION 'EXTERNAL_S_TABLE_EIS_EXTRACT' "Daten lesen |
| EXPORTING | ||
| I_APPLC | = lv_i_applc | |
| I_TABNM | = lv_i_tabnm | |
| I_EXTERNAL | = lv_i_external | |
| I_FORM | = lv_i_form | |
| I_PROG | = lv_i_prog | |
| IMPORTING | ||
| E_TFILL | = lv_e_tfill | |
| TABLES | ||
| I_SF_TAB | = lt_i_sf_tab | |
| I_SEL_TAB | = lt_i_sel_tab | |
| I_PARAM_TAB | = lt_i_param_tab | |
| I_SH_TAB | = lt_i_sh_tab | |
| . " EXTERNAL_S_TABLE_EIS_EXTRACT | ||
ABAP code using 7.40 inline data declarations to call FM EXTERNAL_S_TABLE_EIS_EXTRACT
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 TFILL FROM SY INTO @DATA(ld_e_tfill). | ||||
| "SELECT single APPLCLASS FROM RKB1D INTO @DATA(ld_i_applc). | ||||
| "SELECT single TABNAME FROM RKB1X INTO @DATA(ld_i_tabnm). | ||||
| DATA(ld_i_external) | = FTIS_FALSE. | |||
| "SELECT single EFORM FROM DD27V INTO @DATA(ld_i_form). | ||||
| DATA(ld_i_form) | = ' '. | |||
| "SELECT single PROGRAMM FROM RS38M INTO @DATA(ld_i_prog). | ||||
| DATA(ld_i_prog) | = ' '. | |||
Search for further information about these or an SAP related objects