TLAN_MANAGEMENTCL4 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 TLAN_MANAGEMENTCL4 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!
TRINT_TP_INTERFACE call function 'TRINT_TP_INTERFACE' exporting iv_tp_command = l_tp_par-command iv_system_name = l_tp_par-sysname iv_transport_request = l_tp_par-trkorr * IV_CLIENT = * IV_CLIENT_RESTRICT = * IV_PROJECT = iv_umodes = l_tp_par-umodes iv_tp_options = l_tp_par-options iv_offline = ' ' importing ev_tp_path = l_tp_par-file ev_tp_cmd_string = l_tp_par-cmdstring ev_tp_cmd_line = l_tp_par-cmdline ev_tp_return_code = l_tp_par-retcode ev_tp_message = l_tp_par-message ev_tp_version = l_tp_par-version * TABLES ** TT_OPTIONS STRUCTURE TPSTDOUT OPTIONAL * TT_REQUEST = L_request_tab ** TT_PROJECT STRUCTURE TPPROJECT OPTIONAL ** TT_ARGV STRUCTURE TPSTDOUT OPTIONAL * TT_STDOUT = l_stdout_tab ** TT_BUFFER STRUCTURE TPBUFFER OPTIONAL ** TT_BUFCNT STRUCTURE TPBUFCNT OPTIONAL ** TT_PARAMS STRUCTURE TPPARAMS OPTIONAL ** TT_LOGPTR STRUCTURE TPLOGPTR OPTIONAL ** TT_OBJLST STRUCTURE TPOBJLST OPTIONAL exceptions unsupported_tp_command = 1 invalid_tp_command = 2 missing_parameter = 3 invalid_parameter = 4 get_tpparam_failed = 5 update_tp_destination_failed = 6 get_tms_info_failed = 7 permission_denied = 8 tp_call_failed = 9 insert_tpstat_failed = 10 insert_tplog_failed = 11 others = 12 .
TRINT_TP_ANALYSE_RETURN_CODE call function 'TRINT_TP_ANALYSE_RETURN_CODE' EXPORTING iv_tp_return_code = l_tp_par-retcode EXCEPTIONS warning = 1 unmatched_command = 2 single_error = 3 fatal_error = 4 others = 5.
OCS_PATCH_DISASSEMBLER CALL FUNCTION 'OCS_PATCH_DISASSEMBLER' EXPORTING iv_patch = l_lanimp-pack iv_eps_dir = l_lanimp-epspath EXCEPTIONS cannot_determine_eps_parcel = 1 cannot_determine_data_files = 2 file_open_error = 3 cannot_disassemble_r_data_file = 4 cannot_disassemble_d_data_file = 5 unknown_block = 6 cannot_create_cofile = 7 patch_file_error = 8 OTHERS = 9.
TRINT_INSERT_NEW_COMM CALL FUNCTION 'TRINT_INSERT_NEW_COMM' EXPORTING wi_kurztext = l_text wi_trfunction = 'T' * IV_USERNAME = SY-UNAME * WI_STRKORR = ' ' * WI_CATEGORY = ' ' iv_tarsystem = l_tarsystem * WI_CLIENT = ' ' * IV_TARDEVCL = ' ' * IV_DEVCLASS = ' ' * IV_TARLAYER = ' ' * WI_PROTECT = ' ' * IV_SIMULATION = ' ' IMPORTING we_trkorr = l_lanimp-trkorr * WE_E070 = * WE_E07T = * WE_E070C = * ES_E070M = EXCEPTIONS no_systemname = 1 no_systemtype = 2 no_authorization = 3 db_access_error = 4 file_access_error = 5 enqueue_error = 6 number_range_full = 7 invalid_input = 8 OTHERS = 9 .
TRINT_REQUEST_CHOICE CALL FUNCTION 'TRINT_REQUEST_CHOICE' EXPORTING * IV_SIMULATION = ' ' iv_suppress_dialog = 'X' iv_request_types = 'T' * IV_CLI_DEP = ' ' iv_request = l_lanimp-trkorr iv_lock_objects = ' ' * IV_TITLE = * IV_START_COLUMN = 3 * IV_START_ROW = 7 * IV_WITH_ERROR_LOG = 'X' * IMPORTING * ES_REQUEST = TABLES it_e071 = l_e071_tab * IT_E071K = EXCEPTIONS invalid_request = 1 invalid_request_type = 2 user_not_owner = 3 no_objects_appended = 4 enqueue_error = 5 cancelled_by_user = 6 recursive_call = 7 OTHERS = 8 .
TRINT_RELEASE_REQUEST CALL FUNCTION 'TRINT_RELEASE_REQUEST' EXPORTING iv_trkorr = l_lanimp-trkorr iv_dialog = ' ' iv_as_background_job = ' ' iv_success_message = ' ' iv_without_objects_check = 'X' iv_called_by_perforce = ' ' iv_without_docu = 'X' * IMPORTING * ES_REQUEST = * ET_DELETED_TASKS = EXCEPTIONS cts_initialization_failure = 1 enqueue_failed = 2 no_authorization = 3 invalid_request = 4 request_already_released = 5 repeat_too_early = 6 object_lock_error = 7 object_check_error = 8 docu_missing = 9 db_access_error = 10 action_aborted_by_user = 11 export_failed = 12 execute_objects_check = 13 release_in_bg_mode = 14 release_in_bg_mode_w_objchk = 15 error_in_export_methods = 16 OTHERS = 17 .
CLM_TRSL_UPGRADE_FLAG_SET CALL FUNCTION 'CLM_TRSL_UPGRADE_FLAG_SET' EXPORTING LANGUAGE = l_lanimp-spras.
TRINT_TP_INTERFACE * CALL FUNCTION 'TRINT_TP_INTERFACE' * EXPORTING * iv_tp_command = l_tp_par-command * iv_system_name = l_tp_par-sysname * iv_transport_request = l_tp_par-trkorr * iv_umodes = l_tp_par-umodes * iv_tp_options = l_tp_par-options * iv_offline = ' ' * IMPORTING * ev_tp_path = l_tp_par-file * ev_tp_cmd_string = l_tp_par-cmdstring * ev_tp_cmd_line = l_tp_par-cmdline * ev_tp_return_code = l_tp_par-retcode * ev_tp_message = l_tp_par-message * ev_tp_version = l_tp_par-version * TABLES * tt_request = l_request_tab * tt_stdout = l_stdout_tab * EXCEPTIONS * unsupported_tp_command = 1 * invalid_tp_command = 2 * missing_parameter = 3 * invalid_parameter = 4 * get_tpparam_failed = 5 * update_tp_destination_failed = 6 * get_tms_info_failed = 7 * permission_denied = 8 * tp_call_failed = 9 * insert_tpstat_failed = 10 * insert_tplog_failed = 11 * OTHERS = 12.
TRINT_TP_ANALYSE_RETURN_CODE * CALL FUNCTION 'TRINT_TP_ANALYSE_RETURN_CODE' * EXPORTING * iv_tp_return_code = l_tp_par-retcode * EXCEPTIONS * warning = 1 * unmatched_command = 2 * single_error = 3 * fatal_error = 4 * OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.