SAP ISU_DB_EABL_SEL_INSTALL_REMOTE Function Module for INTERN: Lesen Ableseaufträge und Ableseergebnisse über Anlage









ISU_DB_EABL_SEL_INSTALL_REMOTE is a standard isu db eabl sel install remote SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for INTERN: Lesen Ableseaufträge und Ableseergebnisse über Anlage 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 eabl sel install remote FM, simply by entering the name ISU_DB_EABL_SEL_INSTALL_REMOTE into the relevant SAP transaction such as SE37 or SE38.

Function Group: ISU_IL_BICO_REMOTE
Program Name: SAPLISU_IL_BICO_REMOTE
Main Program: SAPLISU_IL_BICO_REMOTE
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function ISU_DB_EABL_SEL_INSTALL_REMOTE 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_EABL_SEL_INSTALL_REMOTE'"INTERN: Lesen Ableseaufträge und Ableseergebnisse über Anlage
EXPORTING
* X_ANLAGE = "Installation
* X_ADATSOLL = "Scheduled Meter Reading Date
* X_ADATSOLLVON = 19000101 "
* X_ADATSOLLBIS = 99991231 "
* X_ABLESGR = "Meter Reading Reason
* X_TIMEVARIABLE = "
* X_MAXCOUNT = "
* X_ACTUAL = "

IMPORTING
Y_COUNT = "Number of Hits
Y_OVERFLOW = "Overflow
Y_EABL = "
Y_ERROR = "Indicators

TABLES
* TY_EABL = "
* TY_EABLG = "
* TX_ANLAGE = "
* TX_ADATSOLL = "
* TX_ABLESGR = "
* YT_RETURN = "Return Parameter
.



IMPORTING Parameters details for ISU_DB_EABL_SEL_INSTALL_REMOTE

X_ANLAGE - Installation

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

X_ADATSOLL - Scheduled Meter Reading Date

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

X_ADATSOLLVON -

Data type: EABL-ADATSOLL
Default: 19000101
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_ADATSOLLBIS -

Data type: EABL-ADATSOLL
Default: 99991231
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_ABLESGR - Meter Reading Reason

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

X_TIMEVARIABLE -

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

X_MAXCOUNT -

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

X_ACTUAL -

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

EXPORTING Parameters details for ISU_DB_EABL_SEL_INSTALL_REMOTE

Y_COUNT - Number of Hits

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

Y_OVERFLOW - Overflow

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

Y_EABL -

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

Y_ERROR - Indicators

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

TABLES Parameters details for ISU_DB_EABL_SEL_INSTALL_REMOTE

TY_EABL -

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

TY_EABLG -

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

TX_ANLAGE -

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

TX_ADATSOLL -

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

TX_ABLESGR -

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

YT_RETURN - Return Parameter

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

Copy and paste ABAP code example for ISU_DB_EABL_SEL_INSTALL_REMOTE 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:
lt_ty_eabl  TYPE STANDARD TABLE OF EABL, "   
lv_y_count  TYPE REGEN-MAXCOUNT, "   
lv_x_anlage  TYPE EABLG-ANLAGE, "   
lt_ty_eablg  TYPE STANDARD TABLE OF EABLG, "   
lv_x_adatsoll  TYPE EABL-ADATSOLL, "   
lv_y_overflow  TYPE REGEN-OVERFLOW, "   
lv_y_eabl  TYPE EABL, "   
lt_tx_anlage  TYPE STANDARD TABLE OF ISU_RANGES, "   
lv_x_adatsollvon  TYPE EABL-ADATSOLL, "   19000101
lv_y_error  TYPE KENNZX, "   
lt_tx_adatsoll  TYPE STANDARD TABLE OF ISU_RANGES, "   
lv_x_adatsollbis  TYPE EABL-ADATSOLL, "   99991231
lv_x_ablesgr  TYPE EABLG-ABLESGR, "   
lt_tx_ablesgr  TYPE STANDARD TABLE OF ISU_RANGES, "   
lt_yt_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lv_x_timevariable  TYPE REGEN-KENNZX, "   
lv_x_maxcount  TYPE REGEN-MAXCOUNT, "   
lv_x_actual  TYPE REGEN-ACTUAL. "   

  CALL FUNCTION 'ISU_DB_EABL_SEL_INSTALL_REMOTE'  "INTERN: Lesen Ableseaufträge und Ableseergebnisse über Anlage
    EXPORTING
         X_ANLAGE = lv_x_anlage
         X_ADATSOLL = lv_x_adatsoll
         X_ADATSOLLVON = lv_x_adatsollvon
         X_ADATSOLLBIS = lv_x_adatsollbis
         X_ABLESGR = lv_x_ablesgr
         X_TIMEVARIABLE = lv_x_timevariable
         X_MAXCOUNT = lv_x_maxcount
         X_ACTUAL = lv_x_actual
    IMPORTING
         Y_COUNT = lv_y_count
         Y_OVERFLOW = lv_y_overflow
         Y_EABL = lv_y_eabl
         Y_ERROR = lv_y_error
    TABLES
         TY_EABL = lt_ty_eabl
         TY_EABLG = lt_ty_eablg
         TX_ANLAGE = lt_tx_anlage
         TX_ADATSOLL = lt_tx_adatsoll
         TX_ABLESGR = lt_tx_ablesgr
         YT_RETURN = lt_yt_return
. " ISU_DB_EABL_SEL_INSTALL_REMOTE




ABAP code using 7.40 inline data declarations to call FM ISU_DB_EABL_SEL_INSTALL_REMOTE

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 MAXCOUNT FROM REGEN INTO @DATA(ld_y_count).
 
"SELECT single ANLAGE FROM EABLG INTO @DATA(ld_x_anlage).
 
 
"SELECT single ADATSOLL FROM EABL INTO @DATA(ld_x_adatsoll).
 
"SELECT single OVERFLOW FROM REGEN INTO @DATA(ld_y_overflow).
 
 
 
"SELECT single ADATSOLL FROM EABL INTO @DATA(ld_x_adatsollvon).
DATA(ld_x_adatsollvon) = 19000101.
 
 
 
"SELECT single ADATSOLL FROM EABL INTO @DATA(ld_x_adatsollbis).
DATA(ld_x_adatsollbis) = 99991231.
 
"SELECT single ABLESGR FROM EABLG INTO @DATA(ld_x_ablesgr).
 
 
 
"SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_timevariable).
 
"SELECT single MAXCOUNT FROM REGEN INTO @DATA(ld_x_maxcount).
 
"SELECT single ACTUAL FROM REGEN INTO @DATA(ld_x_actual).
 


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!