RELCORRLIST_OLD 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 RELCORRLIST_OLD 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: ABLEINH = Meter reading unit
Selection Text: ABLESGR = Meter reading reason
Selection Text: ADATSOLL = Scheduled Meter Reading Date
Selection Text: PORTION = Portion
Title: ALV list for Implausible Results
INCLUDE EMSG.
INCLUDE IEE17CON.
No SAP DATABASE tables are accessed within this REPORT code!
ISU_S_METERREAD_CHANGE call function 'ISU_S_METERREAD_CHANGE' exporting x_upd_online = 'X' x_action = co_coriv x_ableinh = ablein exceptions not_found = 1 foreign_lock = 2 not_authorized = 3 others = 99.
ISU_DB_EABL_SELECT_UNIT_ENT call function 'ISU_DB_EABL_SELECT_UNIT_ENT' exporting x_valid = ' ' x_invalid = 'X' tables ty_eabl = lt_eabl ty_eablg = lt_eablg tx_ableinh = lt_ableinh tx_adatsoll = lt_adatsoll tx_ablesgr = lt_ablesgr exceptions others = 99.
REUSE_ALV_LIST_DISPLAY call function 'REUSE_ALV_LIST_DISPLAY' exporting i_callback_program = 'RELCORRLIST_OLD' i_structure_name = 'EABL_ALV' is_variant = gs_variant i_save = 'A' tables t_outtab = lt_eabl_alv.
ISU_DB_TE422_SELECT_IN_RANGE call function 'ISU_DB_TE422_SELECT_IN_RANGE' exporting x_maxrows = '2000000' tables ty_te422 = lt_te422 tx_portion = lt_portion exceptions others = 99.
ISU_DB_EGER_SELECT_CUTOFFDATE call function 'ISU_DB_EGER_SELECT_CUTOFFDATE' exporting x_equnr = xy_eabl_alv-equnr x_date = xy_eabl_alv-adat x_actual = ' ' x_read_egerr = 'X' importing y_eger = l_eger exceptions not_found = 1 system_error = 2 others = 3.
ISU_METER_DBDATA_TRANSFORM call function 'ISU_METER_DBDATA_TRANSFORM' exporting x_v_format = x_eabl-v_zwstand x_n_format = x_eabl-n_zwstand x_stanzvor = x_eabl-stanzvor x_stanznac = x_eabl-stanznac importing y_b_zwstand = xy_eabl_alv-zwstand exceptions not_valid = 1 others = 2.
ISU_DB_EANL_SELECT call function 'ISU_DB_EANL_SELECT' exporting x_anlage = xy_eabl_alv-anlage x_keydate = x_eabl-adatsoll importing y_v_eanl = l_eanl exceptions not_found = 1 system_error = 2 invalid_date = 3 others = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.