REMMAREADAPPLLOG is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This transaction is used to display one or more logs of the application log that belong together based on specific search criteria of enhanced message management...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 REMMAREADAPPLLOG into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
EMMALOG - Display Application Log
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: MSG_TXT = Display Messages in Txt Format
Selection Text: P_FLG = Suppress Other Messages
Selection Text: S_PROG = D .
Selection Text: S_DATE = D .
Selection Text: S_EXTNUM = D .
Selection Text: S_LOGNO = D .
Selection Text: S_MODE = D .
Selection Text: S_MSGID1 = D .
Selection Text: S_MSGID2 = D .
Selection Text: S_MSGNO1 = D .
Selection Text: S_MSGNO2 = D .
Selection Text: S_OBJECT = D .
Selection Text: S_SUBOBJ = D .
Selection Text: S_TCODE = D .
Selection Text: S_TIME = D .
Selection Text: S_USER = D .
Title: Display Application Log for Enhanced Message Management
Text Symbol: 001 = Only Display These Messages
Text Symbol: 002 = Messages To Be Suppressed
Text Symbol: 003 = Select either only messages to be displayed or messages to be suppressed
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
APPL_LOG_READ_DB_WITH_LOGNO CALL FUNCTION 'APPL_LOG_READ_DB_WITH_LOGNO' TABLES lognumbers = gt_lognr * HEADER_DATA = * HEADER_PARAMETERS = messages = lt_messages message_parameters = gt_message_params contexts = gt_message_context.
BAL_DSP_TXT_MSG_READ CALL FUNCTION 'BAL_DSP_TXT_MSG_READ' EXPORTING i_langu = sy-langu i_msgid = ls_messages-msgid i_msgno = ls_messages-msgno i_msgv1 = ls_messages-msgv1 i_msgv2 = ls_messages-msgv2 i_msgv3 = ls_messages-msgv3 i_msgv4 = ls_messages-msgv4 IMPORTING e_message_text = lv_message_text.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'BALM' * i_bypassing_buffer = 'X' CHANGING ct_fieldcat = it_fieldcat.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING is_layout = gs_layout it_fieldcat = it_fieldcat i_save = 'A' TABLES t_outtab = lt_messages EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'EMMA_APPLOG_MSGOUTPUT' * i_bypassing_buffer = 'X' CHANGING ct_fieldcat = it_fieldcat1.
BAL_DSP_TXT_MSG_READ CALL FUNCTION 'BAL_DSP_TXT_MSG_READ' EXPORTING i_langu = sy-langu i_msgid = ls_messages-msgid i_msgno = ls_messages-msgno i_msgv1 = ls_messages-msgv1 i_msgv2 = ls_messages-msgv2 i_msgv3 = ls_messages-msgv3 i_msgv4 = ls_messages-msgv4 IMPORTING e_message_text = ls_msgoutput-txtmsg.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING is_layout = gs_layout it_fieldcat = it_fieldcat1 i_save = 'A' TABLES t_outtab = lt_msgoutput EXCEPTIONS program_error = 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.
REMMAREADAPPLLOG - Display Application Log for Enhanced Message Management REMMAREADAPPLLOG - Display Application Log for Enhanced Message Management REMMAPROC - Program for Object Type EMMAPROC: EMMA: Process REMMAPROC - Program for Object Type EMMAPROC: EMMA: Process REMMAOLDMA - Load Old Mass Runs for Monitoring Mass Runs REMMAOLDMA - Load Old Mass Runs for Monitoring Mass Runs