RMPAALRTMONITOR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Monitor the alerts sent from applications making use of MPA...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 RMPAALRTMONITOR into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ALRTMON - Alert Monitor
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: S_USER = User Name
Selection Text: S_STATUS = Status of Alert
Selection Text: S_EXTREC = External Recipient Address
Selection Text: S_ALRTID = Alert ID
Title: Alert Monitor
Text Symbol: F05 = Recipient Details
Text Symbol: F04 = Alert Details
Text Symbol: F03 = Expiry Times
Text Symbol: F02 = Creation
Text Symbol: F01 = Time Restrictions
Text Symbol: ESC = Escalated
Text Symbol: DLV = Delivered
Text Symbol: CNF = Confirmed
Text Symbol: 026 = Alert ID
Text Symbol: 025 = External Alert ID
Text Symbol: 024 = Alert Monitor
Text Symbol: 023 = Alert Id:
Text Symbol: 022 = No Alerts found
Text Symbol: 021 = Message Sent
Text Symbol: 020 = Accepted by
Text Symbol: 019 = Accepted at
Text Symbol: 018 = Accepted on
Text Symbol: 017 = Alert Status
Text Symbol: 016 = Expiry Time
Text Symbol: 015 = Expiry Date
Text Symbol: 014 = Created by
Text Symbol: 013 = Created at
Text Symbol: 012 = Created on
Text Symbol: 011 = Read
Text Symbol: 010 = Rejected
Text Symbol: 009 = Accepted
Text Symbol: 008 = Reply Message
Text Symbol: 007 = Replied at
Text Symbol: 006 = Replied on
Text Symbol: 005 = Reply Status
Text Symbol: 004 = External Recipient
Text Symbol: 003 = Recipient
Text Symbol: 002 = To (Date/Time)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_FIELDCATALOG_MERGE * CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' * EXPORTING * i_program_name = sy-repid * i_internal_tabname = 'GT_ALERTS' * i_inclname = sy-repid * CHANGING * ct_fieldcat = it_fieldcat * EXCEPTIONS * inconsistent_interface = 1 * program_error = 2 * OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = sy-repid i_callback_user_command = 'USER_COMMAND' i_callback_top_of_page = 'TOP_OF_PAGE' is_layout = ls_layout it_fieldcat = it_fieldcat TABLES t_outtab = gt_alerts 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.