Search Results jtf_qual_type_usgs
Overview
The JTF_QUAL_TYPE_USGS view is a reporting and integration object within the JTF - CRM Foundation product of Oracle E-Business Suite (EBS) releases 12.1.1 and 12.2.2. It is owned by the APPS schema and carries a VALID status in the ETRM repository. According to the documented metadata, the view is described as being "Same as JTF_QUAL_TYPE_USGS_ALL table," indicating that it is a thin, Org-filtered projection of the underlying multi-organization table rather than a view that performs aggregation, joins, or data transformation.
The naming convention follows the standard Oracle EBS pattern in which an _ALL suffixed table stores data across all operating units (ORG_ID), while the unsuffixed view exposes only the rows relevant to the current session's Org context. This design allows CRM Foundation functionality — specifically the assignment and tracking of qualification usage types — to be consumed by forms, concurrent programs, and reports under the Operating Unit (MOAC) security model without exposing cross-Org data inadvertently.
Underlying Base Objects
The documented base object referenced by this view is the table JTF_QUAL_TYPE_USGS_ALL, accessed through a synonym. The view definition is a straightforward SELECT against that table:
SELECT QUAL_TYPE_USG_ID, LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN, QUAL_TYPE_ID, SOURCE_ID, PACKAGE_NAME, PACKAGE_SPOOL_FILENAME, ORG_ID FROM JTF_QUAL_TYPE_USGS_ALL
Because it is defined only over JTF_QUAL_TYPE_USGS_ALL, the view inherits all columns, data types, and constraints from that table. It does not join to any lookup, qualification type, or source reference table at the database level. Any enrichment of the persisted values — for example, resolving QUAL_TYPE_ID to a human-readable qualification name or translating SOURCE_ID into a source system description — must be performed through joins in the consuming query or application layer.
Key Columns
The view exposes the following columns, each mapped directly from the base table:
- QUAL_TYPE_USG_ID — Primary identifier for a qualification type usage record.
- LAST_UPDATE_DATE — Timestamp of the most recent modification to the row.
- LAST_UPDATED_BY — User ID of the person or process that last updated the row.
- CREATION_DATE — Timestamp when the record was originally inserted.
- CREATED_BY — User ID that created the record.
- LAST_UPDATE_LOGIN — Login ID associated with the most recent update, used for audit purposes.
- QUAL_TYPE_ID — Foreign key to the qualification type definition, establishing which qualification a given usage belongs to.
- SOURCE_ID — Identifier of the originating source (such as a program or subsystem) that produced the usage record.
- PACKAGE_NAME — Name of the PL/SQL package or executable associated with the qualification usage, typically the routine that processed or evaluated the qualification.
- PACKAGE_SPOOL_FILENAME — Filename of the spool or output file generated when the qualification package was executed.
- ORG_ID — Operating Unit identifier that governs Multi-Org access to the row.
Common Use Cases and Queries
Because the view mirrors the _ALL table, typical usages involve auditing and diagnosing qualification processing — for example, determining which packages have been run against a qualification type, or locating spool files produced during qualification evaluation. A rudimentary query follows:
SELECT qual_type_usg_id, qual_type_id, package_name, package_spool_filename, last_update_date FROM jtf_qual_type_usgs WHERE org_id = :org_id ORDER BY last_update_date DESC;SELECT qtu.qual_type_usg_id, qtu.package_name, qtu.package_spool_filename FROM jtf_qual_type_usgs qtu WHERE qtu.qual_type_id = :qual_type_id;
When reporting across all operating units, developers may query the base table JTF_QUAL_TYPE_USGS_ALL directly, or rely on MOAC initialization to filter the view appropriately. Because the view contains no joins, performance is largely dependent on indexing of the underlying table on ORG_ID, QUAL_TYPE_ID, and the primary key QUAL_TYPE_USG_ID.
-
View: JTF_QUAL_TYPE_USGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_QUAL_TYPE_USGS, object_name:JTF_QUAL_TYPE_USGS, status:VALID, product: JTF - CRM Foundation , description: Same as JTF_QUAL_TYPE_USGS_ALL table , implementation_dba_data: APPS.JTF_QUAL_TYPE_USGS ,
-
View: JTF_QUAL_TYPE_USGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_QUAL_TYPE_USGS, object_name:JTF_QUAL_TYPE_USGS, status:VALID, product: JTF - CRM Foundation , description: Same as JTF_QUAL_TYPE_USGS_ALL table , implementation_dba_data: APPS.JTF_QUAL_TYPE_USGS ,
-
VIEW: APPS.JTF_TYPE_QTYPE_USGS_V
12.2.2
-
VIEW: APPS.JTF_TERR_TRANSACTIONS_V
12.2.2
-
APPS.JTF_QUAL_TYPE_USGS_PKG SQL Statements
12.1.1
-
VIEW: APPS.JTF_TYPE_QTYPE_USGS_V
12.1.1
-
VIEW: APPS.JTF_TERR_TRANSACTIONS_V
12.1.1
-
APPS.JTF_TERR_ENGINE_GEN2_PVT SQL Statements
12.1.1
-
APPS.JTF_QUAL_TYPE_USGS_PKG SQL Statements
12.2.2
-
VIEW: APPS.JTF_TERR_QUALIFIERS_V
12.1.1
-
APPS.JTF_TERR_ENGINE_GEN2_PVT SQL Statements
12.2.2
-
VIEW: APPS.JTF_TERR_QUALIFIERS_V
12.2.2
-
VIEW: APPS.AS_TERRITORIES_V
12.1.1
-
VIEW: APPS.AS_TERRITORIES_V
12.2.2
-
VIEW: APPS.JTF_TYPE_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.JTF_TYPE_TRANSACTIONS_V
12.2.2
-
PACKAGE BODY: APPS.JTF_QUAL_TYPE_USGS_PKG
12.1.1
-
APPS.OZF_QP_QUAL_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTF_QUAL_TYPE_USGS_PKG
12.2.2
-
VIEW: APPS.JTF_TERR_T_TRANS_DENORM_V
12.1.1
-
VIEW: APPS.JTF_TERR_TRANS_DENORM_V
12.1.1
-
VIEW: APPS.JTF_TERR_T_TRANS_DENORM_V
12.2.2
-
View: JTF_TERR_QUALIFIERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_QUALIFIERS_V, object_name:JTF_TERR_QUALIFIERS_V, status:VALID, product: JTF - CRM Foundation , description: This shows the qualifiers used to define a territory. , implementation_dba_data: APPS.JTF_TERR_QUALIFIERS_V ,
-
View: JTF_TERR_QUALIFIERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_QUALIFIERS_V, object_name:JTF_TERR_QUALIFIERS_V, status:VALID, product: JTF - CRM Foundation , description: This shows the qualifiers used to define a territory. , implementation_dba_data: APPS.JTF_TERR_QUALIFIERS_V ,
-
VIEW: APPS.JTF_TERR_TRANS_DENORM_V
12.2.2
-
VIEW: APPS.JTF_TERR_TYPE_QUALIFIERS_V
12.1.1
-
VIEW: APPS.JTF_SEEDED_QUAL_USGS_V
12.2.2
-
VIEW: APPS.JTF_TERR_TYPE_QUALIFIERS_V
12.2.2
-
VIEW: APPS.JTF_SEEDED_QUAL_USGS_V
12.1.1
-
PACKAGE BODY: APPS.JTF_QUAL_TYPE_USGS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_QUAL_TYPE_USGS_PKG, status:VALID,
-
View: JTF_TYPE_QTYPE_USGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TYPE_QTYPE_USGS_V, object_name:JTF_TYPE_QTYPE_USGS_V, status:VALID, product: JTF - CRM Foundation , description: Shows Territory Type's qualifer type usage description , implementation_dba_data: APPS.JTF_TYPE_QTYPE_USGS_V ,
-
View: JTF_TYPE_QTYPE_USGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TYPE_QTYPE_USGS_V, object_name:JTF_TYPE_QTYPE_USGS_V, status:VALID, product: JTF - CRM Foundation , description: Shows Territory Type's qualifer type usage description , implementation_dba_data: APPS.JTF_TYPE_QTYPE_USGS_V ,
-
Table: JTF_QUAL_USGS_ALL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_QUAL_USGS_ALL, object_name:JTF_QUAL_USGS_ALL, status:VALID, product: JTF - CRM Foundation , description: This table stores the association between a qualifer and the transaction type of a source via JTF_QUAL_TYPE_USGS (stores association between SOURCES/QUALIFER TYPES tables). , implementation_dba_data: JTF.JTF_QUAL_USGS_ALL ,
-
Table: JTF_QUAL_USGS_ALL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_QUAL_USGS_ALL, object_name:JTF_QUAL_USGS_ALL, status:VALID, product: JTF - CRM Foundation , description: This table stores the association between a qualifer and the transaction type of a source via JTF_QUAL_TYPE_USGS (stores association between SOURCES/QUALIFER TYPES tables). , implementation_dba_data: JTF.JTF_QUAL_USGS_ALL ,
-
PACKAGE BODY: APPS.JTF_QUAL_TYPE_USGS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_QUAL_TYPE_USGS_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_TERR_DENORM_RULES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TERR_DENORM_RULES_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TERR_DENORM_RULES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TERR_DENORM_RULES_PVT, status:VALID,
-
View: JTF_TERR_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TRANSACTIONS_V, object_name:JTF_TERR_TRANSACTIONS_V, status:VALID, product: JTF - CRM Foundation , description: This view shows the transactions that are assigned to a territory. , implementation_dba_data: APPS.JTF_TERR_TRANSACTIONS_V ,
-
PACKAGE BODY: APPS.JTF_TERR_ENGINE_GEN2_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TERR_ENGINE_GEN2_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TERR_ENGINE_GEN2_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TERR_ENGINE_GEN2_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTY_ASSIGN_BULK_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTY_ASSIGN_BULK_PUB, status:VALID,
-
PACKAGE BODY: APPS.JTF_TAE_CONTROL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TAE_CONTROL_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TAE_CONTROL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TAE_CONTROL_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTY_TERR_ENGINE_GEN2_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTY_TERR_ENGINE_GEN2_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTY_TERR_ENGINE_GEN2_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTY_TERR_ENGINE_GEN2_PVT, status:VALID,
-
APPS.OZF_QP_QUAL_PVT SQL Statements
12.2.2
-
View: JTF_TERR_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_TRANSACTIONS_V, object_name:JTF_TERR_TRANSACTIONS_V, status:VALID, product: JTF - CRM Foundation , description: This view shows the transactions that are assigned to a territory. , implementation_dba_data: APPS.JTF_TERR_TRANSACTIONS_V ,
-
PACKAGE BODY: APPS.JTF_TERRITORY_TYPE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TERRITORY_TYPE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_QP_QUAL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_QP_QUAL_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSF_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_UTIL_PVT, status:VALID,