Search Results igi_exp_dus_all
Overview
IGI_EXP_DUS_ALL is a transactional table in the IGI (Public Sector Financials International) product family within Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented description states that it "stores the dialog units," and its structure, foreign keys, and dependent child tables confirm that it functions as the central record for a "Dialog Unit" (DU) — a discrete financial instrument or transaction tracked for expenditure control, advance, or commitment purposes in a public-sector accounting context. The document content excerpt marks the object owner as IGI, status VALID.
The table is keyed by the surrogate primary key IGI_EXP_DUS_PK on the DU_ID column, and a unique index (IGI_EXP_DUS_U1) on DU_ID is the documented business-key candidate. The heuristic Data Vault classification mined from the FK structure is satellite-leaning, suggesting that IGI_EXP_DUS_ALL should be modeled as descriptive/transactional detail that hangs off hub entities such as IGI_EXP_TUS_ALL and IGI_EXP_DU_TYPE_HEADERS_ALL. The table carries the full 38 documented columns, including standard EBS WHO columns and fifteen ATTRIBUTE1–ATTRIBUTE15 flex fields.
Key Information Stored
- DU_ID — Surrogate primary key (IGI_EXP_DUS_PK); the unique-index candidate IGI_EXP_DUS_U1 is also on this column.
- DU_TYPE_HEADER_ID — FK to IGI_EXP_DU_TYPE_HEADERS_ALL; identifies the dialog unit type definition.
- DU_ORDER_NUMBER / DU_LEGAL_NUMBER / DU_DESCRIPTION — Business identifiers and free-text description for the dialog unit.
- DU_STATUS — Lifecycle/state indicator for the unit.
- DU_AMOUNT and DU_PREPAY_AMOUNT — Monetary value and any prepaid/advance portion.
- DU_CURRENCY_CODE — FK to FND_CURRENCIES; the transactional currency.
- DU_STP_ID and DU_STP_SITE_ID — FK to PO_VENDORS and a supplier site reference (payee/stop-pay entity).
- TU_ID — FK to IGI_EXP_TUS_ALL, linking the DU to its parent "TUS" grouping.
- DU_FISCAL_YEAR, DU_DATE, PRINT_DATE — Accounting-period and processing dates.
- DU_BY_USER_ID — Originating user reference.
- ORG_ID — Multi-org operating unit context.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit (WHO) columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — Descriptive flexfield storage.
Common Use Cases and Queries
Practical reporting typically starts from the DU_ID join to its dependent transaction tables or from the FK hierarchies upward to the TUS and DU-type headers. Common patterns include:
- Listing outstanding dialog units for an operating unit:
SELECT du_id, du_order_number, du_status, du_amount, du_currency_code FROM igi.igi_exp_dus_all WHERE org_id = :org_id AND du_status = :status; - Joining to supplier information via the FK to PO_VENDORS:
... FROM igi_exp_dus_all d, po_vendors v WHERE d.du_stp_id = v.vendor_id; - Rolling DU amounts up to the TUS level:
... FROM igi_exp_dus_all d, igi_exp_tus_all t WHERE d.tu_id = t.tu_id; - Driving AP and AR transaction detail through the child tables IGI_EXP_AP_TRANS_ALL and IGI_EXP_AR_TRANS_ALL on DU_ID.
- Currency conversion or reporting using FND_CURRENCIES via DU_CURRENCY_CODE.
Related Objects
- IGI_EXP_DU_TYPE_HEADERS_ALL — referenced via DU_TYPE_HEADER_ID; defines the dialog unit type.
- IGI_EXP_TUS_ALL — referenced via TU_ID; parent grouping for the DU.
- FND_CURRENCIES — referenced via DU_CURRENCY_CODE.
- PO_VENDORS — referenced via DU_STP_ID (supplier/payee).
- IGI_EXP_AP_TRANS_ALL — child table referencing IGI_EXP_DUS_ALL.DU_ID (payables transactions).
- IGI_EXP_AR_TRANS_ALL — child table referencing IGI_EXP_DUS_ALL.DU_ID (receivables transactions).
Together these relationships make IGI_EXP_DUS_ALL the pivotal transactional hub for dialog-unit activity, joining type definitions, parent groupings, suppliers, currencies, and both AP and AR transaction detail within the IGI public-sector financials schema.
-
Table: IGI_EXP_DUS_ALL
12.1.1
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_DUS_ALL, object_name:IGI_EXP_DUS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the dialog units , implementation_dba_data: IGI.IGI_EXP_DUS_ALL ,
-
Table: IGI_EXP_DUS_ALL
12.2.2
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_DUS_ALL, object_name:IGI_EXP_DUS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the dialog units , implementation_dba_data: IGI.IGI_EXP_DUS_ALL ,
-
SYNONYM: APPS.IGI_EXP_DUS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IGI_EXP_DUS_ALL, status:VALID,
-
VIEW: IGI.IGI_EXP_DUS_ALL#
12.2.2
owner:IGI, object_type:VIEW, object_name:IGI_EXP_DUS_ALL#, status:VALID,
-
SYNONYM: APPS.IGI_EXP_DUS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGI_EXP_DUS_ALL, status:VALID,
-
APPS.IGI_EXP_DUS_PKG SQL Statements
12.1.1
-
APPS.IGI_EXP_DUS_PKG SQL Statements
12.2.2
-
Table: IGI_EXP_DU_TYPE_HEADERS_ALL
12.1.1
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_DU_TYPE_HEADERS_ALL, object_name:IGI_EXP_DU_TYPE_HEADERS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the headers information for the DU type definition , implementation_dba_data: IGI.IGI_EXP_DU_TYPE_HEADERS_ALL ,
-
VIEW: IGI.IGI_EXP_DUS_ALL#
12.2.2
-
VIEW: APPS.IGI_EXP_DUS_IN_TUS_V
12.1.1
-
VIEW: APPS.IGI_EXP_DUS_IN_TUS_V
12.2.2
-
PACKAGE BODY: APPS.IGI_EXP_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_EXP_UTILS, status:VALID,
-
Table: IGI_EXP_AR_TRANS_ALL
12.1.1
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_AR_TRANS_ALL, object_name:IGI_EXP_AR_TRANS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the receivables transactions that are held within a DU , implementation_dba_data: IGI.IGI_EXP_AR_TRANS_ALL ,
-
Table: IGI_EXP_AP_TRANS_ALL
12.1.1
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_AP_TRANS_ALL, object_name:IGI_EXP_AP_TRANS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the payables transactions that are held within a DU , implementation_dba_data: IGI.IGI_EXP_AP_TRANS_ALL ,
-
Table: IGI_EXP_AR_TRANS_ALL
12.2.2
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_AR_TRANS_ALL, object_name:IGI_EXP_AR_TRANS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the receivables transactions that are held within a DU , implementation_dba_data: IGI.IGI_EXP_AR_TRANS_ALL ,
-
Table: IGI_EXP_AP_TRANS_ALL
12.2.2
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_AP_TRANS_ALL, object_name:IGI_EXP_AP_TRANS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the payables transactions that are held within a DU , implementation_dba_data: IGI.IGI_EXP_AP_TRANS_ALL ,
-
Table: IGI_EXP_DU_TYPE_HEADERS_ALL
12.2.2
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_DU_TYPE_HEADERS_ALL, object_name:IGI_EXP_DU_TYPE_HEADERS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the headers information for the DU type definition , implementation_dba_data: IGI.IGI_EXP_DU_TYPE_HEADERS_ALL ,
-
Table: IGI_EXP_TUS_ALL
12.1.1
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_TUS_ALL, object_name:IGI_EXP_TUS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the transmission units , implementation_dba_data: IGI.IGI_EXP_TUS_ALL ,
-
Table: IGI_EXP_TUS_ALL
12.2.2
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_TUS_ALL, object_name:IGI_EXP_TUS_ALL, status:VALID, product: IGI - Public Sector Financials International , description: Stores the transmission units , implementation_dba_data: IGI.IGI_EXP_TUS_ALL ,
-
TABLE: IGI.IGI_EXP_DUS_ALL
12.1.1
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_DUS_ALL, object_name:IGI_EXP_DUS_ALL, status:VALID,
-
TABLE: IGI.IGI_EXP_DUS_ALL
12.2.2
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_EXP_DUS_ALL, object_name:IGI_EXP_DUS_ALL, status:VALID,
-
SYNONYM: APPS.IGI_EXP_DUS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IGI_EXP_DUS, status:VALID,
-
SYNONYM: APPS.IGI_EXP_DUS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGI_EXP_DUS, status:VALID,
-
PACKAGE BODY: APPS.IGI_EXP_DUS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_EXP_DUS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGI_EXP_DUS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_EXP_DUS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGI_EXP_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_EXP_UTILS, status:VALID,
-
PACKAGE BODY: APPS.IGI_EXP_DUS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGI_EXP_DUS_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.IGI_EXP_DUS_IN_TUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DUS_IN_TUS_V, object_name:IGI_EXP_DUS_IN_TUS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.IGI_EXP_DUS_IN_TUS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DUS_IN_TUS_V, object_name:IGI_EXP_DUS_IN_TUS_V, status:VALID,
-
Table: PO_VENDORS
12.2.2
product: PO - Purchasing , description: Suppliers , implementation_dba_data: Not implemented in this database ,
-
12.2.2 DBA Data
12.2.2
-
Table: PO_VENDORS
12.1.1
product: PO - Purchasing , description: Suppliers , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
Table: FND_CURRENCIES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
APPS.IGI_EXP_DUS_PKG dependencies on IGI_EXP_DUS_ALL
12.2.2
-
APPS.IGI_EXP_UTILS dependencies on IGI_EXP_DUS_ALL
12.2.2
-
Table: FND_CURRENCIES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
APPS.IGI_EXP_UTILS dependencies on IGI_EXP_DUS_ALL
12.1.1
-
APPS.IGI_EXP_DUS_PKG dependencies on IGI_EXP_DUS_ALL
12.1.1
-
eTRM - IGI Tables and Views
12.2.2
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,
-
eTRM - IGI Tables and Views
12.1.1
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,