SAP Reports / Programs

REMIG_MERGE_ERRORLOG SAP ABAP Report - Evaluation of Error Log of a Migration Object in a Log







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT REMIG_MERGE_ERRORLOG. "Basic submit
SUBMIT REMIG_MERGE_ERRORLOG AND RETURN. "Return to original report after report execution complete
SUBMIT REMIG_MERGE_ERRORLOG VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT REMIG_MERGE_ERRORLOG

INCLUDE REMIGA01.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name REMIG_MERGE_ERRORLOG or its description.