RSIWB099 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 RSIWB099 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: FUNCTION = Authorization
Selection Text: USERS = User
Title: Test user settings
Text Symbol: 026 = Change original language
Text Symbol: 027 = Grid display for Info Object List
Text Symbol: 025 = Context-dependent folder
Text Symbol: 005 = Local Web server
Text Symbol: 021 = Activate support functions
Text Symbol: 022 = Macro debugging in online editing
Text Symbol: 023 = Debug options for packaging and printing
Text Symbol: 024 = Original language depends on context
INCLUDE IWBCONST.
INCLUDE IWBMACRO.
INCLUDE FSIWBF01.
No SAP DATABASE tables are accessed within this REPORT code!
IWB_AUTHORITY_CHECK CALL FUNCTION 'IWB_AUTHORITY_CHECK' EXPORTING * area = FUNCTION = C_AUTH_SUPPORT EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
TIWB_TEST_USER_RESET CALL FUNCTION 'TIWB_TEST_USER_RESET' TABLES USER_RANGE_TAB = G_USERS.
SUSR_USER_CHECK_EXISTENCE CALL FUNCTION 'SUSR_USER_CHECK_EXISTENCE' EXPORTING USER_NAME = USERS-LOW EXCEPTIONS USER_NAME_NOT_EXISTS = 1.
TIWB_TEST_USER_SET CALL FUNCTION 'TIWB_TEST_USER_SET' EXPORTING USER_NAME = USERS-LOW FCT_NAME = FUNCTION-LOW.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_PROGRAM_NAME = C_THIS_PROGRAM I_INTERNAL_TABNAME = 'OUTPUT' I_INCLNAME = C_THIS_PROGRAM CHANGING CT_FIELDCAT = FIELDCAT EXCEPTIONS INCONSISTENT_INTERFACE = 1 PROGRAM_ERROR = 2 OTHERS = 3.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = C_THIS_PROGRAM I_CALLBACK_PF_STATUS_SET = 'ALV_CB_STATUS' I_CALLBACK_USER_COMMAND = 'ALV_CB_UCOMM' IS_LAYOUT = LAYOUT IT_FIELDCAT = FIELDCAT TABLES T_OUTTAB = OUTPUT.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.