RDDPROTQ 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 the general log display program of the Workbench Organizer...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 RDDPROTQ 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: PV_DIR_T = Directory type (P, U, or T)
Selection Text: PV_KORR = Supp. Pkg.(empty: whole queue)
Selection Text: PV_SYSID = Target system (empty: all)
Title: Queue Logs
Text Symbol: TTL = Support/Installation Package
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TR_LOG_OVERVIEW_REQUEST CALL FUNCTION 'TR_LOG_OVERVIEW_REQUEST' EXPORTING iv_trkorr = ls_trkorr-trkorr iv_dir_type = pv_dir_t iv_detailed_chronology = space iv_target_system = pv_sysid EXCEPTIONS e_wrong_call = 1 OTHERS = 99.
OCS_GET_LATEST_Q CALL FUNCTION 'OCS_GET_LATEST_Q' EXPORTING iv_ocs_tool = lv_tool IMPORTING et_pat01 = lt_pat01 EXCEPTIONS no_queue_found = 1 OTHERS = 99.
TR_LOG_OVERVIEW_REQUESTS CALL FUNCTION 'TR_LOG_OVERVIEW_REQUESTS' EXPORTING it_trkorrs = pt_trkorrs iv_dir_type = pv_dir_t is_settings = ls_settings is_sort_description = ls_sort_desc iv_first_node_text = text-ttl * iv_prog_top_of_page = 'RDDPROTQ' * iv_form_top_of_page = 'LOG_OVERVIEW_TOPOFPAGE' EXCEPTIONS e_wrong_call = 1 OTHERS = 99.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.