REMIG_MERGE_ERRORLOG is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Evaluates and summarizes error logs Using this report, you can summarize the logs from differenct import jobs in one error log...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter REMIG_MERGE_ERRORLOG 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: FIRMA = Company
Selection Text: FROMDATE = From (date)
Selection Text: FROMTIME = From (time)
Selection Text: OBJECT = Migration Object
Selection Text: TODATE = To (date)
Selection Text: TOTIME = To (time)
Title: Evaluation of Error Log of a Migration Object in a Log
Text Symbol: 001 = New Log Created with External Number
Text Symbol: 002 = No Log Generated
INCLUDE REMIGA01.
No SAP DATABASE tables are accessed within this REPORT code!
APPL_LOG_READ_DB_WITH_LOGNO call function 'APPL_LOG_READ_DB_WITH_LOGNO' * IMPORTING * NUMBER_OF_LOGS = tables lognumbers = ilog header_data = ibalhdr header_parameters = ibalhdrp messages = ibalm message_parameters = ibalmp.
MSG_PREPARE_CLOSE call function 'MSG_PREPARE_CLOSE' exporting x_msg_handle = msg_handle1 importing y_changed = f_changed exceptions not_found = 1 handle_invalid = 2 others = 3.
MSG_ACTION call function 'MSG_ACTION' exporting x_msg_handle = msg_handle1 x_action = modus importing * y_last_msg = yt_lognumbers = t_lognr exceptions action_not_supported = 1 handle_invalid = 2 not_found = 3 others = 4.
MSG_CLOSE call function 'MSG_CLOSE' exporting x_msg_handle = msg_handle1 exceptions not_found = 1 handle_invalid = 2 others = 3.
MSG_DISPLAY_LOGNUMBERS call function 'MSG_DISPLAY_LOGNUMBERS' tables tx_lognumbers = t_lnr exceptions not_found = 1 others = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
REMIG_MERGE_ERRORLOG - Evaluation of Error Log of a Migration Object in a Log REMIG_MERGE_ERRORLOG - Evaluation of Error Log of a Migration Object in a Log REMIG_MASS_RUN_MASTER_TOP - Include REMIG_MASS_RUN_MASTER_TOP REMIG_MASS_RUN_MASTER_F01 - Include REMIG_MASS_RUN_MASTER_F01 REMIG_MASS_RUN_MASTER - Include REMIG_MASS_RUN_MASTER REMIG_MASS_RUN_MASTER - Include REMIG_MASS_RUN_MASTER