RELADB02 is a standard Executable ABAP Report 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 RELADB02 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.
Selection Text: XADSOLL = Scheduled Meter Reading Date
Selection Text: XABRVORG = Billing Transaction
Selection Text: XABRDATS = Scheduled Billing Date
Selection Text: SEL_ABL = Installation
Title: MR Status of Devices: View
Text Symbol: 050 = Inconsistent Data
Text Symbol: 047 = B.Part.Txt
Text Symbol: 046 = Relevant to Met.Read
Text Symbol: 045 = Relevant to Billing
Text Symbol: 044 = Rg.Cat.Txt
Text Symbol: 043 = Register Cat. Text
Text Symbol: 042 = MR St.Txt.
Text Symbol: 041 = MR Status Text
Text Symbol: 040 = No devices allocated to installation
Text Symbol: 038 = No order
Text Symbol: 037 = Neutral
Text Symbol: 036 = Ind. val.
Text Symbol: 035 = Rel. agent
Text Symbol: 034 = BlkdAgent
Text Symbol: 033 = BlckdAuto.
Text Symbol: 032 = Billable
Text Symbol: 031 = Order crtd
Text Symbol: 030 = Other reg.
Text Symbol: 029 = Cumulative CR
Text Symbol: 028 = Balancing CR
Text Symbol: 027 = Reset. reg.
Text Symbol: 026 = Balancing DR
Text Symbol: 025 = Cumulative DR
Text Symbol: 017 = Business Partner
Text Symbol: 016 = Contract
Text Symbol: 015 = Installation
Text Symbol: 011 = MR Status
Text Symbol: 010 = PopCode
Text Symbol: 009 = MR date
Text Symbol: 008 = Val. pt
Text Symbol: 007 = MRRel.
Text Symbol: 006 = BRel.
Text Symbol: 004 = Register cat.
INCLUDE: IESTREAD, "INTERNE TABELLEN FÜR ISTRUC
INCLUDE: IE00FLAG.
No SAP DATABASE tables are accessed within this REPORT code!
ISU_S_PARTNER_DISPLAY call function 'ISU_S_PARTNER_DISPLAY' exporting x_partner = ifkkvkp-gpart.
ISU_S_CONTRACT_DISPLAY call function 'ISU_S_CONTRACT_DISPLAY' exporting x_vertrag = iever-vertrag.
ISU_S_INSTLN_DISPLAY call function 'ISU_S_INSTLN_DISPLAY' exporting x_anlage = wa_anlage-anlage x_keydate = xabrdats x_no_change = 'X' x_no_other = 'X'.
ISU_S_EGER_DISPLAY call function 'ISU_S_EGER_DISPLAY' exporting x_stichtag = xabrdats x_equnr = help_equnr.
ISU_STRUCTURE_READ call function 'ISU_STRUCTURE_READ' "Erzeugt istruc exporting x_is_complete = ' ' x_actual = ' ' x_structure = 'X' x_ab = helpdate x_bis = helpdate x_text = ' ' x_language = sy-langu x_progress_display = ' ' tables xt_path = ipath yt_struc = istruc t_eanl = ieanl t_easts = ieasts t_eger = ieger t_etdz = ietdz t_ever = iever t_fkkvkp = ifkkvkp exceptions path_invalid = 1 date_invalid = 2 selection_failed = 3 others = 4.
ISU_DB_ETRG_SINGLE call function 'ISU_DB_ETRG_SINGLE' exporting x_anlage = ieanl-anlage x_abrdats = xabrdats x_abrvorg = xabrvorg importing y_etrg = ietrg exceptions not_found = 1 others = 2.
ISU_ABRVORG_ABLESGR_TRANSFORM call function 'ISU_ABRVORG_ABLESGR_TRANSFORM' exporting x_abrvorg = xabrvorg x_actual = space importing y_ablesgr = wa_anlage-ablesgr exceptions others = 1.
ISU_DB_EABL_SELECT_BILL_ORDER call function 'ISU_DB_EABL_SELECT_BILL_ORDER' exporting x_anlage = ieanl-anlage x_abrvorg = xabrvorg x_adatsoll = ietrg-adatsoll tables ty_eabl = wa_anlage-ieabl exceptions not_found = 1 system_error = 2 not_qualified = 3 others = 4.
FKK_PARTNER_HEADER_DISPLAY call function 'FKK_PARTNER_HEADER_DISPLAY' exporting x_partner = ifkkvkp-gpart importing y_text1 = partner_text exceptions not_found = 1 others = 2.
ISU_DB_EGER_FORALL_LOGIKNR call function 'ISU_DB_EGER_FORALL_LOGIKNR' tables t_v_eger = lt_eger exceptions not_found = 1 others = 2.
ISU_DB_ETDZ_FORALL_LOGIKZW call function 'ISU_DB_ETDZ_FORALL_LOGIKZW' tables t_etdz = lt_etdz exceptions not_found = 1 others = 2.
ISU_S_PARTNER_DISPLAY call function 'ISU_S_PARTNER_DISPLAY' exporting x_partner = lt_adb02-partner exceptions not_found = 1 general_fault = 2 not_authorized = 3 cancelled = 4 others = 5.
ISU_S_CONTRACT_DISPLAY call function 'ISU_S_CONTRACT_DISPLAY' exporting x_vertrag = lt_adb02-vertrag exceptions not_found = 1 key_invalid = 2 system_error = 3 others = 4.
ISU_S_INSTLN_DISPLAY call function 'ISU_S_INSTLN_DISPLAY' exporting x_anlage = lt_adb02-anlage x_keydate = sy-datum x_upd_online = 'X' x_no_change = 'X' x_no_other = 'X' exceptions not_found = 1 general_fault = 2 not_authorized = 3 cancelled = 4 others = 5.
ISU_S_EGER_DISPLAY call function 'ISU_S_EGER_DISPLAY' exporting x_equnr = lt_adb02-equnr exceptions object_not_found = 1 not_authorized = 2 others = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.