RSTR0006 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 RSTR0006 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ST11 - Display Developer Traces
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: RSTR0006: Display Developer Traces
Text Symbol: 051 = Unknown Error
Text Symbol: 050 = No authorization to create the file
Text Symbol: 049 = Other Error
Text Symbol: 048 = Error while positioning in the file
Text Symbol: 047 = Local storage medium is full
Text Symbol: 046 = Action is not supported by the GUI
Text Symbol: 045 = Control Error
Text Symbol: 044 = No GUI available
Text Symbol: 043 = You are not authorized to perform this action
Text Symbol: 042 = Error when writing file
Text Symbol: 041 = Canceled by user
Text Symbol: 040 = Could not open file
Text Symbol: 032 = Sorted by name
Text Symbol: 030 = Sorted by change time
Text Symbol: 022 = Directory
Text Symbol: 021 = Pattern
Text Symbol: 020 = Beg.of name
Text Symbol: 019 = Directory
Text Symbol: 018 = Unable to display this file
Text Symbol: 017 = Name:
Text Symbol: 016 = Last change
Text Symbol: 015 = Creator
Text Symbol: 014 = Length
Text Symbol: 013 = Name
Text Symbol: 012 = Changed
Text Symbol: 011 = Viewed
Text Symbol: 010 = Usable
Text Symbol: 009 = Error Message
Text Symbol: 008 = Error Number
Text Symbol: 007 = Can Be Used
Text Symbol: 006 = Mode
Text Symbol: 005 = Last Changed
Text Symbol: 004 = Created By
Text Symbol: 003 = Length
Text Symbol: 002 = Type
Text Symbol: 001 = Name
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
STRC_DISPLAY_WP_TRACE CALL FUNCTION 'STRC_DISPLAY_WP_TRACE' EXPORTING file = file_list-name dirname = file_list-dirname * LOADMASK = displaymask = 'All' EXCEPTIONS OTHERS = 2.
TH_DOWNLOAD_TEXTFILE CALL FUNCTION 'TH_DOWNLOAD_TEXTFILE' EXPORTING filename = path_name * DIRECTORY = with_dialog = 'X' * BUFLINES = 1000 * APPEND_FILEXT = 'X' * START_POSITION = 0 * END_POSITION = -1 IMPORTING act_filename = local_filename act_filesize = local_filesize EXCEPTIONS file_open_error = 1 user_canceled = 2 file_write_error = 3 no_authority = 4 error_no_gui = 5 cntl_error = 6 not_supported_by_gui = 7 disk_full = 8 position_error = 9 misc_error = 10 access_denied = 11 OTHERS = 12 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.