RIWP_TOOL_07 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use the tool report to display the details (result of the analysis) of an audit package...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 RIWP_TOOL_07 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: P_DSO = DSOs
Selection Text: P_ICUBE = InfoCubes
Selection Text: P_IOBJ = InfoObjects
Selection Text: P_ISET = InfoSets
Selection Text: P_WP = D .
Title: Details of an Audit Package
Text Symbol: 001 = Attributes of the registered InfoObjects
Text Symbol: 002 = Attributes of the registered DSOs
Text Symbol: 003 = Attributes of the registered InfoCubes
Text Symbol: 004 = Attributes of the registered InfoSets
Text Symbol: 005 = Definition Tables
Text Symbol: 006 = Compounds
Text Symbol: 007 = Attributes
Text Symbol: 008 = Keyfields
Text Symbol: 009 = Units
Text Symbol: 010 = InfoObjects
Text Symbol: 011 = Tables
Text Symbol: 012 = Conditions
Text Symbol: TIT = Evaluate
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_callback_program = 'RIWP_TOOL_07' i_callback_pf_status_set = 'SET_PF_STATUS' i_callback_user_command = 'USER_COMMAND' i_structure_name = 'IWP_S_IOBJ_INTERFACE' i_grid_title = 'Attributes of the registered InfoObjects'(001) is_layout = ls_layout TABLES t_outtab = gt_iobj EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_callback_program = 'RIWP_TOOL_07' i_callback_pf_status_set = 'SET_PF_STATUS' i_callback_user_command = 'USER_COMMAND' i_structure_name = 'IWP_S_DSO_INTERFACE' i_grid_title = 'Attributes of the registered DSOs'(002) is_layout = ls_layout TABLES t_outtab = gt_dso EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_callback_program = 'RIWP_TOOL_07' i_callback_pf_status_set = 'SET_PF_STATUS' i_callback_user_command = 'USER_COMMAND' i_structure_name = 'IWP_S_ICUBE_INTERFACE' i_grid_title = 'Attributes of the registered InfoCubes'(003) is_layout = ls_layout TABLES t_outtab = gt_icube EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_callback_program = 'RIWP_TOOL_07' i_callback_pf_status_set = 'SET_PF_STATUS' i_callback_user_command = 'USER_COMMAND' i_structure_name = 'IWP_S_ISET_INTERFACE' i_grid_title = 'Attributes of the registered InfoSets'(004) is_layout = ls_layout TABLES t_outtab = gt_infoset EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_DEF_TABLE' i_grid_title = 'Definition Tables'(005) i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 80 i_screen_end_line = 40 TABLES t_outtab = ls_iobj-def_tables EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_COMPOUND' i_grid_title = 'Compounds'(006) i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 80 i_screen_end_line = 40 TABLES t_outtab = ls_iobj-compounds EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_ATTRIBUTE' i_grid_title = 'Attributes'(007) i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 80 i_screen_end_line = 40 TABLES t_outtab = ls_iobj-attributes EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_IOBJ' i_grid_title = 'InfoObjects' i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 80 i_screen_end_line = 40 TABLES t_outtab = ls_dso-infoobjects EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_KEYFIELD' i_grid_title = 'Keyfields'(008) i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 80 i_screen_end_line = 40 TABLES t_outtab = ls_dso-keyfields EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_UNIT' i_grid_title = 'Units'(009) i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 120 i_screen_end_line = 40 TABLES t_outtab = ls_dso-units EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_ICUBE_OBJECT' i_grid_title = 'InfoObjects'(010) i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 80 i_screen_end_line = 40 TABLES t_outtab = ls_icube-infoojects EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_UNIT' i_grid_title = 'Units'(009) i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 120 i_screen_end_line = 40 TABLES t_outtab = ls_icube-units EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_ISET_TABLE' i_grid_title = 'Tables'(011) i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 80 i_screen_end_line = 40 TABLES t_outtab = ls_iset-tables EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_bypassing_buffer = 'X' i_structure_name = 'IWP_S_ISET_CONDITION' i_grid_title = 'Conditions'(012) i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 80 i_screen_end_line = 40 TABLES t_outtab = ls_iset-conditions EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RIWP_TOOL_07 - Details of an Audit Package RIWP_TOOL_07 - Details of an Audit Package RIWP_TOOL_06 - Analyze an Audit Package RIWP_TOOL_06 - Analyze an Audit Package RIWP_TOOL_05 - Information about Tables in the Meta Data file of an Audit Package RIWP_TOOL_05 - Information about Tables in the Meta Data file of an Audit Package