Search Results igi_exp_du_status
Overview
APPS.IGI_EXP_DUS_IN_TUS_V is a reporting and integration view in Oracle E-Business Suite that exposes Document Utilization (DU) records that have been associated with a Tracking Unit (TU). It is part of the Oracle Grants/IGI Expense (IGI_EXP) schema family, which supports expense tracking, document utilization, and tracking unit management for governmental and grant-funded operations. The view consolidates a DU header record with its descriptive, currency, status, and audit context so that downstream reports, concurrent programs, and interfaces can query fully described DU rows without performing the joins themselves.
The defining characteristic of this view is the predicate IED.TU_ID IS NOT NULL. Only DU records already linked to a Tracking Unit are returned, which distinguishes this view from the base DU entity and makes it the appropriate source for TU-oriented reporting. The user search term "igi_exp_du_status" corresponds directly to the status columns exposed here: the raw code column DU_STATUS and its decoded counterpart STATUS_DESC, resolved through the IGI_LOOKUPS view using lookup type IGI_EXP_DU_STATUS. The view carries an ORG_ID column, so it is multi-org aware and must be queried with the appropriate operating unit or through a MOAC-enabled query.
Underlying Base Objects
The view is defined over six documented objects in the APPS schema:
- IGI_EXP_DUS_ALL (synonym) — the primary Document Utilization table, aliased IED. It supplies the DU identifier, type header reference, order and legal numbers, amounts, status code, TU linkage, date fields, and the DFF attribute columns.
- IGI_EXP_DU_TYPE_HEADERS_ALL (synonym) — aliased IEDTH; provides DU_TYPE_NAME and APPLICATION_ID through the join on DU_TYPE_HEADER_ID.
- FND_APPLICATION_VL (view) — aliased FAL; resolves APPLICATION_ID to APPLICATION_NAME.
- FND_CURRENCIES (synonym) — aliased FC; supplies the currency DESCRIPTION matched to DU_CURRENCY_CODE.
- FND_USER (synonym) — aliased FU; resolves DU_BY_USER_ID to the user name DU_BY_USER_NAME.
- IGI_LOOKUPS (view) — aliased IL; translates DU_STATUS into the meaning STATUS_DESC when LOOKUP_TYPE = 'IGI_EXP_DU_STATUS'.
All joins are equi-joins on the corresponding key columns; the view is effectively a denormalized projection of the DU header plus reference data.
Key Columns
- ORG_ID, ROW_ID, DU_ID — operating unit, row identifier, and primary DU key.
- DU_TYPE_HEADER_ID, DU_TYPE_NAME, APPLICATION_ID, APPLICATION_NAME — document utilization type and the owning application.
- DU_ORDER_NUMBER, DU_LEGAL_NUMBER, DU_DESCRIPTION — identification and narrative fields.
- DU_CURRENCY_CODE, DU_CURRENCY — currency code and its description.
- DU_STATUS, STATUS_DESC — status code and decoded meaning from lookup type IGI_EXP_DU_STATUS.
- DU_AMOUNT, DU_PREPAY_AMOUNT — utilization and prepayment amounts.
- DU_STP_ID, DU_STP_SITE_ID — supplier/site references.
- TU_ID — tracking unit linkage, enforced NOT NULL by the view definition.
- DU_FISCAL_YEAR, DU_DATE, PRINT_DATE — fiscal and processing dates.
- DU_BY_USER_ID, DU_BY_USER_NAME — the user who applied the DU.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard audit columns.
- ATTRIBUTE_CATEGORY, ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield context and segments.
Common Use Cases and Queries
Typical uses include TU-level utilization reports, reconciliation of DU status against the IGI_EXP_DU_STATUS lookup, grant expense dashboards, and integration extracts where consumed DUs tied to tracking units are needed with decoded values.
Retrieve DUs for a tracking unit with status descriptions:
SELECT du_id, du_order_number, du_amount, du_currency_code, status_desc, tu_id FROM apps.igi_exp_dus_in_tus_v WHERE tu_id = :p_tu_id AND org_id = :p_org_id;
Filter by status meaning as surfaced by the search term:
SELECT du_id, du_order_number, status_desc, du_date FROM apps.igi_exp_dus_in_tus_v WHERE du_status = 'APPROVED' AND org_id = :p_org_id ORDER BY du_date DESC;
Currency-denominated aggregation for TU reporting:
SELECT du_currency_code, SUM(du_amount) total_du FROM apps.igi_exp_dus_in_tus_v WHERE tu_id = :p_tu_id GROUP BY du_currency_code;
Because the view presumes existing TU linkage and pre-joined reference data, it is preferable to ad hoc queries against IGI_EXP_DUS_ALL whenever TU-scoped DU data with decoded status and currency is required.
-
Lookup Type: IGI_EXP_DU_STATUS
12.1.1
product: IGI - Public Sector Financials International , meaning: Exchange Protocol Dialog Unit Status , description: Exchange Protocol Dialog Unit Status ,
-
Lookup Type: IGI_EXP_DU_STATUS
12.2.2
product: IGI - Public Sector Financials International , meaning: Exchange Protocol Dialog Unit Status , description: Exchange Protocol Dialog Unit Status ,
-
VIEW: APPS.IGI_EXP_DUS_IN_TUS_V
12.2.2
-
VIEW: APPS.IGI_EXP_DUS_NOT_IN_TUS_V
12.2.2
-
VIEW: APPS.IGI_EXP_DUS_IN_TUS_V
12.1.1
-
VIEW: APPS.IGI_EXP_DUS_NOT_IN_TUS_V
12.1.1
-
VIEW: APPS.IGI_EXP_DUS_V
12.1.1
-
VIEW: APPS.IGI_EXP_DUS_V
12.2.2
-
View: IGI_EXP_DUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DUS_V, object_name:IGI_EXP_DUS_V, status:VALID, product: IGI - Public Sector Financials International , description: Returns details of all dialog units. Primarily used in 'define Dialog Units' form. , implementation_dba_data: APPS.IGI_EXP_DUS_V ,
-
View: IGI_EXP_DUS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DUS_V, object_name:IGI_EXP_DUS_V, status:VALID, product: IGI - Public Sector Financials International , description: Returns details of all dialog units. Primarily used in 'define Dialog Units' form. , implementation_dba_data: APPS.IGI_EXP_DUS_V ,
-
View: 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, product: IGI - Public Sector Financials International , description: Displays details of Dialog Units which are inside Transmission Units. Primarily used by 'Define Transmission Units' screen. , implementation_dba_data: APPS.IGI_EXP_DUS_IN_TUS_V ,
-
View: IGI_EXP_DUS_NOT_IN_TUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DUS_NOT_IN_TUS_V, object_name:IGI_EXP_DUS_NOT_IN_TUS_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays Dialog Units which are not included in Transmission Units. primarily used by form 'Define Transmission Units' , implementation_dba_data: APPS.IGI_EXP_DUS_NOT_IN_TUS_V ,
-
View: IGI_EXP_DUS_NOT_IN_TUS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DUS_NOT_IN_TUS_V, object_name:IGI_EXP_DUS_NOT_IN_TUS_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays Dialog Units which are not included in Transmission Units. primarily used by form 'Define Transmission Units' , implementation_dba_data: APPS.IGI_EXP_DUS_NOT_IN_TUS_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
View: 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, product: IGI - Public Sector Financials International , description: Displays details of Dialog Units which are inside Transmission Units. Primarily used by 'Define Transmission Units' screen. , implementation_dba_data: APPS.IGI_EXP_DUS_IN_TUS_V ,