SAP ISU_ENTRY_PRESELECTION Function Module for
ISU_ENTRY_PRESELECTION is a standard isu entry preselection 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 isu entry preselection FM, simply by entering the name ISU_ENTRY_PRESELECTION into the relevant SAP transaction such as SE37 or SE38.
Function Group: E17A
Program Name: SAPLE17A
Main Program: SAPLE17A
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_ENTRY_PRESELECTION 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_ENTRY_PRESELECTION'".
EXPORTING
X_ACTION = "
* X_ABLBELNR = "Meter reading document number
* X_ABLESGR = "Meter Reading Reason
* X_NO_DIALOG = "
IMPORTING
Y_DPCORDER = "
CHANGING
XY_WMODE = "
* XY_ADATSOLL = "Planned Meter Reading Date
* XY_ABLEINH = "Meter Reading Unit
* XY_KUNDE = "Customer
* XY_VERTRAG = "Contract
* XY_VSTELLE = "Premise
* XY_HAUS = "Connection Object
* XY_ANLAGE = "Installation
* XY_EQUNR = "
* XY_ADAT = "Meter Reading Date
TABLES
YT_SELDATA = "
* YT_EABL = "
EXCEPTIONS
INPUT_ERROR = 1 SYSTEM_ERROR = 2 NOT_FOUND = 3 INTERNAL_ERROR = 4 NOT_AUTHORIZED = 5 NO_MRRELEV_REG = 6 CANCELLED = 7
IMPORTING Parameters details for ISU_ENTRY_PRESELECTION
X_ACTION -
Data type: ISU17_OBJ_CONTR-ACTIONOptional: No
Call by Reference: No ( called with pass by value option)
X_ABLBELNR - Meter reading document number
Data type: EABL-ABLBELNROptional: Yes
Call by Reference: No ( called with pass by value option)
X_ABLESGR - Meter Reading Reason
Data type: REL28D-ABLESGROptional: Yes
Call by Reference: No ( called with pass by value option)
X_NO_DIALOG -
Data type: REGEN-NO_DIALOGOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISU_ENTRY_PRESELECTION
Y_DPCORDER -
Data type: REGEN-KENNZXOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISU_ENTRY_PRESELECTION
XY_WMODE -
Data type: REGEN-WMODEOptional: No
Call by Reference: No ( called with pass by value option)
XY_ADATSOLL - Planned Meter Reading Date
Data type: EABL-ADATSOLLOptional: Yes
Call by Reference: No ( called with pass by value option)
XY_ABLEINH - Meter Reading Unit
Data type: REL28D-ABLEINHOptional: Yes
Call by Reference: No ( called with pass by value option)
XY_KUNDE - Customer
Data type: REL28D-KUNDEOptional: Yes
Call by Reference: No ( called with pass by value option)
XY_VERTRAG - Contract
Data type: REL28D-VERTRAGOptional: Yes
Call by Reference: No ( called with pass by value option)
XY_VSTELLE - Premise
Data type: REL28D-VSTELLEOptional: Yes
Call by Reference: No ( called with pass by value option)
XY_HAUS - Connection Object
Data type: REL28D-HAUSOptional: Yes
Call by Reference: No ( called with pass by value option)
XY_ANLAGE - Installation
Data type: REL28D-ANLAGEOptional: Yes
Call by Reference: No ( called with pass by value option)
XY_EQUNR -
Data type: EABL-EQUNROptional: Yes
Call by Reference: No ( called with pass by value option)
XY_ADAT - Meter Reading Date
Data type: EABL-ADATOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISU_ENTRY_PRESELECTION
YT_SELDATA -
Data type: ISU17_METERDOCU_SLCTDAT_TABOptional: No
Call by Reference: No ( called with pass by value option)
YT_EABL -
Data type: EABLOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
INPUT_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)
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_AUTHORIZED - No authorization
Data type:Optional: No
Call by Reference: Yes
NO_MRRELEV_REG -
Data type:Optional: No
Call by Reference: Yes
CANCELLED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_ENTRY_PRESELECTION 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_xy_wmode | TYPE REGEN-WMODE, " | |||
| lv_x_action | TYPE ISU17_OBJ_CONTR-ACTION, " | |||
| lt_yt_seldata | TYPE STANDARD TABLE OF ISU17_METERDOCU_SLCTDAT_TAB, " | |||
| lv_y_dpcorder | TYPE REGEN-KENNZX, " | |||
| lv_input_error | TYPE REGEN, " | |||
| lv_xy_adatsoll | TYPE EABL-ADATSOLL, " | |||
| lt_yt_eabl | TYPE STANDARD TABLE OF EABL, " | |||
| lv_xy_ableinh | TYPE REL28D-ABLEINH, " | |||
| lv_x_ablbelnr | TYPE EABL-ABLBELNR, " | |||
| lv_system_error | TYPE EABL, " | |||
| lv_xy_kunde | TYPE REL28D-KUNDE, " | |||
| lv_not_found | TYPE REL28D, " | |||
| lv_x_ablesgr | TYPE REL28D-ABLESGR, " | |||
| lv_xy_vertrag | TYPE REL28D-VERTRAG, " | |||
| lv_x_no_dialog | TYPE REGEN-NO_DIALOG, " | |||
| lv_internal_error | TYPE REGEN, " | |||
| lv_xy_vstelle | TYPE REL28D-VSTELLE, " | |||
| lv_not_authorized | TYPE REL28D, " | |||
| lv_xy_haus | TYPE REL28D-HAUS, " | |||
| lv_no_mrrelev_reg | TYPE REL28D, " | |||
| lv_cancelled | TYPE REL28D, " | |||
| lv_xy_anlage | TYPE REL28D-ANLAGE, " | |||
| lv_xy_equnr | TYPE EABL-EQUNR, " | |||
| lv_xy_adat | TYPE EABL-ADAT. " |
|   CALL FUNCTION 'ISU_ENTRY_PRESELECTION' " |
| EXPORTING | ||
| X_ACTION | = lv_x_action | |
| X_ABLBELNR | = lv_x_ablbelnr | |
| X_ABLESGR | = lv_x_ablesgr | |
| X_NO_DIALOG | = lv_x_no_dialog | |
| IMPORTING | ||
| Y_DPCORDER | = lv_y_dpcorder | |
| CHANGING | ||
| XY_WMODE | = lv_xy_wmode | |
| XY_ADATSOLL | = lv_xy_adatsoll | |
| XY_ABLEINH | = lv_xy_ableinh | |
| XY_KUNDE | = lv_xy_kunde | |
| XY_VERTRAG | = lv_xy_vertrag | |
| XY_VSTELLE | = lv_xy_vstelle | |
| XY_HAUS | = lv_xy_haus | |
| XY_ANLAGE | = lv_xy_anlage | |
| XY_EQUNR | = lv_xy_equnr | |
| XY_ADAT | = lv_xy_adat | |
| TABLES | ||
| YT_SELDATA | = lt_yt_seldata | |
| YT_EABL | = lt_yt_eabl | |
| EXCEPTIONS | ||
| INPUT_ERROR = 1 | ||
| SYSTEM_ERROR = 2 | ||
| NOT_FOUND = 3 | ||
| INTERNAL_ERROR = 4 | ||
| NOT_AUTHORIZED = 5 | ||
| NO_MRRELEV_REG = 6 | ||
| CANCELLED = 7 | ||
| . " ISU_ENTRY_PRESELECTION | ||
ABAP code using 7.40 inline data declarations to call FM ISU_ENTRY_PRESELECTION
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 WMODE FROM REGEN INTO @DATA(ld_xy_wmode). | ||||
| "SELECT single ACTION FROM ISU17_OBJ_CONTR INTO @DATA(ld_x_action). | ||||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_y_dpcorder). | ||||
| "SELECT single ADATSOLL FROM EABL INTO @DATA(ld_xy_adatsoll). | ||||
| "SELECT single ABLEINH FROM REL28D INTO @DATA(ld_xy_ableinh). | ||||
| "SELECT single ABLBELNR FROM EABL INTO @DATA(ld_x_ablbelnr). | ||||
| "SELECT single KUNDE FROM REL28D INTO @DATA(ld_xy_kunde). | ||||
| "SELECT single ABLESGR FROM REL28D INTO @DATA(ld_x_ablesgr). | ||||
| "SELECT single VERTRAG FROM REL28D INTO @DATA(ld_xy_vertrag). | ||||
| "SELECT single NO_DIALOG FROM REGEN INTO @DATA(ld_x_no_dialog). | ||||
| "SELECT single VSTELLE FROM REL28D INTO @DATA(ld_xy_vstelle). | ||||
| "SELECT single HAUS FROM REL28D INTO @DATA(ld_xy_haus). | ||||
| "SELECT single ANLAGE FROM REL28D INTO @DATA(ld_xy_anlage). | ||||
| "SELECT single EQUNR FROM EABL INTO @DATA(ld_xy_equnr). | ||||
| "SELECT single ADAT FROM EABL INTO @DATA(ld_xy_adat). | ||||
Search for further information about these or an SAP related objects