RSGS_WEBMAP_EXPORT 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 RSGS_WEBMAP_EXPORT 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.
Title: Export of Tables for Testing WEBMAP
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RRW3_PROCESS_CMD CALL FUNCTION 'RRW3_PROCESS_CMD' EXPORTING I_PAGENO = l_pageno IMPORTING E_PAGENO = l_pageno E_RETURN_CODE = l_return_code TABLES I_T_PARAMETERS = l_t_parameter.
RRW3_PROCESS_CMD CALL FUNCTION 'RRW3_PROCESS_CMD' EXPORTING I_PAGENO = l_pageno IMPORTING E_PAGENO = l_pageno E_RETURN_CODE = l_return_code TABLES I_T_PARAMETERS = l_t_parameter.
RRW3_GET_CHART_20A_1 CALL FUNCTION 'RRW3_GET_CHART_20A_1' EXPORTING I_PAGENO = l_pageno IMPORTING E_RETURN_CODE = l_return_code TABLES I_T_PARAMETERS = l_t_parameter E_T_VAR = L_T_VAR E_T_DIM = L_T_DIM E_T_ATR = L_T_ATR E_T_MEM = L_T_MEM E_T_CEL = L_T_CEL E_T_PRPTYS = L_T_PRPTYS E_T_HRY_TYPES = L_T_HRY_TYPES E_T_FAC = L_T_FAC E_T_CON = L_T_CON E_T_CELL_DATA = L_SX_DATA-CELL_DATA E_T_AXIS_INFO = L_SX_DATA-AXIS_INFO E_T_AXIS_CHARS = L_SX_DATA-AXIS_CHARS E_T_AXIS_ATTRS = L_SX_DATA-AXIS_ATTRS E_T_AXIS_DATA_COLUMNS = L_SX_DATA-AXIS_DATA_COLUMNS E_T_AXIS_DATA_ROWS = L_SX_DATA-AXIS_DATA_ROWS E_T_AXIS_DATA_SLICER = L_SX_DATA-AXIS_DATA_SLICER E_T_ATTR_DATA_ROWS = L_SX_DATA-ATTR_DATA_ROWS E_T_ATTR_DATA_COLUMNS = L_SX_DATA-ATTR_DATA_COLUMNS E_T_NAMED_ATTRIBUTES = L_T_NAMED_ATTR E_T_CUSTOM_ATTRIBUTES = L_T_CUSTOM_ATTR E_T_HTML = L_T_HTML E_T_MIME = L_T_MIME e_t_iobj_shapefile = l_t_iobj_shapefile.
DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING tabname = i_table_name IMPORTING x030l_wa = l_s_header TABLES x031l_tab = l_t_nametab EXCEPTIONS not_found = 1 OTHERS = 2.
WS_DOWNLOAD * CALL FUNCTION 'WS_DOWNLOAD' * EXPORTING * filename = l_filename * filetype = 'ASC' * mode = l_mode * TABLES * data_tab = l_t_line * EXCEPTIONS * file_open_error = 4.
WS_DOWNLOAD * CALL FUNCTION 'WS_DOWNLOAD' * EXPORTING * filename = l_filename * filetype = 'DAT' * mode = 'A' * TABLES * data_tab = i_t_container * fieldnames = l_t_fields.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.