RSSORE00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The program deletes data of documents that no longer have a connection to a parent object...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RSSORE00 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: Reorganization
Text Symbol: 001 = For document types
Text Symbol: 002 = but not
Text Symbol: 003 = For the years from
Text Symbol: 004 = and
Text Symbol: 005 = to
Text Symbol: 006 = Number from to
Text Symbol: 007 = Run with database change
Text Symbol: 020 = And comm. interface
Text Symbol: 040 = Program ended successfully
Text Symbol: A01 = Year
Text Symbol: A02 = ID: Year
Text Symbol: A03 = ID: Type
Text Symbol: A04 = Check
Text Symbol: A05 = Number
Text Symbol: C01 = Please start program RSSOCVPC first.
Text Symbol: C02 = You can then start the reorganization.
Text Symbol: T01 = BCI Reorganization
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GET_PRINT_PARAMETERS CALL FUNCTION 'GET_PRINT_PARAMETERS' EXPORTING no_dialog = 'X' list_text = 'BCI reorganisation'(T01) mode = 'CURRENT' "note 728063 IMPORTING out_parameters = g_pri out_archive_parameters = g_arc.
SDOK_LOIO_DELETE_WITH_PHIOS call function 'SDOK_LOIO_DELETE_WITH_PHIOS' exporting object_id = loio_object client = sy-mandt exceptions OTHERS = 1.
ADDR_SO_KEY_GET_KEY CALL FUNCTION 'ADDR_SO_KEY_GET_KEY' TABLES key_table = gt_address EXCEPTIONS internal_error = 1 no_entries_in_key_table = 2 OTHERS = 3.
ADDR_REFERENCE_DELETE call function 'ADDR_REFERENCE_DELETE' "#EC * exporting address_number = ls_address-addrnumber address_reference = lp_addr_ref exceptions address_not_exist = 1 internal_error = 2 parameter_error = 3 others = 4.
ADDR_MEMORY_SAVE call function 'ADDR_MEMORY_SAVE' "#EC * exceptions address_number_missing = 1 person_number_missing = 2 internal_error = 3 database_error = 4 reference_missing = 5 others = 6.
ADDR_MEMORY_CLEAR call function 'ADDR_MEMORY_CLEAR' "#EC * exporting force = 'X' exceptions unsaved_data_exist = 1 internal_error = 2 others = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.