TERM_SHOW_LOG 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 TERM_SHOW_LOG 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.
Title: Program TERM_SHOW_LOG
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
STERM_AUTH_CHECK_OWN_AUTHORITY CALL FUNCTION 'STERM_AUTH_CHECK_OWN_AUTHORITY' EXPORTING i_langu = '*' IMPORTING e_auth = gl_auth * E_WRITER = * E_TRANS_FOLLOW = * E_TRANS_DE_EN = * E_SUPER_FOLLOW = * E_SUPER_DE_EN = * E_ADMIN = EXCEPTIONS permission_denied = 1 internal_error = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_structure_name = c_alv_struct * i_grid_title = * title = title is_layout = layout i_save = 'A' is_variant = variant TABLES * t_outtab = gt_tms_full t_outtab = lt_log 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.