Search Results jty_dea_values_idx_header_u1
Overview
JTF.JTY_DEA_VALUES_IDX_HEADER is a transactional table in the Oracle E-Business Suite Applications Technology (JTF) schema. It stores index definitions that support date effectivity assignment (DEA) processing. In practical terms, the table records which database or logical index should be associated with a given source record, relation product, and qualification usage combination, and it tracks whether that index requires building. The table resides in the APPS_TS_TX_DATA tablespace with a PCTFREE of 10, reflecting a write-intensive transactional profile typical of concurrent DEA index maintenance.
Under the heuristic Data Vault classification derived from the foreign-key structure, this table is best modeled as a standalone hub-like entity. It does not act as a pure link between two business entities, and it carries its own descriptive attributes (the index name and build flags) that would behave as satellite content in a Data Vault design. The classification is offered as a modeling suggestion rather than a documented property.
Key Information Stored
The table contains 14 documented columns. The surrogate primary key is DEA_VALUES_IDX_HEADER_ID, a NUMBER column that also serves as the business-key candidate through the unique index JTY_DEA_VALUES_IDX_HEADER_U1. Because the unique index covers the same column as the primary key, there is no separate natural business key exposed in the documented metadata.
- DEA_VALUES_IDX_HEADER_ID — primary key and sole unique-index column; identifies each header record.
- SOURCE_ID — source identifier linking the row back to the originating record; used by two nonunique indexes (N1 with RELATION_PRODUCT, N2 with QUAL_USG_ID).
- RELATION_PRODUCT — relation product value participating in the N1 access path.
- QUAL_USG_ID — foreign key to JTF_QUAL_USGS_ALL, tying the index definition to a qualification usage.
- INDEX_NAME — VARCHAR2(30) name of the index; indexed by the nonunique JTY_DEA_VALUES_IDX_HEADER_N3 for name-based lookups.
- BUILD_INDEX_FLAG — flag indicating whether the index must be (re)built during DEA processing.
- DELETE_FLAG — soft-delete indicator used to logically retire rows without physical removal.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS; supports hosted (multi-tenant) environments.
- OBJECT_VERSION_NUMBER — optimistic locking counter managed by the framework.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — the standard WHO audit columns present on essentially every EBS transactional table.
Common Use Cases and Queries
Typical usage centers on diagnosing DEA index build failures, auditing which indexes remain unbuilt, and reporting index definitions per source or qualification usage. A common pattern filters on the build flag to find pending work:
SELECT SOURCE_ID, INDEX_NAME, BUILD_INDEX_FLAG FROM JTF.JTY_DEA_VALUES_IDX_HEADER WHERE BUILD_INDEX_FLAG = 'Y';- Joining to JTF_QUAL_USGS_ALL on QUAL_USG_ID to resolve usage names for reporting.
- Querying by INDEX_NAME (N3) to locate all headers referencing a given index.
- Excluding logically deleted rows with
WHERE DELETE_FLAG IS NULL OR DELETE_FLAG = 'N'. - Tracking modification activity through LAST_UPDATE_DATE and LAST_UPDATED_BY.
Related Objects
The documented FK relationships and dependencies identify the following significant related objects:
- JTF_QUAL_USGS_ALL — referenced through QUAL_USG_ID.
- FND_SECURITY_GROUPS — referenced through SECURITY_GROUP_ID for hosted environments.
- JTY_DEA_VALUES_IDX_HEADER# — the underlying table type object that references this table.
- JTF.JTY_DEA_VALUES_IDX_HEADER — the base table itself, queryable through the standard SELECT template documented in ETRM.
The table does not reference additional database objects beyond the two foreign keys noted, and the metadata does not document PL/SQL APIs or views that consume it. Any integration work should therefore be driven from the documented column list and the three nonunique indexes, all of which reside in the APPS_TS_TX_IDX tablespace.
-
INDEX: JTF.JTY_DEA_VALUES_IDX_HEADER_U1
12.2.2
owner:JTF, object_type:INDEX, object_name:JTY_DEA_VALUES_IDX_HEADER_U1, status:VALID,
-
INDEX: JTF.JTY_DEA_VALUES_IDX_HEADER_U1
12.1.1
owner:JTF, object_type:INDEX, object_name:JTY_DEA_VALUES_IDX_HEADER_U1, status:VALID,
-
TABLE: JTF.JTY_DEA_VALUES_IDX_HEADER
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTY_DEA_VALUES_IDX_HEADER, object_name:JTY_DEA_VALUES_IDX_HEADER, status:VALID,
-
TABLE: JTF.JTY_DEA_VALUES_IDX_HEADER
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTY_DEA_VALUES_IDX_HEADER, object_name:JTY_DEA_VALUES_IDX_HEADER, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,