IELMREAD is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter IELMREAD into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: Macros: Meter Reading Entry
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISU_DB_EABL_LAST call function 'ISU_DB_EABL_LAST' exporting x_equnr = &1 x_zwnummer = &2 x_adat = &3 x_atim = &4 x_arbauf = &7 x_adaterz = &8 x_endbillper = &9 importing y_eabl = &5 tables yt_eablg = &6 exceptions not_found = 1 system_error = 2 not_qualified = 3 others = 4.
ISU_CONSUMPTION_DETERMINE call function 'ISU_CONSUMPTION_DETERMINE' exporting x_equnr = &1 x_zwnummer = &2 x_adat = &3 x_atim = &4 x_v_zwstndab = &5 x_n_zwstndab = &6 x_adatvor = &7 x_atimvor = &8 importing y_i_abrmenge = &9 exceptions general_fault = 1 zwstandab_missing = 2 zwstand_missing = 3 others = 4.
ISU_METER_DBDATA_TRANSFORM call function 'ISU_METER_DBDATA_TRANSFORM' exporting x_v_format = &1 x_n_format = &2 x_stanzvor = &3 x_stanznac = &4 importing y_i_format = &5 y_b_zwstand = &6 exceptions not_valid = 1 others = 2.
ISU_METER_DATA_FORMAT_CHECK call function 'ISU_METER_DATA_FORMAT_CHECK' exporting x_zwstand = &1 x_stanzvor = &2 x_stanznac = &3 importing y_i_format = &4 exceptions not_valid = 1 others = 2.
ISU_METER_IDDATA_TRANSFORM call function 'ISU_METER_IDDATA_TRANSFORM' exporting x_i_format = &1 x_stanzvor = &2 x_stanznac = &3 importing y_b_zwstand = &4 exceptions not_valid = 1 others = 2.
ISU_CALCULATE_WITH_METREAD call function 'ISU_CALCULATE_WITH_METREAD' exporting x_stanzvor = &1 x_stanznac = &2 x_meterread = &3 x_consumption = &4 x_operation = '+' x_reabld = &5 x_cumulating = &7 x_raise_msg = &8 importing y_result = &6 exceptions not_valid = 1 others = 2.
ISU_CALCULATE_WITH_METREAD call function 'ISU_CALCULATE_WITH_METREAD' exporting x_stanzvor = &1 x_stanznac = &2 x_meterread = &3 x_consumption = &4 x_operation = '-' x_reabld = &5 importing y_result = &6 exceptions not_valid = 1 others = 2.
ISU_CHECK_MR_BREAKPOINT call function 'ISU_CHECK_MR_BREAKPOINT' exporting x_bp = &1 importing y_break = f_break1 exceptions others = 1.
ISU_SEL_DATA_EXTRAPOLATION * call function module 'ISU_SEL_DATA_EXTRAPOLATION' * ******************************************************************** * &1 - table with EABLGs * &2 - japan flag * &3 - mr-date * &4 - real mr-date * &5 - real mr-time * §6 - MR reason * §7 - selection date * ******************************************************************** define determ_select_dat.
ISU_SEL_DATA_EXTRAPOLATION call function 'ISU_SEL_DATA_EXTRAPOLATION' exporting x_bp = &2 x_adat = &3 x_adatreal = &4 x_atimreal = &5 x_ablesgr = &6 tables xt_eablg = &1 changing y_sel_date = &7 exceptions general_error = 1 others = 2.
BALW_BAPIRETURN_GET2 call function 'BALW_BAPIRETURN_GET2' exporting type = &2 cl = &3 number = &4 par1 = &5 par2 = &6 par3 = &7 par4 = &8 importing return = return.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.