RELUPLD1 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 RELUPLD1 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: Program RELUPLD1: Simulatio of Uploads
INCLUDE: EMSG.
No SAP DATABASE tables are accessed within this REPORT code!
ISU_DB_EABL_SELECT_UNIT_PRE call function 'ISU_DB_EABL_SELECT_UNIT_PRE' exporting x_adatsoll = adatsoll x_adatsollvon = fromdate x_adatsollbis = duedate x_ablesgr = ablesgr importing y_count = l_count tables ty_eabl = lt_eabl tx_ableinh = rang_ableinh exceptions not_found = 1 system_error = 2 not_qualified = 3 invalid_interval = 4 path_invalid = 5 date_invalid = 6 internal_error = 7 others = 8.
MSG_ACTION call function 'MSG_ACTION' exporting x_action = co_msg_log_off.
ISU_DB_EABL_LAST call function 'ISU_DB_EABL_LAST' exporting x_equnr = xt_eabl-equnr x_zwnummer = xt_eabl-zwnummer x_adat = xt_eabl-adatsoll x_atim = xt_eabl-atim importing y_eabl = lt_eabl exceptions not_found = 1 system_error = 2 not_qualified = 3 adat_to_old = 4 others = 5.
MSG_ACTION call function 'MSG_ACTION' exporting x_action = co_msg_log_on.
MSG_ACTION call function 'MSG_ACTION' exporting x_action = co_msg_log_off.
ISU_METER_DBDATA_TRANSFORM call function 'ISU_METER_DBDATA_TRANSFORM' exporting x_v_format = lt_eabl-v_zwstand x_n_format = lt_eabl-n_zwstand x_stanzvor = lt_eabl-stanzvor x_stanznac = '0' importing y_b_zwstand = wa_eablu-zwstand exceptions not_valid = 1 others = 2.
MSG_ACTION call function 'MSG_ACTION' exporting x_action = co_msg_log_on.
ISU_S_METERREAD_CHANGE call function 'ISU_S_METERREAD_CHANGE' exporting x_upd_online = 'X' x_no_dialog = 'X' x_adatsoll = x_adatsoll x_ablesgr = x_ablesgr changing x_auto = l_auto exceptions not_found = 1 foreign_lock = 2 general_fault = 3 input_error = 4 cancelled = 5 invalid_key = 6 incomplete = 7 others = 8.
ISU_MASTER_DATA_RESET call function 'ISU_MASTER_DATA_RESET' exceptions others = 1.
MSG_STATUS_APPL_LOG call function 'MSG_STATUS_APPL_LOG' exporting x_appl_log = xy_parm-appl_log importing y_exist = exist y_msg_handle = xy_handle exceptions others = 1.
MSG_CLOSE call function 'MSG_CLOSE' exporting x_msg_handle = xy_handle exceptions not_found = 1 handle_invalid = 2 others = 3.
MSG_OPEN call function 'MSG_OPEN' exporting x_no_dialog = 'X' x_log = 'X' x_next_msg = 'X' importing y_msg_handle = xy_handle changing xy_parm = xy_parm exceptions failed = 1 subs_invalid = 2 log_invalid = 3 others = 4.
MSG_STATUS_HANDLE call function 'MSG_STATUS_HANDLE' exporting x_msg_handle = x_handle importing yt_count = msg_table.
MSG_ACTION call function 'MSG_ACTION' exporting x_msg_handle = x_handle x_action = co_msg_save.
MSG_CLOSE call function 'MSG_CLOSE' exporting x_msg_handle = x_handle.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.