Search Results igi_exp_dus
Overview
APPS.IGI_EXP_DUS_NOT_IN_TUS_V is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, owned by the APPS schema. It belongs to the IGI (Oracle Grants / Public Sector) product family and specifically supports the Expediture Certification / Document Understanding feature set. As its name implies, the view exposes Document Under (DU) expenditure records that are not yet associated with a Transaction Under (TU). It is therefore a "pending" or "unmatched" expenditure view, presenting those DU records whose TU_ID is null and which are awaiting linkage to a Transaction Under record.
The view is designed for reporting and integration rather than transaction processing. It denormalizes data from several base tables into a single, human-readable result set, adding descriptive text such as application name, currency description, status meaning, and the user name of the person who created the DU. This makes it suitable for concurrent programs, Oracle Reports, OBIEE/XML Publisher extracts, and ad-hoc SQL used by grant administrators reconciling unmatched expenditures.
Underlying Base Objects
The view is defined over six documented base objects, joined as follows:
- IGI_EXP_DUS (synonym) — the driving table holding the Document Under expenditure records. Aliased IED.
- IGI_EXP_DU_TYPE_HEADERS_ALL (synonym) — the DU type header definition, aliased IEDTH, providing DU_TYPE_NAME and APPLICATION_ID.
- FND_APPLICATION_VL (view) — the application definition view, aliased FAL, supplying APPLICATION_NAME.
- FND_CURRENCIES (synonym) — aliased FC, supplying the currency description DU_CURRENCY.
- FND_USER (synonym) — aliased FU, supplying the creating user's name DU_BY_USER_NAME.
- IGI_LOOKUPS (view) — aliased IL, supplying the status meaning STATUS_DESC for lookup type 'IGI_EXP_DU_STATUS'.
The join predicates link DU to its type header (DU_TYPE_HEADER_ID), to the application (IEDTH.APPLICATION_ID = FAL.APPLICATION_ID), to the currency (FC.CURRENCY_CODE = IED.DU_CURRENCY_CODE), to the creating user (FU.USER_ID = IED.DU_BY_USER_ID), and to the lookup for status (IL.LOOKUP_CODE = IED.DU_STATUS AND IL.LOOKUP_TYPE = 'IGI_EXP_DU_STATUS'). The critical filter is IED.TU_ID IS NULL, which restricts the result set to unmatched DU records.
Key Columns
- ORG_ID — the operating unit / organization identifier, supporting multi-org security.
- ROW_ID — the ROWID of the underlying IGI_EXP_DUS row.
- DU_ID — the primary identifier of the Document Under record.
- DU_TYPE_HEADER_ID / DU_TYPE_NAME / APPLICATION_ID / APPLICATION_NAME — the DU type classification and the owning application.
- DU_ORDER_NUMBER, DU_LEGAL_NUMBER, DU_DESCRIPTION — business identifiers and description.
- DU_CURRENCY_CODE, DU_CURRENCY — currency code and its descriptive name.
- DU_AMOUNT, DU_PREPAY_AMOUNT — the expenditure amount and any prepayment applied.
- DU_STATUS, STATUS_DESC — the status code and its translated meaning via IGI_LOOKUPS.
- DU_STP_ID, DU_STP_SITE_ID — supplier and supplier site references.
- TU_ID — the Transaction Under link; always NULL in this view by definition.
- PRINT_DATE, DU_FISCAL_YEAR, DU_DATE — dates relevant to the expenditure.
- DU_BY_USER_ID, DU_BY_USER_NAME — the user who raised the DU.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard audit Who columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the descriptive flexfield segments.
Common Use Cases and Queries
The principal use case is identifying Document Under expenditures that have not yet been matched to a Transaction Under, so that they can be reviewed, reconciled, or interfaced onward. Because the view already resolves codes into descriptions, it is convenient for direct reporting without additional lookups.
A typical query lists pending DUs for a given operating unit:
SELECT DU_ID, DU_TYPE_NAME, DU_ORDER_NUMBER, DU_LEGAL_NUMBER,
DU_AMOUNT, DU_CURRENCY, STATUS_DESC, DU_DATE, DU_BY_USER_NAME
FROM APPS.IGI_EXP_DUS_NOT_IN_TUS_V
WHERE ORG_ID = :p_org_id
ORDER BY DU_DATE DESC;
A second query aggregates pending amounts by status and currency:
SELECT STATUS_DESC, DU_CURRENCY, COUNT(*) DU_COUNT, SUM(DU_AMOUNT) TOTAL_AMOUNT
FROM APPS.IGI_EXP_DUS_NOT_IN_TUS_V
GROUP BY STATUS_DESC, DU_CURRENCY;
A third restricts to records created within a fiscal year:
SELECT DU_ID, DU_FISCAL_YEAR, DU_AMOUNT, STATUS_DESC
FROM APPS.IGI_EXP_DUS_NOT_IN_TUS_V
WHERE DU_FISCAL_YEAR = :p_year;
Because the view is read-only and derived from the transactional base table IGI_EXP_DUS, joins to other IGI tables on DU_ID can be added where deeper detail is required.
-
APPS.IGI_EXP_APPROVAL_PKG SQL Statements
12.1.1
-
APPS.IGI_EXP_APPROVAL_PKG SQL Statements
12.2.2
-
APPS.IGI_VENDOR_MERGE_GRP SQL Statements
12.2.2
-
APPS.IGI_VENDOR_MERGE_GRP SQL Statements
12.1.1
-
VIEW: APPS.IGI_EXP_DUS_NOT_IN_TUS_V
12.1.1
-
VIEW: APPS.IGI_EXP_DUS_NOT_IN_TUS_V
12.2.2
-
PACKAGE BODY: APPS.IGI_VENDOR_MERGE_GRP
12.1.1
-
PACKAGE BODY: APPS.IGI_VENDOR_MERGE_GRP
12.2.2
-
VIEW: APPS.IGI_EXP_DUS_V
12.2.2
-
VIEW: APPS.IGI_EXP_DUS_V
12.1.1
-
SYNONYM: APPS.IGI_EXP_DUS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IGI_EXP_DUS, status:VALID,
-
View: IGI_EXP_DU_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DU_LINES_V, object_name:IGI_EXP_DU_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Returns details of all Payables and Receivables transactions that are included in Dialog Units. , implementation_dba_data: APPS.IGI_EXP_DU_LINES_V ,
-
SYNONYM: APPS.IGI_EXP_DUS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGI_EXP_DUS, status:VALID,
-
PACKAGE BODY: APPS.IGI_VENDOR_MERGE_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_VENDOR_MERGE_GRP, status:VALID,
-
View: IGI_EXP_DU_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DU_LINES_V, object_name:IGI_EXP_DU_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Returns details of all Payables and Receivables transactions that are included in Dialog Units. , implementation_dba_data: APPS.IGI_EXP_DU_LINES_V ,
-
PACKAGE BODY: APPS.IGI_EXP_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_EXP_UTILS, status:VALID,
-
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 ,
-
PACKAGE BODY: APPS.IGI_VENDOR_MERGE_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_VENDOR_MERGE_GRP, status:VALID,
-
PACKAGE BODY: APPS.IGI_EXP_APPROVAL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_EXP_APPROVAL_PKG, status:VALID,
-
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 ,
-
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_APPROVAL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IGI_EXP_APPROVAL_PKG, status:VALID,
-
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 ,
-
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 ,
-
VIEW: IGI.IGI_EXP_DUS_ALL#
12.2.2
owner:IGI, object_type:VIEW, object_name:IGI_EXP_DUS_ALL#, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IGI_EXP_APPROVAL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGI_EXP_APPROVAL_PKG
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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,
-
APPS.IGI_EXP_UTILS SQL Statements
12.1.1
-
APPS.IGI_EXP_UTILS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IGI_EXP_UTILS
12.1.1
-
PACKAGE BODY: APPS.IGI_EXP_UTILS
12.2.2
-
APPS.IGI_EXP_APPROVAL_PKG dependencies on IGI_EXP_DUS
12.1.1
-
APPS.IGI_VENDOR_MERGE_GRP dependencies on IGI_EXP_DUS
12.2.2
-
APPS.IGI_EXP_UTILS dependencies on IGI_EXP_DUS
12.1.1
-
APPS.IGI_EXP_UTILS dependencies on IGI_EXP_DUS
12.2.2
-
APPS.IGI_VENDOR_MERGE_GRP dependencies on IGI_EXP_DUS
12.1.1
-
APPS.IGI_EXP_APPROVAL_PKG dependencies on IGI_EXP_DUS
12.2.2
-
APPS.IGI_VENDOR_MERGE_GRP dependencies on FND_GLOBAL
12.2.2
-
APPS.IGI_VENDOR_MERGE_GRP dependencies on FND_GLOBAL
12.1.1
-
APPS.IGI_EXP_APPROVAL_PKG dependencies on IGI_EXP_TU_RUN_S1
12.2.2
-
APPS.IGI_EXP_APPROVAL_PKG dependencies on IGI_EXP_AR_TRANS
12.2.2