_WSP_SEARCH_F01 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 _WSP_SEARCH_F01 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!
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'RSL_S_WSP_SEARCH' i_bypassing_buffer = rs_c_true CHANGING ct_fieldcat = l_t_fcat.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = 'RSL_WSP_SEARCH' i_callback_pf_status_set = 'ALV_CALLBACK_PF_STATUS_SET' i_callback_user_command = 'ALV_CALLBACK_USER_COMMAND' i_callback_top_of_page = 'ALV_CALLBACK_TOP_OF_PAGE' it_fieldcat = l_t_fcat it_sort = l_t_sort i_save = 'U' TABLES t_outtab = g_t_wsptxt.
RS_SELECTIONSCREEN_READ CALL FUNCTION 'RS_SELECTIONSCREEN_READ' EXPORTING program = sy-repid TABLES fieldvalues = l_t_rsselread.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'WSPNAME' dynpprog = sy-repid dynpnr = sy-dynnr dynprofield = l_dynprofield window_title = 'Workspace'(002) value = l_pattern value_org = 'S' display = space TABLES value_tab = l_t_value EXCEPTIONS OTHERS = 3.
RS_SELECTIONSCREEN_READ CALL FUNCTION 'RS_SELECTIONSCREEN_READ' EXPORTING program = sy-repid TABLES fieldvalues = l_t_rsselread.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'NODENAME' dynpprog = sy-repid dynpnr = sy-dynnr dynprofield = l_dynprofield window_title = 'Workspace Folder'(003) value = l_pattern value_org = 'S' display = space TABLES value_tab = l_t_value EXCEPTIONS OTHERS = 3.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'OBJVERS' dynpprog = sy-repid dynpnr = sy-dynnr dynprofield = l_dynprofield window_title = 'Version'(004) value_org = 'S' display = space TABLES value_tab = l_t_value EXCEPTIONS OTHERS = 3.
RS_SELECTIONSCREEN_READ CALL FUNCTION 'RS_SELECTIONSCREEN_READ' EXPORTING program = sy-repid TABLES fieldvalues = l_t_rsselread.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'AINX' dynpprog = sy-repid dynpnr = sy-dynnr dynprofield = l_dynprofield window_title = 'Analytischer Index'(011) value_org = 'S' display = space TABLES value_tab = l_t_value EXCEPTIONS OTHERS = 3.
RS_SELECTIONSCREEN_READ CALL FUNCTION 'RS_SELECTIONSCREEN_READ' EXPORTING program = sy-repid TABLES fieldvalues = l_t_rsselread.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'COPR' dynpprog = sy-repid dynpnr = sy-dynnr dynprofield = l_dynprofield window_title = 'CompositeProvider'(010) value = l_pattern value_org = 'S' display = space TABLES value_tab = l_t_value EXCEPTIONS OTHERS = 3.
RS_VARIANT_CONTENTS CALL FUNCTION 'RS_VARIANT_CONTENTS' EXPORTING report = l_report variant = l_variant execute_direct = rs_c_true TABLES valutab = l_t_selectoptions objects = l_t_params.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = g_t_alv_header * I_LOGO = * I_END_OF_LIST_GRID = * I_ALV_FORM = .
RSL_WSP_GUI_START CALL FUNCTION 'RSL_WSP_GUI_START' EXPORTING i_wspname = l_s_wsptxt-wspname.
RSL_WSP_GUI_START CALL FUNCTION 'RSL_WSP_GUI_START' EXPORTING i_wspname = l_s_wsptxt-wspname.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.