RHAUTH01 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 RHAUTH01 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: UNAME = User
Selection Text: TRY_DATE = Start date/test date
Selection Text: PROFL = Profile
Selection Text: ALLEZ = Output all objects
Title: Display Authorization Views
Text Symbol: TEX = Information
Text Symbol: ALL = All Objects
Text Symbol: 015 = Root Object ID
Text Symbol: 014 = RootObject ID
Text Symbol: 013 = Root Object Type
Text Symbol: 012 = RootObType
Text Symbol: 011 = Show Authorization Views
Text Symbol: 010 = Number of Objects:
Text Symbol: 009 = User:
Text Symbol: 008 = Root Object Does Not Exist
Text Symbol: 007 = All Objects
Text Symbol: 006 = Number
Text Symbol: 005 = Information
Text Symbol: 004 = No. of objects
Text Symbol: 003 = Objects contained:
Text Symbol: 002 = User's authorization profiles:
Text Symbol: 001 = Root objects that could not be found:
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_GET_BUSINESS_ADD_IN CALL FUNCTION 'HR_GET_BUSINESS_ADD_IN' EXPORTING exit_name = exit_name2 * FLT_VAL = IMPORTING is_implemented = is_implemented CHANGING instance = profl_badi_exit .
CONTROL_BLOCK_RESERVE CALL FUNCTION 'CONTROL_BLOCK_RESERVE' IMPORTING cb_nr = cb_nr.
STRUCTURE_BUILD CALL FUNCTION 'STRUCTURE_BUILD' EXPORTING plvar = my_plvar otype = my_otype objid = my_objid wegid = my_wegid svect = my_svect sbegd = my_sbegd "begda "sy-datum sendd = my_sendd "endda "sy-datum * tflag = 'X' vflag = 'X' * activ = ' ' tdepth = my_tdepth "NADBJAK001260 sflag = 'X' * RECURS = ' ' * 77aw_int = 'X' * authy = 'A' authy = ' ' "GIS_EXC * AUTHY_BASE = '$' * cbflag = 'X' * TEXT_BUFFER_FILL = ' ' IMPORTING * OBJECT = root = act_gdstr entry = act_struc * cb_nr = cb_nr * TABLES * CHECK_TAB_DESC = EXCEPTIONS root_not_found = 1 wegid_not_found = 2 OTHERS = 3.
STRUCTURE_ENTRY_GET CALL FUNCTION 'STRUCTURE_ENTRY_GET' EXPORTING index = act_gdstr-pstru cb_nr = cb_nr IMPORTING root = rootobj entry = act_struc EXCEPTIONS OTHERS = 0.
STRUCTURE_DELETE CALL FUNCTION 'STRUCTURE_DELETE' EXPORTING pstru = act_gdstr-pstru.
CONTROL_BLOCK_DELETE CALL FUNCTION 'CONTROL_BLOCK_DELETE' EXPORTING cb_nr = cb_nr EXCEPTIONS OTHERS = 0.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'T77PR_WA' "GIS_EXC CHANGING ct_fieldcat = it_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_buffer_active = ' ' i_callback_program = g_repid i_callback_pf_status_set = 'ALV_SET_PF_STATUS' i_callback_user_command = 'ALV_USER_COMMAND' i_callback_top_of_page = 'ALV_SET_HEADLINE' is_layout = g_layout it_fieldcat = it_fieldcat it_sort = it_sort TABLES t_outtab = it_output EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = infotab * I_LOGO = * I_END_OF_LIST_GRID = .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.