TASAUTH_COMP is a standard ABAP INCLUDE 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 TASAUTH_COMP 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_DISPLAY_TEXT_USER_BUTTON CALL FUNCTION 'POPUP_DISPLAY_TEXT_USER_BUTTON' EXPORTING popup_title = 'Application help'(100) "#EC * docu_class = 'DT' text_object = id_obj display_ok_button = 'X' display_cancel_button = '' IMPORTING answer = ld_answer TABLES user_buttons = lt_button parameter = lt_spar EXCEPTIONS OTHERS = 0.
DOCU_PRINT CALL FUNCTION 'DOCU_PRINT' EXPORTING dialog = 'X ' form = 'P' id = 'DT' langu = sy-langu object = id_obj operation = 'P' printer = 'X ' typ = 'E' TABLES line = lt_line.
RS_TOOL_ACCESS CALL FUNCTION 'RS_TOOL_ACCESS' EXPORTING operation = 'SHOW' object_name = ld_obj_name object_type = 'TRAN' EXCEPTIONS OTHERS = 0.
RS_ACCESS_PERMISSION CALL FUNCTION 'RS_ACCESS_PERMISSION' EXPORTING authority_check = 'X' global_lock = 'X' mode = 'MODIFY' object =
-tcode object_class = 'TRAN' suppress_language_check = 'X' EXCEPTIONS canceled_in_corr = 1 enqueued_by_user = 2 enqueue_system_failure = 3 illegal_parameter_values = 4 no_modify_permission = 5 no_show_permission = 6 permission_failure = 7 request_language_denied = 8 OTHERS = 9.
RS_CORR_INSERT CALL FUNCTION 'RS_CORR_INSERT' EXPORTING object =
-tcode object_class = 'TRAN' EXCEPTIONS cancelled = 1 permission_failure = 2 unknown_objectclass = 3 OTHERS = 4.
RS_ACCESS_PERMISSION CALL FUNCTION 'RS_ACCESS_PERMISSION' EXPORTING authority_check = space global_lock = 'X' mode = 'FREE' object =
-tcode object_class = 'TRAN' suppress_language_check = 'X' EXCEPTIONS OTHERS = 0.
RS_ACCESS_PERMISSION CALL FUNCTION 'RS_ACCESS_PERMISSION' EXPORTING authority_check = space global_lock = 'X' mode = 'FREE' object =
-tcode object_class = 'TRAN' suppress_language_check = 'X' EXCEPTIONS OTHERS = 0.
TR_REQUEST_CHOICE CALL FUNCTION 'TR_REQUEST_CHOICE' EXPORTING iv_suppress_dialog = ld_no_dialog iv_request_types = 'K' iv_request = ld_trkorr it_e071 = lt_e071 it_e071k = lt_e071k IMPORTING es_request = ls_request EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.