AFX_MONITOR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Monitoring and Logging Archiving Runs The archiving monitor can display information that the archiving subproc esses (analysis, write, delete, reload and pre-step) write in the applic ation log and the activity 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 AFX_MONITOR into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
AFX_MONITOR - Archiving 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: SO_TYPE = D Program Type
Selection Text: SO_RUSER = D User
Selection Text: SO_RTIME = D Start Time
Selection Text: SO_RSTAT = D Status
Selection Text: SO_RDATE = D Start Date
Selection Text: SO_PROG = D Program
Selection Text: SO_OBJCT = D Object Name
Selection Text: SO_EXTNR = D External ID
Selection Text: SO_ARMOD = D Archiving Mode
Selection Text: SO_APPLC = D Application Type
Selection Text: SO_ACTVT = D Activity ID
Title: Archiving Monitor
Text Symbol: 101 = Activity Log
Text Symbol: 100 = Archiving Monitor
Text Symbol: 003 = Restrictions
Text Symbol: 002 = Object
Text Symbol: 001 = Identification
INCLUDE AFX_GLOBAL_DATA_PUBLIC.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_STRUCTURE_NAME = 'AFX_STR_ACTVT' I_BYPASSING_BUFFER = 'X' CHANGING CT_FIELDCAT = G_TAB_FIELDCAT EXCEPTIONS INCONSISTENT_INTERFACE = 1 PROGRAM_ERROR = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = G_CALLBACK_PROGRAM I_GRID_TITLE = G_GRID_TITLE IT_EVENTS = G_TAB_ACTVT_EVENTS[] IS_LAYOUT = G_STR_ACTVT_LAYOUT IT_FIELDCAT = G_TAB_FIELDCAT I_SAVE = G_CON_SAVE TABLES T_OUTTAB = G_TAB_AR_ACTVT EXCEPTIONS PROGRAM_ERROR = 1.
AFX_AUTH_GLOBAL_CHECK CALL FUNCTION 'AFX_AUTH_GLOBAL_CHECK' EXPORTING I_ACTVT = G_CON_AUTH_ACTVT_SHOW I_ARCH_OBJ = G_CON_OBJECT_ALL I_LOG_OBJECT_EXC = G_LOG_OBJECT_EXC EXCEPTIONS NO_AUTH_FOUND = 1 NO_AUTH_VALID = 2 NO_PROFILES_FOUND = 3 INVALID_FIELDS = 4 INVALID_PARAMETER_COUNT = 5 DESTROYED_AUTH = 6 OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
AFX_MONITOR - Archiving Monitor AFX_MONITOR - Archiving Monitor AFX_GLOBAL_MESSAGES_PUBLIC - FORM Routines for Message Processing AFX_GLOBAL_LOGGING_PUBLIC - FORM Routines for Archiving Logging AFX_GLOBAL_DATA_PUBLIC - Global Data and Constants AFX_GLOBAL_ARCHSTAT_PUBLIC - Global Constants for Archiving Status