RSIWB_REORG 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 RSIWB_REORG 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: DATE = Date:
Selection Text: RELEASE = Release:
Selection Text: H_N_REOR = - all folders
Selection Text: H_NR_REO = Select non-reorg. folders
Selection Text: H_C_REOR = Restart reorganization
Selection Text: H_AREA = Area:
Title: Reorganization
Text Symbol: 021 = Reorganization limited to the release for which it is defined.
Text Symbol: 020 = Only reorganize for this release.
Text Symbol: 019 = Release
Text Symbol: 018 = Area
Text Symbol: 012 = - all non-reorganized folders since
Text Symbol: 011 = Since date:
Text Symbol: 003 = Schedule reorganization
Text Symbol: 002 = The results of the report cannot be undone.
Text Symbol: 001 = This report starts a reorganization of the data.
Text Symbol: 017 = Description
Text Symbol: 016 = Restart reorganization
Text Symbol: 015 = - all folders
Text Symbol: 014 = - all non-reorganized folders (test run) since
Text Symbol: 013 = Folder sel. from
INCLUDE: IWBCONST, FSIWBF03, FSIWBF01.
INCLUDE: IWBCONST, FSIWBF03, FSIWBF01.
INCLUDE: IWBCONST, FSIWBF03, FSIWBF01.
No SAP DATABASE tables are accessed within this REPORT code!
IWB_AUTHORITY_CHECK CALL FUNCTION 'IWB_AUTHORITY_CHECK' EXPORTING AREA = AREA FUNCTION = C_AUTH_ADMIN EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
IW_C_CHECK_RELEASE CALL FUNCTION 'IW_C_CHECK_RELEASE' EXPORTING REL_ID = RELEASE EXCEPTIONS RELEASE_INVALID = 1 OTHERS = 2.
IWB_FOLDER_IA_QUERY CALL FUNCTION 'IWB_FOLDER_IA_QUERY' EXPORTING AREA = AREA IMPORTING ACTION = ACTION TABLES RESULT_FOLDERS = FOLDERS DEFAULT_RESPONSIBLE_SEL = DEFAULT_RESPONSIBLE_SEL.
IWB_FOLDER_QUERY CALL FUNCTION 'IWB_FOLDER_QUERY' EXPORTING AREA = H_AREA IMPORTING ERROR_MSG = ERROR_MSG TABLES RESULT = TMP_FOLDERS_1.
IWB_FOLDER_IA_SELECT CALL FUNCTION 'IWB_FOLDER_IA_SELECT' IMPORTING ACTION = ACTION TABLES INFO_OBJECTS = TMP_FOLDERS_1 SELECTED_FOLDERS = FOLDERS.
IWB_FOLDER_QUERY CALL FUNCTION 'IWB_FOLDER_QUERY' EXPORTING AREA = H_AREA IMPORTING ERROR_MSG = ERROR_MSG TABLES RESULT = TMP_FOLDERS_1.
IWB_FOLDER_IA_SELECT CALL FUNCTION 'IWB_FOLDER_IA_SELECT' IMPORTING ACTION = ACTION TABLES INFO_OBJECTS = TMP_FOLDERS_1 SELECTED_FOLDERS = FOLDERS.
IWB_REORG_FOLDERS_PLAN_BATCH CALL FUNCTION 'IWB_REORG_FOLDERS_PLAN_BATCH' EXPORTING TEST_MODUS = TEST_MODUS RELEASE = RELEASE TABLES FOLDERS = FOLDERS.
IW_C_AREA_GET CALL FUNCTION 'IW_C_AREA_GET' TABLES AREAS = H_AREAS.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING RETFIELD = C_RETFIELD WINDOW_TITLE = TEXT-018 VALUE_ORG = 'C' TABLES VALUE_TAB = H_AREAS FIELD_TAB = H_FIELD_TAB RETURN_TAB = H_RET_TAB.
SHOW_JOBSTATE CALL FUNCTION 'SHOW_JOBSTATE' EXPORTING JOBCOUNT = H_JOBCOUNT JOBNAME = G_IWB_REORG-JOB_NAME IMPORTING ABORTED = H_ABORTED FINISHED = H_FINISHED PRELIMINARY = H_PRELIMINARY READY = H_READY RUNNING = H_RUNNING SCHEDULED = H_SCHEDULED EXCEPTIONS JOBCOUNT_MISSING = 1 JOBNAME_MISSING = 2 JOB_NOTEX = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.