RSL_WSP_FOLDER_UPLOAD 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 RSL_WSP_FOLDER_UPLOAD 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: G_DISP = Test Only (Output Log)
Title: Workspace Folder Upload
Text Symbol: TST = Execution Mode
Text Symbol: TIT = Insert Folders on the DB
Text Symbol: TAR = Appearance of Folder Structure/Substructure:
Text Symbol: SEP = Separator
Text Symbol: QUE = Allow consistently inserted folders to be written to the DB?
Text Symbol: QU1 = Allow folders to be written on the DB?
Text Symbol: POS = The following folders have been inserted into the hierarchy:
Text Symbol: OPT = Options
Text Symbol: NOF = No Folders
Text Symbol: NEG = The following folders could not be inserted:
Text Symbol: NDB = (not performed on the database)
Text Symbol: MSG = Messages for Upload
Text Symbol: FUL = Full Upload
Text Symbol: FNM = File Name
Text Symbol: FIL = File for Reading the Workspace Folders
Text Symbol: FFM = File Format
Text Symbol: EXE = With DB Updating
Text Symbol: DLR = With Deletion of Existing Folders
Text Symbol: DLA = Delta Upload
Text Symbol: DIO = Test Mode (Display Only)
Text Symbol: CSV = CSV Separator Separated
Text Symbol: 1ST = First Data Row
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSL_HNODE_LOAD_DIALOG * CALL FUNCTION 'RSL_HNODE_LOAD_DIALOG' * IMPORTING * e_file = g_file * e_file_type = g_file_type * e_field_separator = g_field_separator.
GUI_UPLOAD CALL FUNCTION 'GUI_UPLOAD' EXPORTING filename = g_fname * filetype = g_file_type10 has_field_separator = rs_c_false * HEADER_LENGTH = 0 * READ_BY_LINE = 'X' IMPORTING filelength = g_file_size * HEADER = TABLES data_tab = g_t_data EXCEPTIONS error_message = 1 OTHERS = 1.
RSL_HNODE_SAVE_VERSION CALL FUNCTION 'RSL_HNODE_SAVE_VERSION'.
RSD_NAME_CHECK CALL FUNCTION 'RSD_NAME_CHECK' EXPORTING i_objnm = g_s_hnode-nodename i_tlogo = cl_rsl_wsp=>n_c_tlogo_wsp_node EXCEPTIONS name_invalid = 1 OTHERS = 2.
RSDG_MSG_APPEND_TO_PROTOCOL CALL FUNCTION 'RSDG_MSG_APPEND_TO_PROTOCOL' CHANGING c_t_msg = g_t_msg_all.
RSL_HNODE_LOAD * CALL FUNCTION 'RSL_HNODE_LOAD' * EXPORTING * test_modus = rs_c_true * update_modus = g_upd_mode * keep_existing = g_keep_delr * TABLES * folder_insert = g_t_hnode_ins * folder_delete = g_t_hnode_del * folder_error = g_t_hnode_err * return = g_t_return * EXCEPTIONS * input_invalid = 1 * OTHERS = 2.
RSDC_SHOW_MESSAGES_POPUP CALL FUNCTION 'RSDC_SHOW_MESSAGES_POPUP' EXPORTING i_t_msg = g_t_msg_all i_txt = g_txt i_one_msg_direct = rs_c_false.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.