ST20_SST_WORKBENCH is a standard ABAP INCLUDE 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 ST20_SST_WORKBENCH 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_NAVIGATION_BREAK CALL FUNCTION 'RS_NAVIGATION_BREAK'.
RS_TOOL_ACCESS CALL FUNCTION 'RS_TOOL_ACCESS' EXPORTING operation = 'SHOW' object_name = s_dynnr object_type = 'DYNP' enclosing_object = s_repid * in_new_window = on EXCEPTIONS not_executed = 01 invalid_object_type = 02.
RS_NAVIGATION_BREAK_RESET CALL FUNCTION 'RS_NAVIGATION_BREAK_RESET'.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = i_dynid.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = t.
IMPORT_DYNPRO CALL FUNCTION 'IMPORT_DYNPRO' DESTINATION source_system EXPORTING dyname = sst_wa-program dynumb = sst_wa-dynnr IMPORTING header = sst_wa-h TABLES ftab = sst_wa-f EXCEPTIONS dylanguage_invalid = 1 dylanguage_not_inst = 2 dyname_invalid = 3 dynproload_not_found = 4 dynumb_invalid = 5 ftab_invalid = 6 header_invalid = 7 internal_error = 8 no_dynpro = 9 no_ftab_row = 10 no_memory = 11 request_invalid = 12 OTHERS = 13.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = t.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = t.
RS_SCRP_GET_ALL_DIMENSIONS CALL FUNCTION 'RS_SCRP_GET_ALL_DIMENSIONS' EXPORTING dynp_field =
IMPORTING line = dummy column = dummy length = dummy vis_length = a-width hight = a-height relative_positions = rp.
RS_SCRP_GET_ALL_DIMENSIONS CALL FUNCTION 'RS_SCRP_GET_ALL_DIMENSIONS' EXPORTING dynp_field = f IMPORTING line = line column = column length = length vis_length = vlength hight = height relative_positions = relative_positions.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.