ABDBG_TRACE 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 ABDBG_TRACE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ABDBG_TRACE - Debugger Trace
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: P_DEL = Delete
Selection Text: SO_CLT = Cient
Selection Text: SO_CTXT = Context
Selection Text: SO_DATE = Date
Selection Text: SO_EXC = Exception
Selection Text: SO_RQUSR = Request User
Selection Text: SO_SRV = Server
Selection Text: SO_STYPE = Trace Subtype
Selection Text: SO_TID = Terminal ID
Selection Text: SO_TIME = Time
Selection Text: SO_TYPE = Trace Type
Selection Text: SO_USER = User
Title: Trace Reporting
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_DECIDE call function 'POPUP_TO_DECIDE' EXPORTING * defaultoption = '1' " Cursor position on first or second alternative textline1 = l_text text_option1 = 'Delete' ##NO_TEXT text_option2 = 'Cancel' ##NO_TEXT icon_text_option1 = 'ICON_DELETE' icon_text_option2 = 'ICON_CANCEL' titel = 'Delete trace entries' ##NO_TEXT start_column = 25 start_row = 6 " Start line of the dialog box cancel_display = '' " Start line of the dialog box IMPORTING answer = l_answer ##FM_OLDED.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = 'ABDBG_TRACE' i_callback_user_command = 'CALLBACK_USER_COMMAND' i_structure_name = 'ABDBG_TRACE_STRUC' i_callback_pf_status_set = 'CALLBACK_SET_PF_STATUS' is_layout = l_str_layout it_fieldcat = l_tab_fcat TABLES t_outtab =
EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'ABDBG_TRACE_STRUC' i_client_never_display = '' CHANGING ct_fieldcat = r_tab_fcat.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.