RSIWB905 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 RSIWB905 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_KONT_E = Determine context yourself
Selection Text: P_KONT_A = Note all contexts
Title: Delete buffer for productivity flag
Text Symbol: 060 = Select the PHIO objects...
Text Symbol: 019 = Context selection for deleting old buffer entries..
INCLUDE: IWBCONSTEXT,
No SAP DATABASE tables are accessed within this REPORT code!
IWB_D_AREA_GET CALL FUNCTION 'IWB_D_AREA_GET' EXPORTING MULTIPLE_CHOICE = ' ' IMPORTING AREA = PV_AREA ACTION = LV_ACTION * TABLES * areas = lt_area * selected_areas = lt_area_sele .
IO_D_CONTEXT_FOR_CLASS CALL FUNCTION 'IO_D_CONTEXT_FOR_CLASS' EXPORTING CLASS = 'IWB0ENTRY' * WORKING_MODE = 'DOCU' * display_extension = 'X' * display_country = 'X' DISPLAY_EXTENSION_BUTTON = 'X' * DISPLAY_MODE_BUTTON = ' ' DISPLAY_COUNTRY_BUTTON = 'X' * TASK = 'EDIT' IMPORTING ACTION = LV_ACTION * E_WORKING_MODE = TABLES CONTEXT_VALUES = PT_CONTEXT * DEFAULT_VALUES = .
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING * PERCENTAGE = 0 TEXT = 'Selektiere die PHIO-Objekte....'(060).
IW_C_DELIVERY_STRUCTURE_GET CALL FUNCTION 'IW_C_DELIVERY_STRUCTURE_GET' EXPORTING AREA = PV_AREA IMPORTING STRUCT = DELIVERY_STRUCT ERROR_MSG = LS_ERROR_MSG.
IO_C_PHYSICAL_OBJECTS_GET CALL FUNCTION 'IO_C_PHYSICAL_OBJECTS_GET' TABLES INFO_OBJECTS = IO_TAB INFO_OBJECTS_WITH_PHYS_OBJ = LOIOPHIO * INFO_OBJECTS_WITHOUT_PHYS_OBJ = * bad_objects = bad_obj .
IO_C_PROPERTIES_GET_PHIOS CALL FUNCTION 'IO_C_PROPERTIES_GET_PHIOS' TABLES INFO_OBJECTS = PT_PHIO REQUESTED_PROPERTIES = LT_REQ_PROPS PROPERTIES = LT_PROPS.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.