SAP Reports / Programs | Basis Components | ABAP Runtime Environment | Syntax, Compiler, Runtime(BC-ABA-LA) SAP BC

RSTPDAADMIN_TRACE SAP ABAP Report - TPDA: Management of Error Log File of New Debugger







RSTPDAADMIN_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 RSTPDAADMIN_TRACE into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RSTPDAADMIN_TRACE. "Basic submit
SUBMIT RSTPDAADMIN_TRACE AND RETURN. "Return to original report after report execution complete
SUBMIT RSTPDAADMIN_TRACE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: WITH_LOC = With Local Applic. Servers?
Title: TPDA: Management of Error Log File of New Debugger
Text Symbol: CON = Conenction to Server Not Possible
Text Symbol: QU1 = Do you really want to delete the trace files?


INCLUDES used within this REPORT RSTPDAADMIN_TRACE

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_green_light IMPORTING RESULT = green_light.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_red_light info = 'Keine Verbindung zum Server möglich'(con) IMPORTING RESULT = red_light.

TH_SERVER_LIST CALL FUNCTION 'TH_SERVER_LIST' TABLES list = l_imsxxlist_it EXCEPTIONS no_server_list = 1 OTHERS = 2.

TPDA_GET_ERROR_LOG_ATTR CALL FUNCTION 'TPDA_GET_ERROR_LOG_ATTR' DESTINATION -name EXPORTING p_application_id = applid IMPORTING p_exist = l_exist p_size = l_size p_error_file = l_error_file EXCEPTIONS OTHERS = 1.

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = 'Wollen Sie die Trace Dateien wirklich löschen ?'(qu1) IMPORTING answer = l_answer EXCEPTIONS text_not_found = 1 OTHERS = 2.

TPDA_DELETE_ERROR_LOG CALL FUNCTION 'TPDA_DELETE_ERROR_LOG' DESTINATION -server EXPORTING p_application_id = applid importing p_error_file = l_error_file CHANGING p_rc = l_rc EXCEPTIONS OTHERS = 1.

TPDA_READ_ERROR_LOG CALL FUNCTION 'TPDA_READ_ERROR_LOG' DESTINATION -server EXPORTING p_application_id = applid IMPORTING p_log_it = l_trace_list_it.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RSTPDAADMIN_TRACE or its description.