Search Results jtf_terr_type_qual
Overview
The JTF_TERR_TYPE_QUAL view is a reporting and integration interface within the Oracle E-Business Suite CRM Foundation (JTF) module. Its purpose is to expose territory type qualifier configuration data — the rules that determine how territory types are qualified — to application code, reports, and external integrations. The view is a filtered projection over the underlying JTF_TERR_TYPE_QUAL_ALL table. As documented in the ETRM metadata, the description states it is "Same as JTF_TERR_TYPE_QUAL_ALL table," and its role is to present organization-scoped territory type qualifier records in a simplified, read-oriented form. In the Oracle EBS multi-org architecture, objects suffixed with _ALL store data across all operating units (filtered by ORG_ID), while the corresponding view without the suffix typically applies the session's organization context or presents the same columns for convenience. In this case, the view text performs a direct SELECT ... FROM JTF_TERR_TYPE_QUAL_ALL with no WHERE clause, meaning it exposes all rows and delegates any organization filtering to the caller. This distinguishes it from views that internally enforce a multi-org policy.
This view is relevant in Release 12.1.1 and 12.2.2. Note that the ETRM metadata records "Not implemented in this database" for implementation/DBA data, indicating the object may not exist in every environment or is seeded conditionally depending on the installed CRM/Territory Management configuration.
Underlying Base Objects
Per the view text, JTF_TERR_TYPE_QUAL is defined entirely over a single base object: JTF_TERR_TYPE_QUAL_ALL. No other base tables or joins are documented. The ETRM metadata lists referenced base objects as "none documented," but the view text explicitly names JTF_TERR_TYPE_QUAL_ALL as the source. The relationship is straightforward: the view is a column-for-column projection of the _ALL table, returning every row without additional filtering, joining, or aggregation. Consequently, any DML against these records should be directed at the base table (or the appropriate org-specific view), while this view is best treated as read-only for query and integration purposes.
Key Columns
The view exposes thirteen columns:
TERR_TYPE_QUAL_ID— Primary identifier for the territory type qualifier record.LAST_UPDATED_BY,LAST_UPDATE_DATE,CREATED_BY,CREATION_DATE,LAST_UPDATE_LOGIN— Standard who-columns providing audit and concurrency information.QUAL_USG_ID— Foreign reference to the qualifier usage definition, indicating how the qualifier is applied.TERR_TYPE_ID— Foreign reference to the territory type to which the qualifier belongs.IN_USE_FLAG— Indicates whether the qualifier is currently active.QUALIFIER_MODE— Defines the mode in which the qualifier is evaluated.EXCLUSIVE_USE_FLAG— Governs whether the qualifier's use is exclusive.OVERLAP_ALLOWED_FLAG— Controls whether overlapping territory assignments are permitted.ORG_ID— Operating unit identifier supporting multi-org data segregation.
Common Use Cases and Queries
Typical uses include validating territory type qualifier configuration, supporting territory assignment diagnostics, and feeding integrations that need qualifier rules. A basic query retrieves active qualifiers for a given territory type:
SELECT TERR_TYPE_QUAL_ID, QUAL_USG_ID, TERR_TYPE_ID, IN_USE_FLAG, QUALIFIER_MODE, ORG_ID FROM JTF_TERR_TYPE_QUAL WHERE TERR_TYPE_ID = :p_terr_type_id AND IN_USE_FLAG = 'Y' ORDER BY TERR_TYPE_QUAL_ID;
Because the view does not enforce organization filtering, multi-org-aware queries should constrain ORG_ID explicitly, or use the org-striping mechanisms appropriate to the environment. Always confirm object existence in a given instance, since the metadata records it as not implemented in the documented database.
-
View: JTF_TERR_TYPE_QUAL
12.2.2
product: JTF - CRM Foundation , description: Same as JTF_TERR_TYPE_QUAL_ALL table , implementation_dba_data: Not implemented in this database ,
-
View: JTF_TERR_TYPE_QUAL
12.1.1
product: JTF - CRM Foundation , description: Same as JTF_TERR_TYPE_QUAL_ALL table , implementation_dba_data: Not implemented in this database ,
-
APPS.JTF_TERR_TYPE_QUAL_PKG SQL Statements
12.1.1
-
VIEW: APPS.JTF_TERR_TYPE_QUAL_V
12.2.2
-
VIEW: APPS.JTF_TERR_TYPE_QUAL_V
12.1.1
-
APPS.JTF_TERR_TYPE_QUAL_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JTF_TERR_TYPE_QUAL_PKG
12.2.2
-
VIEW: APPS.JTF_TERR_TYPE_QUALIFIERS_V
12.2.2
-
PACKAGE BODY: APPS.JTF_TERR_TYPE_QUAL_PKG
12.1.1
-
VIEW: APPS.JTF_TERR_TYPE_QUALIFIERS_V
12.1.1
-
PACKAGE BODY: APPS.JTF_TERR_TYPE_QUAL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TERR_TYPE_QUAL_PKG, status:VALID,
-
View: JTF_TERR_TYPE_QUAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TYPE_QUAL_V, object_name:JTF_TERR_TYPE_QUAL_V, status:VALID, product: JTF - CRM Foundation , description: Shows Territory Type's qualifer and qualifer type usage description , implementation_dba_data: APPS.JTF_TERR_TYPE_QUAL_V ,
-
SYNONYM: APPS.JTF_TERR_TYPE_QUAL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TERR_TYPE_QUAL, status:VALID,
-
SYNONYM: APPS.JTF_TERR_TYPE_QUAL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TERR_TYPE_QUAL, status:VALID,
-
View: JTF_TERR_TYPE_QUAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TYPE_QUAL_V, object_name:JTF_TERR_TYPE_QUAL_V, status:VALID, product: JTF - CRM Foundation , description: Shows Territory Type's qualifer and qualifer type usage description , implementation_dba_data: APPS.JTF_TERR_TYPE_QUAL_V ,
-
PACKAGE BODY: APPS.JTF_TERRITORY_TYPE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TERRITORY_TYPE_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_QUALIFIER_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_QUALIFIER_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_QUALIFIER_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_QUALIFIER_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TERR_TYPE_QUAL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TERR_TYPE_QUAL_PKG, status:VALID,
-
VIEW: JTF.JTF_TERR_TYPE_QUAL_ALL#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_TERR_TYPE_QUAL_ALL#, status:VALID,
-
PACKAGE BODY: APPS.JTF_TERRITORY_TYPE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TERRITORY_TYPE_PVT, status:VALID,
-
View: JTF_TERR_TYPE_QUALIFIERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TYPE_QUALIFIERS_V, object_name:JTF_TERR_TYPE_QUALIFIERS_V, status:VALID, product: JTF - CRM Foundation , description: Shows Territory Type's qualifer type usage and the qualifer details. , implementation_dba_data: APPS.JTF_TERR_TYPE_QUALIFIERS_V ,
-
View: JTF_TERR_TYPE_QUALIFIERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TYPE_QUALIFIERS_V, object_name:JTF_TERR_TYPE_QUALIFIERS_V, status:VALID, product: JTF - CRM Foundation , description: Shows Territory Type's qualifer type usage and the qualifer details. , implementation_dba_data: APPS.JTF_TERR_TYPE_QUALIFIERS_V ,
-
VIEW: APPS.JTF_TERR_TYPE_QUAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TYPE_QUAL_V, object_name:JTF_TERR_TYPE_QUAL_V, status:VALID,
-
TABLE: JTF.JTF_TERR_TYPE_QUAL_ALL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TERR_TYPE_QUAL_ALL, object_name:JTF_TERR_TYPE_QUAL_ALL, status:VALID,
-
VIEW: APPS.JTF_TERR_TYPE_QUAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TYPE_QUAL_V, object_name:JTF_TERR_TYPE_QUAL_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.JTF_TERRITORY_TYPE_PVT SQL Statements
12.2.2
-
VIEW: APPS.JTF_TERR_TYPE_QUALIFIERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TYPE_QUALIFIERS_V, object_name:JTF_TERR_TYPE_QUALIFIERS_V, status:VALID,
-
VIEW: APPS.JTF_TERR_TYPE_QUALIFIERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TYPE_QUALIFIERS_V, object_name:JTF_TERR_TYPE_QUALIFIERS_V, status:VALID,
-
APPS.JTF_TERRITORY_TYPE_PVT SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.JTF_QUALIFIER_PVT SQL Statements
12.1.1
-
APPS.JTF_QUALIFIER_PVT SQL Statements
12.2.2
-
APPS.JTF_TERRITORY_TYPE_PVT dependencies on JTF_TERR_TYPE_QUAL
12.2.2
-
APPS.JTF_TERR_TYPE_QUAL_PKG dependencies on JTF_TERR_TYPE_QUAL
12.2.2
-
APPS.JTF_QUALIFIER_PVT dependencies on JTF_TERR_TYPE_QUAL
12.2.2
-
APPS.JTF_QUALIFIER_PVT dependencies on JTF_TERR_TYPE_QUAL
12.1.1
-
APPS.JTF_TERRITORY_TYPE_PVT dependencies on JTF_TERR_TYPE_QUAL
12.1.1
-
APPS.JTF_TERR_TYPE_QUAL_PKG dependencies on JTF_TERR_TYPE_QUAL
12.1.1
-
APPS.JTF_QUALIFIER_PVT dependencies on JTF_TERR
12.1.1
-
APPS.JTF_TERR_TYPE_QUAL_PKG dependencies on JTF_TERR_TYPE_QUAL_S
12.2.2
-
APPS.JTF_QUALIFIER_PVT dependencies on JTF_TERR
12.2.2
-
APPS.JTF_TERR_TYPE_QUAL_PKG dependencies on DUAL
12.2.2
-
APPS.JTF_TERR_TYPE_QUAL_PKG dependencies on JTF_TERR_TYPE_QUAL_S
12.1.1
-
APPS.JTF_TERR_TYPE_QUAL_PKG dependencies on DUAL
12.1.1
-
APPS.JTF_TERR_TYPE_QUAL_PKG dependencies on FND_API
12.2.2
-
APPS.JTF_TERR_TYPE_QUAL_PKG dependencies on FND_API
12.1.1