Search Results service_type_id
Overview
The ZX.ZX_SRVC_TYP_PARAMS table is a core repository within the Oracle E-Business Suite Tax (ZX) module, specifically for Oracle EBS 12.1.1 and 12.2.2. It functions as a parameter definition table for service types, which are configurations used in the tax determination engine. The table's primary role is to define the specific parameters (or attributes) that can be associated with a given service type, controlling how tax rules are applied to different kinds of transactions. It establishes the metadata for the inputs that the tax engine expects for a particular service, enabling flexible and configurable tax logic.
Key Information Stored
The table stores metadata that links service types to their configurable parameters. The most critical columns include the SERVICE_TYPE_ID, which is a foreign key to the service type definition, and the PARAMETER_NAME, which identifies the specific parameter. The POSITION column dictates the order of parameters. The PARAM_USAGE_CODE defines how the parameter is utilized within the tax engine's logic. Crucially, the MAP_GLOBAL_VAR_CODE and MAP_GBL_VAR_DATA_TYPE columns specify the mapping between this service type parameter and a global variable used by the tax engine's procedural logic, effectively bridging configuration data to executable code. The SRVC_TYP_PARAM_ID serves as the primary key. Standard WHO columns (CREATED_BY, LAST_UPDATE_DATE, etc.) track audit information.
Common Use Cases and Queries
This table is central to diagnosing tax determination issues, validating configurations, and generating documentation for custom tax setups. A common use case involves identifying all parameters defined for a specific service type, which is essential for understanding the data requirements for a given tax calculation. Developers and functional consultants query this table to verify parameter mappings or to troubleshoot errors where a required parameter is missing or incorrectly mapped. A typical query retrieves the full parameter list for a service type:
- SELECT PARAMETER_NAME, POSITION, PARAM_USAGE_CODE, MAP_GLOBAL_VAR_CODE, MAP_GBL_VAR_DATA_TYPE FROM ZX.ZX_SRVC_TYP_PARAMS WHERE SERVICE_TYPE_ID = <id> ORDER BY POSITION;
Another critical query pattern is to find a service type by a known parameter or global variable name, useful for reverse-engineering tax setups:
- SELECT SERVICE_TYPE_ID FROM ZX.ZX_SRVC_TYP_PARAMS WHERE PARAMETER_NAME = '<Parameter_Name>' OR MAP_GLOBAL_VAR_CODE = '<Global_Variable>';
Related Objects
Based on the dependency information, the ZX.ZX_SRVC_TYP_PARAMS table is referenced by the APPS synonym ZX_SRVC_TYP_PARAMS, which is the standard access point for all application code. The table's structure implies a relationship with a parent table storing service type definitions (likely keyed by SERVICE_TYPE_ID), though this specific foreign key is not detailed in the provided metadata. The three unique indexes enforce critical business rules: ZX_SRVC_TYP_PARAMS_U1 on the primary key (SRVC_TYP_PARAM_ID), ZX_SRVC_TYP_PARAMS_U2 on SERVICE_TYPE_ID and POSITION (ensuring unique ordering per service type), and ZX_SRVC_TYP_PARAMS_U3 on SERVICE_TYPE_ID and PARAMETER_NAME (ensuring unique parameter names per service type).
-
TABLE: ZX.ZX_SRVC_TYP_PARAMS
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_SRVC_TYP_PARAMS, object_name:ZX_SRVC_TYP_PARAMS, status:VALID,
-
VIEW: ZX.ZX_SERVICE_TYPES#
12.2.2
-
VIEW: ZX.ZX_SRVC_TYP_PARAMS#
12.2.2
-
VIEW: ZX.ZX_API_REGISTRATIONS#
12.2.2
-
VIEW: ZX.ZX_API_REGISTRATIONS#
12.2.2
owner:ZX, object_type:VIEW, object_name:ZX_API_REGISTRATIONS#, status:VALID,
-
TABLE: ZX.ZX_SRVC_TYP_PARAMS
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_SRVC_TYP_PARAMS, object_name:ZX_SRVC_TYP_PARAMS, status:VALID,
-
TABLE: ZX.ZX_SERVICE_TYPES
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_SERVICE_TYPES, object_name:ZX_SERVICE_TYPES, status:VALID,
-
APPS.ZX_API_PRVDR_PUB SQL Statements
12.1.1
-
TABLE: ZX.ZX_SERVICE_TYPES
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_SERVICE_TYPES, object_name:ZX_SERVICE_TYPES, status:VALID,
-
APPS.ZX_API_PRVDR_PUB SQL Statements
12.2.2
-
PACKAGE: APPS.ZX_TPI_PLUGIN_PKG
12.2.2
-
VIEW: ZX.ZX_SERVICE_TYPES#
12.2.2
owner:ZX, object_type:VIEW, object_name:ZX_SERVICE_TYPES#, status:VALID,
-
Table: ZX_SERVICE_TYPES
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_SERVICE_TYPES, object_name:ZX_SERVICE_TYPES, status:VALID, product: ZX - E-Business Tax , description: This table stores tax service types. , implementation_dba_data: ZX.ZX_SERVICE_TYPES ,
-
TABLE: ZX.ZX_API_REGISTRATIONS
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_API_REGISTRATIONS, object_name:ZX_API_REGISTRATIONS, status:VALID,
-
VIEW: ZX.ZX_SRVC_TYP_PARAMS#
12.2.2
owner:ZX, object_type:VIEW, object_name:ZX_SRVC_TYP_PARAMS#, status:VALID,
-
TABLE: ZX.ZX_API_REGISTRATIONS
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_API_REGISTRATIONS, object_name:ZX_API_REGISTRATIONS, status:VALID,
-
PACKAGE: APPS.ZX_TPI_PLUGIN_PKG
12.1.1
-
APPS.ZX_TPI_PLUGIN_PKG dependencies on ZX_SRVC_TYP_PARAMS
12.1.1
-
APPS.ZX_TPI_PLUGIN_PKG dependencies on ZX_SRVC_TYP_PARAMS
12.2.2
-
Table: ZX_SERVICE_TYPES
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_SERVICE_TYPES, object_name:ZX_SERVICE_TYPES, status:VALID, product: ZX - E-Business Tax , description: This table stores tax service types. , implementation_dba_data: ZX.ZX_SERVICE_TYPES ,
-
Table: ZX_SRVC_TYP_PARAMS
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_SRVC_TYP_PARAMS, object_name:ZX_SRVC_TYP_PARAMS, status:VALID, product: ZX - E-Business Tax , description: This table stores parameters for the service types. , implementation_dba_data: ZX.ZX_SRVC_TYP_PARAMS ,
-
APPS.ZX_TPI_PLUGIN_PKG SQL Statements
12.2.2
-
Table: ZX_SRVC_TYP_PARAMS
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_SRVC_TYP_PARAMS, object_name:ZX_SRVC_TYP_PARAMS, status:VALID, product: ZX - E-Business Tax , description: This table stores parameters for the service types. , implementation_dba_data: ZX.ZX_SRVC_TYP_PARAMS ,
-
APPS.ZX_TPI_PLUGIN_PKG SQL Statements
12.1.1
-
TABLE: APPS.AHL_UC_DETAILS_FOR_HGRID
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:AHL.AHL_UC_DETAILS_FOR_HGRID, object_name:AHL_UC_DETAILS_FOR_HGRID, status:VALID,
-
APPS.ZX_API_PRVDR_PUB dependencies on ZX_SERVICE_TYPES
12.1.1
-
APPS.ZX_API_PRVDR_PUB dependencies on ZX_SERVICE_TYPES
12.2.2
-
APPS.ZX_API_PRVDR_PUB dependencies on ZX_API_REGISTRATIONS
12.1.1
-
APPS.ZX_API_PRVDR_PUB dependencies on ZX_API_REGISTRATIONS
12.2.2
-
PACKAGE BODY: APPS.ZX_API_PRVDR_PUB
12.1.1
-
PACKAGE BODY: APPS.ZX_API_PRVDR_PUB
12.2.2
-
APPS.ZX_API_PRVDR_PUB dependencies on FND_MESSAGE
12.1.1
-
APPS.ZX_API_PRVDR_PUB dependencies on FND_API
12.1.1
-
APPS.ZX_API_PRVDR_PUB dependencies on FND_MESSAGE
12.2.2
-
APPS.ZX_API_PRVDR_PUB dependencies on FND_API
12.2.2
-
APPS.AHL_PRD_BLK_PARTS_CHANGE_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.AHL_PRD_BLK_PARTS_CHANGE_PVT
12.2.2
-
PACKAGE BODY: APPS.ZX_TPI_PLUGIN_PKG
12.1.1
-
PACKAGE BODY: APPS.ZX_TPI_PLUGIN_PKG
12.2.2
-
PACKAGE BODY: APPS.AHL_PRD_BLK_PARTS_CHANGE_PVT
12.2.2
-
APPS.ZX_R11I_TAX_PARTNER_PKG SQL Statements
12.2.2
-
APPS.ZX_R11I_TAX_PARTNER_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AHL_PRD_BLK_PARTS_CHANGE_PVT_W
12.2.2
-
eTRM - ZX Tables and Views
12.1.1
description: This global temporary table is used to return validation errors for imported transactions from tax perspective. ,
-
eTRM - ZX Tables and Views
12.2.2
description: This global temporary table is used to return validation errors for imported transactions from tax perspective. ,
-
eTRM - ZX Tables and Views
12.1.1
description: This global temporary table is used to return validation errors for imported transactions from tax perspective. ,
-
eTRM - ZX Tables and Views
12.2.2
description: This global temporary table is used to return validation errors for imported transactions from tax perspective. ,
-
PACKAGE BODY: APPS.ZX_R11I_TAX_PARTNER_PKG
12.1.1
-
PACKAGE BODY: APPS.ZX_R11I_TAX_PARTNER_PKG
12.2.2
-
eTRM - AHL Tables and Views
12.2.2
description: Ahl Production Workorder Operations Information stored in this table ,