TTE_CUST_CHECK 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 TTE_CUST_CHECK into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
TTE_CUST_CHECK - Check Customizing
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.
TTE Customizing Validation Logs
Title: Check the consistency of TTE customizing
Text Symbol: 051 = Assign Decision Tree
Text Symbol: 052 = Assign Tax Procedure
Text Symbol: 053 = Assign Aggregation Rules
Text Symbol: 054 = Assign Reporting Currency
Text Symbol: 055 = is not assigned to country
Text Symbol: 056 = Tax Codes
Text Symbol: 057 = Tax Code
Text Symbol: 058 = Inconsistent validity period
Text Symbol: 059 = Rate ID
Text Symbol: 060 = Exemption Rate
Text Symbol: 061 = Tax Rate
Text Symbol: 062 = Non-deductibily rate
Text Symbol: 063 = Invalid Tax Rates
Text Symbol: 064 = Rates with invalid country code
Text Symbol: 065 = Rates with invalid tax type
Text Symbol: 066 = Rates with invalid tax rate ID
Text Symbol: 067 = Rates without condition type assigned
Text Symbol: P00 = Loading TTE customizing tables
Text Symbol: P10 = Loading TTE rates
Text Symbol: P30 = Checking TTE customizing
Text Symbol: P70 = Checking TTE customizing against non-TTE tables
Text Symbol: 004 = Defined Communities
Text Symbol: 012 = Defined Countries
Text Symbol: 013 = Tax Regions
Text Symbol: 014 = Tax Events
Text Symbol: 015 = Tax Types
Text Symbol: 016 = Business Partner Tax Group
Text Symbol: 017 = Tax Region
Text Symbol: 018 = Tax Type
Text Symbol: 019 = Tax Group
Text Symbol: 020 = Product Tax Group
Text Symbol: 022 = Tax Event
Text Symbol: 023 = Procedure
Text Symbol: 024 = Condition type
Text Symbol: 025 = Condition type for tax rates
Text Symbol: 026 = Condition type for tax exemptions
INCLUDE SBAL_CONSTANTS.
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 1 text = text-p00.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 10 text = text-p10.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 30 text = text-p30.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 70 text = text-p70.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = appl_log IMPORTING e_log_handle = hlog.
/SAPCND/MNT_INIT_OW CALL FUNCTION '/SAPCND/MNT_INIT_OW' EXPORTING i_client = sy-mandt i_application = application i_hlog = hlog IMPORTING e_hsession = hsession e_result = result es_working_set_names = lv_wrk_set_name.
/SAPCND/CUS_T685_SEL CALL FUNCTION '/SAPCND/CUS_T685_SEL' EXPORTING i_application = application i_usage = usage IMPORTING et_selected_data = it_cond_types.
/SAPCND/MNT_SELECT_OW CALL FUNCTION '/SAPCND/MNT_SELECT_OW' EXPORTING i_hsession = hsession i_hlog = hlog i_selection_mode = ctmnt_selection_mode_add i_maintenance_mode = ctmnt_maint_mode_change it_attrib_value_int = it_attrib_value_int IMPORTING e_result = result.
/SAPCND/MNT_GET_WORKING_SET_OW CALL FUNCTION '/SAPCND/MNT_GET_WORKING_SET_OW' EXPORTING i_hsession = hsession i_hlog = hlog i_suppress_deleted_records = 'X' it_attrib_value_int = it_attrib_value_int IMPORTING et_working_set_ext = l_working_set_ext e_result = result.
TTE_GET_CND_TABLE_TYPE CALL FUNCTION 'TTE_GET_CND_TABLE_TYPE' EXPORTING cond_table =
IMPORTING usage = wa_rate_entry-usage EXCEPTIONS usage_undetermined = 1 OTHERS = 2.
/SAPCND/MNT_CLOSE_OW CALL FUNCTION '/SAPCND/MNT_CLOSE_OW' EXPORTING i_hsession = hsession i_hlog = hlog IMPORTING e_result = result.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_s_log IMPORTING e_log_handle = g_log_handle EXCEPTIONS OTHERS = 1.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = g_log_handle i_s_msg = l_s_msg EXCEPTIONS log_not_found = 0 OTHERS = 1.
BAL_DSP_PROFILE_STANDARD_GET * call function 'BAL_DSP_PROFILE_STANDARD_GET' * IMPORTING * e_s_display_profile = l_s_display_profile * EXCEPTIONS * others = 1.
BAL_DSP_PROFILE_DETLEVEL_GET CALL FUNCTION 'BAL_DSP_PROFILE_DETLEVEL_GET' IMPORTING e_s_display_profile = l_s_display_profile EXCEPTIONS OTHERS = 1.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = l_s_display_profile EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.
This will then be available for everyone to easily find by simply searching on the report name TTE_CUST_CHECK or its description.
TTE_CUST_CHECK - Check the consistency of TTE customizing TTE_CUST_CHECK - Check the consistency of TTE customizing TTE_ANALYSIS_VIEW_TOP - Include TTE_ANALYSIS_VIEW_TOP TTE_ANALYSIS_VIEW_O01 - Include TTE_ANALYSIS_VIEW_O01 TTE_ANALYSIS_VIEW_I01 - Include TTE_ANALYSIS_VIEW_I01 TTE_ANALYSIS_VIEW_F01 - Include TTE_ANALYSIS_VIEW_F01