DMC_LIST_ACTIVITY_RECORDS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report is used to display a list of activity records...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 DMC_LIST_ACTIVITY_RECORDS 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: S_ACTION = D Activity Type
Selection Text: S_DATE = Time stamp start
Selection Text: S_EXTID = D External Identific.
Selection Text: S_INVTP = D Invocation Type
Selection Text: S_JOBNM = D Job name
Selection Text: S_ORG = mass transf. / subproj.
Selection Text: S_STATUS = D Activity Status
Selection Text: S_USER = D User
Title: List of activity records
Text Symbol: 001 = org. unit
Text Symbol: 002 = additional info
Text Symbol: 003 = Timestamp Start
Text Symbol: 004 = Timestamp End
Text Symbol: 005 = Timestamp Update
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_structure_name = 'DMC_ACT_REC' changing ct_fieldcat = gt_fieldcat exceptions inconsistent_interface = 1 program_error = 2 others = 0.
REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' exporting i_program_name = sy-repid i_structure_name = 'DMC_ACT_REC_LOG' changing ct_fieldcat = gt_fieldcat exceptions inconsistent_interface = 1 program_error = 2 others = 0.
REUSE_ALV_HIERSEQ_LIST_DISPLAY call function 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' exporting * I_INTERFACE_CHECK = ' ' * I_CALLBACK_PROGRAM = * I_CALLBACK_PF_STATUS_SET = ' ' * I_CALLBACK_USER_COMMAND = ' ' * IS_LAYOUT = it_fieldcat = gt_fieldcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' * I_SAVE = ' ' * IS_VARIANT = * IT_EVENTS = * IT_EVENT_EXIT = i_tabname_header = 'GT_ACT_REC' i_tabname_item = 'GT_ACT_REC_LOG' * i_structure_name_header = 'DMC_ACT_REC' * i_structure_name_item = 'DMC_ACT_REC_LOG' is_keyinfo = gs_keyinfo * IS_PRINT = * IS_REPREP_ID = * I_BYPASSING_BUFFER = * I_BUFFER_ACTIVE = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = tables t_outtab_header = gt_act_rec t_outtab_item = gt_act_rec_log exceptions others = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.