RSARC_DESTRUCTION_IMPL10 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 RSARC_DESTRUCTION_IMPL10 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!
BP_JOB_READ CALL FUNCTION 'BP_JOB_READ' EXPORTING job_read_jobcount =
-jobcount job_read_jobname = -jobname job_read_opcode = btc_read_jobhead_only IMPORTING job_read_jobhead = ls_tbtcjob EXCEPTIONS job_doesnt_exist = 1 job_doesnt_have_steps = 2 OTHERS = 3.
BP_JOB_MANAGEMENT CALL FUNCTION 'BP_JOB_MANAGEMENT' EXPORTING jobselect_dialog = btc_no joblist_opcode = btc_joblist_edit TABLES joblist = lt_joblist EXCEPTIONS refresh_list_required = 1 OTHERS = 2.
BAL_GLB_MEMORY_REFRESH CALL FUNCTION 'BAL_GLB_MEMORY_REFRESH' EXCEPTIONS OTHERS = 1.
BAL_DB_SEARCH CALL FUNCTION 'BAL_DB_SEARCH' EXPORTING i_s_log_filter = ls_bal_s_lfil IMPORTING e_t_log_header = lt_balhdr EXCEPTIONS OTHERS = 0.
BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_log_header = lt_balhdr * i_do_not_load_messages = 'X' IMPORTING e_t_log_handle = lt_log_handle EXCEPTIONS OTHERS = 0.
BAL_ARCHIVE_SEARCH CALL FUNCTION 'BAL_ARCHIVE_SEARCH' EXPORTING i_s_log_filter = ls_bal_s_lfil IMPORTING e_s_arcdata = ls_bal_s_arcdata EXCEPTIONS OTHERS = 0.
BAL_ARCHIVE_LOAD CALL FUNCTION 'BAL_ARCHIVE_LOAD' EXPORTING i_s_arcdata = ls_bal_s_arcdata IMPORTING e_t_log_handle = lt_log_handle EXCEPTIONS OTHERS = 0.
BAL_DSP_PROFILE_SINGLE_LOG_GET CALL FUNCTION 'BAL_DSP_PROFILE_SINGLE_LOG_GET' IMPORTING e_s_display_profile = ls_display_profile.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ls_display_profile i_t_log_handle = lt_log_handle EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.