Search Results igi_exp_du_type_headers_u1




Overview

IGI.IGI_EXP_DU_TYPE_HEADERS_ALL is the header-level definition table for Dialog Unit (DU) types within the Oracle E-Business Suite Procurement and Spend family, owned by the IGI (Oracle Contracts / Procurement) schema. It stores the master definition of each Dialog Unit type as configured through the form IGIPDUTP. A Dialog Unit represents a logical grouping used in third-party and supplier-facing transactions; the header table captures the descriptive, effective-dating, and organizational attributes that govern how a DU type may be used. The table resides in the APPS_TS_TX_DATA tablespace with an index tablespace of APPS_TS_TX_IDX, and it forms the parent (master) side of several detail relationships.

From a data-modeling perspective, the metadata carries a heuristic Data Vault classification of hub-leaning. Treated as a modeling suggestion, this reflects that the table behaves as a durable, business-keyed master entity — a central reference point from which detail tables hang — rather than as a transactional link or a rapidly changing satellite. The single-column surrogate primary key and the stable business key reinforce this hub-like character.

Key Information Stored

The table contains fourteen documented columns. The most significant are listed below, distinguishing the surrogate key from the business-key candidates.

Common Use Cases and Queries

Typical usage centers on validating or reporting DU type configurations. A common pattern joins header to detail and restrict by effective date.

  • Active DU type listing: SELECT du_type_header_id, du_type_name, du_type_desc FROM igi.igi_exp_du_type_headers_all WHERE TRUNC(SYSDATE) BETWEEN start_date AND NVL(end_date, SYSDATE) AND org_id = :p_org_id ORDER BY du_type_name;
  • Lookup by business key: querying by DU_TYPE_NAME and ORG_ID leverages the IGI_EXP_DU_TYPE_HEADERS_U2 index for fast retrieval.
  • Single third-party restriction reporting: filtering on STP_ONLY = 'Y' OR STP_SITE_ONLY = 'Y' to identify types constrained to specific sites.
  • Corporate vs. local scoping: examining ORG_ID values to separate global DU type definitions from organization-specific ones.

Because the table is the header for the DU hierarchy, it is frequently the driving table when extracting full DU definitions for integration with downstream procurement flows.

Related Objects

The header table is referenced by several detail tables through the DU_TYPE_HEADER_ID foreign key:

These dependent objects establish IGI_EXP_DU_TYPE_HEADERS_ALL as the master hub from which the DU definition tree radiates, confirming its role as the authoritative registry for Dialog Unit types in the Oracle EBS 12.1.1 and 12.2.2 IGI schema.