RSAUTHXP is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report RSAUTHXP converts the fields in the tables AUTH* to the logical objects R3TR AUTH...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 RSAUTHXP 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.
Title: Check Auth_a
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING NAME = TABNAME * STATE = 'A' * LANGU = ' ' IMPORTING GOTSTATE = GOTSTATE DD02V_WA = EV_DD02V DD09L_WA = EV_DD09L TABLES DD03P_TAB = DD03P_TAB DD05M_TAB = DD05M_TAB DD08V_TAB = DD08V_TAB DD12V_TAB = DD12V_TAB DD17V_TAB = DD17V_TAB DD35V_TAB = DD35V_TAB DD36M_TAB = DD36M_TAB EXCEPTIONS ILLEGAL_INPUT = 1 OTHERS = 2.
TR_GTADIR_QUERY CALL FUNCTION 'TR_GTADIR_QUERY' EXPORTING * TAB_IN = '~' IV_PGMID = 'R3TR' IV_OBJECT = 'AUTH' IV_OBJ_NAME = TADIR-OBJ_NAME IMPORTING * ACTION = * ERROR = RESULT = IV_GTADIR * STATUS = EXCEPTIONS * COMMUNICATION_FAILURE = 1 * SYSTEM_FAILURE = 2 * TR_DENY_CREATE = 3 * TR_DISTRIBUTED = 4 * TR_INVALID_STATE = 5 * TR_INVALID_TRANSITION = 6 * TR_NO_ENTRY = 7 * TR_OBJECT_EXISTS = 8 * TR_DENY_ACCESS = 9 * UNSUPPORTED_EXCEPTION = 10 * UNSUPPORTED_METHOD = 11 OTHERS = 1 .
TR_TADIR_INTERFACE CALL FUNCTION 'TR_TADIR_INTERFACE' EXPORTING * WI_DELETE_TADIR_ENTRY = ' ' * WI_REMOVE_REPAIR_FLAG = ' ' * WI_SET_REPAIR_FLAG = ' ' WI_TEST_MODUS = ' ' WI_TADIR_PGMID = 'R3TR' WI_TADIR_OBJECT = 'AUTH' WI_TADIR_OBJ_NAME = TADIR-OBJ_NAME * WI_TADIR_KORRNUM = ' ' WI_TADIR_SRCSYSTEM = TADIR-SRCSYSTEM WI_TADIR_AUTHOR = TADIR-AUTHOR WI_TADIR_DEVCLASS = TADIR-DEVCLASS WI_TADIR_MASTERLANG = TADIR-MASTERLANG * WI_TADIR_CPROJECT = ' ' * WI_TADIR_VERSID = ' ' * WI_REMOVE_GENFLAG = ' ' * WI_SET_GENFLAG = ' ' * WI_READ_ONLY = ' ' * IV_SET_EDTFLAG = ' ' * IV_WBO_INTERNAL = ' ' * IMPORTING * NEW_GTADIR_ENTRY = * NEW_TADIR_ENTRY = EXCEPTIONS OTHERS = 1.
TR_APPEND_LOG CALL FUNCTION 'TR_APPEND_LOG' EXPORTING OPEN_FILE = 'X' CLOSE_FILE = 'X' CONDENSE = 'X' MASTER_LANGU = 'E' ACCEPT_NOT_INIT = ' ' IV_SUPPRESS_STATISTICS = ' ' TABLES XMSG = TMSG EXCEPTIONS FILE_NOT_FOUND = 1 WRONG_CALL = 2 OTHERS = 3.
TR_FLUSH_LOG CALL FUNCTION 'TR_FLUSH_LOG' .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.