RIWP_WP_HANDLING is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Calls the relevant applications required for processing 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_WP_HANDLING into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
IWP01 - Audit Package Handling
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: Audit Package Handling
Text Symbol: 001 = Audit Packages
Text Symbol: 010 = Create (over template)
Text Symbol: 011 = Refresh
Text Symbol: 012 = Extract Audit Package to BW
Text Symbol: 013 = Show Details
Text Symbol: 014 = BW-Reporting
Text Symbol: 015 = Local Reporting
Text Symbol: 016 = Display Table from BW
Text Symbol: 017 = Delete Audit Package in BW
Text Symbol: 018 = Delete Audit Package
Text Symbol: 019 = Call Audit Trail
Text Symbol: 020 = Process Created Files
Text Symbol: 021 = Display Table or Create File
Text Symbol: 022 = Delete All Created Files
Text Symbol: 023 = All files will be deleted, do want to continue?
INCLUDE RIWP_WP_HANDLING_CLASSES.
INCLUDE RIWP_WP_HANDLING_USER_CI01.
INCLUDE RIWP_WP_HANDLING_SET_ALF01.
INCLUDE RIWP_WP_HANDLING_STATUSO01.
No SAP DATABASE tables are accessed within this REPORT code!
CALL_S_AUT10 CALL FUNCTION 'CALL_S_AUT10' EXPORTING iv_sysid = l_sysid iv_clnt = l_clnt iv_work_package = ls_wp-work_package.
IWP_CALL_TABLE_BROWSER CALL FUNCTION 'IWP_CALL_TABLE_BROWSER' DESTINATION ls_config-rfc_dest EXPORTING i_work_package = ls_wp-work_package EXCEPTIONS error_occured = 1 OTHERS = 2.
WDY_EXECUTE_IN_BROWSER CALL FUNCTION 'WDY_EXECUTE_IN_BROWSER' EXPORTING * PROTOCOL = application = application parameters = lt_par EXCEPTIONS invalid_application = 1 browser_not_started = 2 action_cancelled = 3 OTHERS = 4.
REUSE_ALV_GRID_DISPLAY *CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' * EXPORTING * i_callback_program = 'RIWP_WP_HANDLING' * i_callback_pf_status_set = 'SET_PF_STATUS' * i_callback_user_command = 'USER_COMMAND' * i_structure_name = 'IWP_WP_ALV' * i_grid_title = 'Audit Packages'(001) * is_layout = ls_layout * TABLES * t_outtab = gt_wp * EXCEPTIONS * program_error = 1 * OTHERS = 2.
DDUT_DOMVALUES_GET CALL FUNCTION 'DDUT_DOMVALUES_GET' EXPORTING name = 'IWP_STATUS' * LANGU = SY-LANGU * TEXTS_ONLY = ' ' TABLES dd07v_tab = lt_dd07v EXCEPTIONS OTHERS = 0.
DDUT_DOMVALUES_GET CALL FUNCTION 'DDUT_DOMVALUES_GET' EXPORTING name = 'IWP_USETYP' * LANGU = SY-LANGU * TEXTS_ONLY = ' ' TABLES dd07v_tab = lt_dd07v_2 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_WP_HANDLING - Audit Package Handling RIWP_WP_HANDLING - Audit Package Handling RIWP_WP_GENERATE - Generate Content for an Audit Package in BI RIWP_WP_GENERATE - Generate Content for an Audit Package in BI RIWP_WP_DELETE - Delete Content of an Audit Package RIWP_WP_DELETE - Delete Content of an Audit Package