GRACRTROLELOG is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter GRACRTROLELOG 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_AGR = Role
Selection Text: S_GENDT = Generation Date
Selection Text: S_GENTM = Generation Time
Selection Text: S_USER = Generated By
Selection Text: S_USR = User
Title: Report and Analytics
Text Symbol: 001 = Risk Terminator Generation Log
Text Symbol: 002 = Role/User
Text Symbol: 003 = Generated By
Text Symbol: 004 = Generation Date
Text Symbol: 005 = Generation Time
Text Symbol: 006 = Reason
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_EVENTS_GET * CALL FUNCTION 'REUSE_ALV_EVENTS_GET' * EXPORTING * i_list_type = 0 * IMPORTING * et_events = gt_events[].
REUSE_ALV_GRID_DISPLAY * CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' * EXPORTING * i_callback_program = gd_repid * i_callback_top_of_page = 'TOP-OF-PAGE' "see FORM * i_callback_user_command = 'USER_COMMAND' ** i_grid_title = outtext * is_layout = gd_layout * it_fieldcat = fieldcatalog[] ** it_special_groups = gd_tabgroup * it_events = gt_events * is_print = gd_prntparams * i_save = 'X' ** is_variant = z_template * TABLES * t_outtab = lt_irlog * EXCEPTIONS * program_error = 1 * others = 2.
REUSE_ALV_COMMENTARY_WRITE * CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' * EXPORTING * it_list_commentary = t_header.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.