RHBAUS 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 RHBAUS 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: TEST3 = Test
Selection Text: TEST2 = Test
Selection Text: TEST1 = Test
Selection Text: LS_USER = User Name
Selection Text: DELETE = Delete
Selection Text: CLEAR = Clear
Selection Text: CHANGE = Add
Selection Text: BORDER = Threshold Value
Selection Text: BAUS01 = INDX and T77UU
Selection Text: BAUS00 = Generate
Title: RHBAUS Report
Text Symbol: 993 = No
Text Symbol: 992 = Yes
Text Symbol: 991 = Do you really want to delete users who are not available or do not exist?
Text Symbol: 990 = Delete Users from Tables T77UA, T77UU, INDX
Text Symbol: 700 = Test run
Text Symbol: 216 = Deleted from
Text Symbol: 215 = To be deleted from
Text Symbol: 214 = INDX
Text Symbol: 213 = T77UA
Text Symbol: 212 = T77UU
Text Symbol: 211 = Print for more information
Text Symbol: 210 = To be deleted from INDX
Text Symbol: 209 = Additional information
Text Symbol: 208 = Action performed
Text Symbol: 207 = Number of Objects
Text Symbol: 206 = User Name
Text Symbol: 205 = Added to T77UU
Text Symbol: 204 = to be added to T77UU
Text Symbol: 203 = Deleted from T77UU
Text Symbol: 202 = To be deleted from T77UU
Text Symbol: 201 = Deleted from INDX
Text Symbol: 200 = Added to INDX
Text Symbol: 105 = Threshold Value
Text Symbol: 104 = Add
Text Symbol: 005 = Delete users that are currently invalid or do not exist
Text Symbol: 004 = Check and Compare of T77UU
Text Symbol: 003 = Delete INDX entries that do not exist in T77UU
INCLUDE RHBAUSTOP . " GLOBAL DATA
INCLUDE RHBAUSF01 . " FORM-ROUTINES
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-990 text_question = text-991 text_button_1 = text-992 icon_button_1 = 'ICON_OKAY' text_button_2 = text-993 icon_button_2 = 'ICON_CANCEL' display_cancel_button = '' start_column = 25 start_row = 6 IMPORTING answer = lv_pop_up.
RH_USER_SEARCH_VIA_NAME CALL FUNCTION 'RH_USER_SEARCH_VIA_NAME' EXPORTING search_string = '*' TABLES user_name = lt_name_tab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.