RHBAUS_PARALLEL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report regenerates indexes for structural authorization profiles...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 RHBAUS_PARALLEL 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: GP_GROUP = D .
Selection Text: GP_PBT = D .
Selection Text: UNAME = D .
Title: Report RHBAUS_PARALLEL
Text Symbol: 000 = Regeneration of INDX for Structural Authorization
Text Symbol: 002 = Number of Objects
Text Symbol: 003 = User has been updated:
Text Symbol: 005 = User view
Text Symbol: 008 = Users
Text Symbol: 009 = Parallel Processing
Text Symbol: 010 = Unknown Error While Calling Function Module
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RH_DETERMINE_PROFILES CALL FUNCTION 'RH_DETERMINE_PROFILES' STARTING NEW TASK gv_task_name DESTINATION IN GROUP gv_group PERFORMING end_find_profiles ON END OF TASK EXPORTING iv_jobid = gv_jobid TABLES it_user_tab = gt_user_bundle "#EC ENHOK EXCEPTIONS system_failure = 1 communication_failure = 2 resource_failure = 3 OTHERS = 4.
RH_BUILD_PROFILES CALL FUNCTION 'RH_BUILD_PROFILES' STARTING NEW TASK gv_task_name DESTINATION IN GROUP gv_group PERFORMING end_build_profiles ON END OF TASK EXPORTING iv_jobid = gv_jobid TABLES it_profile = gt_prfl_bundle "#EC ENHOK EXCEPTIONS system_failure = 1 communication_failure = 2 resource_failure = 3 OTHERS = 4.
RH_SAVE_PROFILES CALL FUNCTION 'RH_SAVE_PROFILES' STARTING NEW TASK gv_task_name DESTINATION IN GROUP gv_group PERFORMING end_save_profiles ON END OF TASK EXPORTING iv_jobid = gv_jobid TABLES it_user_prfl_tab = gt_usr_prfl_bundle "#EC ENHOK EXCEPTIONS system_failure = 1 communication_failure = 2 resource_failure = 3 OTHERS = 4.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = gv_repid i_callback_top_of_page = 'TOP_OF_PAGE' is_layout = ls_layout it_fieldcat = gt_fcat it_events = lt_events TABLES t_outtab = gt_list.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_top_of_page.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = gv_repid i_callback_top_of_page = 'TOP_OF_PAGE2' is_layout = gs_layout1 i_structure_name = 'HRVIEW' TABLES t_outtab = it_outtab.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_top_of_page.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.