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

Function ISU_SUBINSTALL_OF_SUBMETER 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_SUBINSTALL_OF_SUBMETER'".
EXPORTING
X_EQUNR = "Equipment Number
* X_ZWNUMMER = "Register
X_DATUM = "Scheduled Meter Reading Date
* X_ACTUAL = "Consistent data
* X_LOGIKZW = "Logical register number
IMPORTING
Y_ABLEINH = "Meter Reading Unit
Y_ANLAGE = "Installation
Y_ANLAGE_MAIN = "Primary Installation
TABLES
* T_EANL = "
EXCEPTIONS
NOT_QUALIFIED = 1 NOT_FOUND = 2 GENERAL_ERROR = 3
IMPORTING Parameters details for ISU_SUBINSTALL_OF_SUBMETER
X_EQUNR - Equipment Number
Data type: EABL-EQUNROptional: No
Call by Reference: Yes
X_ZWNUMMER - Register
Data type: EABL-ZWNUMMEROptional: Yes
Call by Reference: Yes
X_DATUM - Scheduled Meter Reading Date
Data type: EABL-ADATSOLLOptional: No
Call by Reference: Yes
X_ACTUAL - Consistent data
Data type: REGEN-ACTUALOptional: Yes
Call by Reference: Yes
X_LOGIKZW - Logical register number
Data type: ETDZ-LOGIKZWOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISU_SUBINSTALL_OF_SUBMETER
Y_ABLEINH - Meter Reading Unit
Data type: EABLG-ABLEINHOptional: No
Call by Reference: Yes
Y_ANLAGE - Installation
Data type: EABLG-ANLAGEOptional: No
Call by Reference: Yes
Y_ANLAGE_MAIN - Primary Installation
Data type: EABLG-ANLAGEOptional: No
Call by Reference: Yes
TABLES Parameters details for ISU_SUBINSTALL_OF_SUBMETER
T_EANL -
Data type: V_EANLOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NOT_QUALIFIED - Incorrect Input Parameter
Data type:Optional: No
Call by Reference: Yes
NOT_FOUND - No Object Found
Data type:Optional: No
Call by Reference: Yes
GENERAL_ERROR - General Error
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_SUBINSTALL_OF_SUBMETER 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_t_eanl | TYPE STANDARD TABLE OF V_EANL, " | |||
| lv_x_equnr | TYPE EABL-EQUNR, " | |||
| lv_y_ableinh | TYPE EABLG-ABLEINH, " | |||
| lv_not_qualified | TYPE EABLG, " | |||
| lv_y_anlage | TYPE EABLG-ANLAGE, " | |||
| lv_not_found | TYPE EABLG, " | |||
| lv_x_zwnummer | TYPE EABL-ZWNUMMER, " | |||
| lv_x_datum | TYPE EABL-ADATSOLL, " | |||
| lv_general_error | TYPE EABL, " | |||
| lv_y_anlage_main | TYPE EABLG-ANLAGE, " | |||
| lv_x_actual | TYPE REGEN-ACTUAL, " | |||
| lv_x_logikzw | TYPE ETDZ-LOGIKZW. " |
|   CALL FUNCTION 'ISU_SUBINSTALL_OF_SUBMETER' " |
| EXPORTING | ||
| X_EQUNR | = lv_x_equnr | |
| X_ZWNUMMER | = lv_x_zwnummer | |
| X_DATUM | = lv_x_datum | |
| X_ACTUAL | = lv_x_actual | |
| X_LOGIKZW | = lv_x_logikzw | |
| IMPORTING | ||
| Y_ABLEINH | = lv_y_ableinh | |
| Y_ANLAGE | = lv_y_anlage | |
| Y_ANLAGE_MAIN | = lv_y_anlage_main | |
| TABLES | ||
| T_EANL | = lt_t_eanl | |
| EXCEPTIONS | ||
| NOT_QUALIFIED = 1 | ||
| NOT_FOUND = 2 | ||
| GENERAL_ERROR = 3 | ||
| . " ISU_SUBINSTALL_OF_SUBMETER | ||
ABAP code using 7.40 inline data declarations to call FM ISU_SUBINSTALL_OF_SUBMETER
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 EQUNR FROM EABL INTO @DATA(ld_x_equnr). | ||||
| "SELECT single ABLEINH FROM EABLG INTO @DATA(ld_y_ableinh). | ||||
| "SELECT single ANLAGE FROM EABLG INTO @DATA(ld_y_anlage). | ||||
| "SELECT single ZWNUMMER FROM EABL INTO @DATA(ld_x_zwnummer). | ||||
| "SELECT single ADATSOLL FROM EABL INTO @DATA(ld_x_datum). | ||||
| "SELECT single ANLAGE FROM EABLG INTO @DATA(ld_y_anlage_main). | ||||
| "SELECT single ACTUAL FROM REGEN INTO @DATA(ld_x_actual). | ||||
| "SELECT single LOGIKZW FROM ETDZ INTO @DATA(ld_x_logikzw). | ||||
Search for further information about these or an SAP related objects