Search Results budget_category
Overview
IGW_BUDGET_LINE_CATEGORY_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the IGW – Grants Proposal product. Its documented purpose is to display the expenditure type, the associated budget category, and the line item cost for budget lines. In practice, the view flattens budget line detail into a denormalized, human-readable form by resolving the raw budget category code into its display meaning and by reconciling the expenditure type recorded on the budget line against the expenditure type defined for the budget period.
Because Grants Proposal budgeting is organized hierarchically — proposal, version, budget period, and line item — the view exposes all four levels of that hierarchy alongside the financial and descriptive attributes of each line. This makes it a convenient source for reporting on how proposed costs are distributed across budget categories such as personnel, supplies, travel, or indirect costs. The view is read-only and is intended for query and reporting rather than transaction processing; concurrent programs, BI Publisher reports, OBIEE/OTBI extracts, and custom SQL frequently reference it when budget category breakdowns are required. It is valid in Oracle EBS 12.1.1 and 12.2.2, and since it resides in APPS, callers should reference it as APPS.IGW_BUDGET_LINE_CATEGORY_V or, when grants are used, as IGW.IGW_BUDGET_LINE_CATEGORY_V, respecting the standard grants synonym and security model.
Underlying Base Objects
The documented view text identifies three referenced objects:
- IGW_BUDGET_DETAILS (alias PBD) — the primary source of budget line rows. It supplies PROPOSAL_ID, VERSION_ID, BUDGET_PERIOD_ID, LINE_ITEM_ID, LINE_ITEM_COST, EXPENDITURE_TYPE, LINE_ITEM_DESCRIPTION, BUDGET_CATEGORY_CODE, BUDGET_JUSTIFICATION, and the EXPENDITURE_CATEGORY_FLAG used in the join.
- IGW_BUDGET_EXPENDITURES_V (alias ET) — a supporting view that maps budget expenditure types and category flags. It is joined using
PBD.EXPENDITURE_TYPE = NVL(ET.BUDGET_EXPENDITURE, PBD.EXPENDITURE_TYPE)together withPBD.EXPENDITURE_CATEGORY_FLAG = ET.EXPENDITURE_CATEGORY_FLAG, ensuring that a line's expenditure type is resolved against the valid budget expenditure set for the relevant category flag. - IGW_LOOKUPS_V (alias FL) — the lookup view used to translate BUDGET_CATEGORY_CODE into a display meaning. The join restricts rows to
FL.LOOKUP_TYPE = 'IGW_BUDGET_CATEGORY', so only budget category lookup values participate.
The joins are inner joins, meaning budget lines whose budget category code has no matching IGW_BUDGET_CATEGORY lookup, or whose category flag/expenditure combination cannot be resolved, are excluded from the result set. This behavior is important when diagnosing apparent row loss in reports.
Key Columns
- PROPOSAL_ID — identifies the grant proposal to which the budget line belongs.
- VERSION_ID — the proposal version, allowing comparison across revisions.
- BUDGET_PERIOD_ID — the budget period within the proposal version.
- LINE_ITEM_ID — unique identifier of the budget line item.
- LINE_ITEM_COST — the monetary cost recorded for the line item; the primary budgeting measure.
- EXPENDITURE_TYPE — the expenditure type associated with the budget line, used to classify the nature of the cost.
- LINE_ITEM_DESCRIPTION — free-text description of the line.
- BUDGET_CATEGORY_CODE — the stored lookup code (for example, the raw category value).
- BUDGET_CATEGORY — the translated meaning of the code from IGW_LOOKUPS_V, suitable for display.
- BUDGET_JUSTIFICATION — narrative justification entered for the budget line.
Common Use Cases and Queries
Typical uses include budget category roll-up reports, proposal budget worksheets, expenditure type analysis, and data extracts feeding downstream reporting tools. A common query totals proposed cost by category for a given proposal and version:
SELECT budget_category, SUM(line_item_cost) total_cost FROM igw_budget_line_category_v WHERE proposal_id = :p_proposal AND version_id = :p_version GROUP BY budget_category ORDER BY budget_category;SELECT budget_period_id, expenditure_type, line_item_description, line_item_cost FROM igw_budget_line_category_v WHERE proposal_id = :p_proposal ORDER BY budget_period_id, budget_category;SELECT budget_category, COUNT(*) line_count, SUM(line_item_cost) cost FROM igw_budget_line_category_v WHERE proposal_id = :p_proposal GROUP BY budget_category HAVING SUM(line_item_cost) > 0;
Where documentation is limited, developers should validate behavior by tracing against IGW_BUDGET_DETAILS directly, since the view is a straightforward projection over that table plus two lookup joins. Remember that rows failing the lookup or expenditure-type join are silently dropped, so reconciliation totals may differ from the base detail table.
-
View: IGW_BUDGET_LINE_CATEGORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_BUDGET_LINE_CATEGORY_V, object_name:IGW_BUDGET_LINE_CATEGORY_V, status:VALID, product: IGW - Grants Proposal , description: View to display expenditure type, its budget category and line item cost for budget lines , implementation_dba_data: APPS.IGW_BUDGET_LINE_CATEGORY_V ,
-
View: IGW_BUDGET_CATEGORY_V
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: View to display expenditure type, its budget category and direct costs for budget lines , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGW_BUDGET_LINE_CATEGORY_V
12.1.1
-
View: IGW_BUDGET_LINE_CATEGORY_V
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: View to display expenditure type, its budget category and line item cost for budget lines , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGW_PRPO_PERSON_DETAILS_V
12.1.1
-
View: IGW_BUDGET_CATEGORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_BUDGET_CATEGORY_V, object_name:IGW_BUDGET_CATEGORY_V, status:VALID, product: IGW - Grants Proposal , description: View to display expenditure type, its budget category and direct costs for budget lines , implementation_dba_data: APPS.IGW_BUDGET_CATEGORY_V ,
-
VIEW: APPS.IGW_BUDGET_LINE_CATEGORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_BUDGET_LINE_CATEGORY_V, object_name:IGW_BUDGET_LINE_CATEGORY_V, status:VALID,
-
VIEW: APPS.IGW_BUDGET_CATEGORY_V
12.1.1
-
VIEW: APPS.IGW_BUDGET_CATEGORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_BUDGET_CATEGORY_V, object_name:IGW_BUDGET_CATEGORY_V, status:VALID,
-
VIEW: APPS.IGWFV_GRANT_PRPSL_EXP_CATEGORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRANT_PRPSL_EXP_CATEGORY, object_name:IGWFV_GRANT_PRPSL_EXP_CATEGORY, status:VALID,
-
VIEW: APPS.IGWBV_GRANT_PRPSL_EXP_CATEGORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWBV_GRANT_PRPSL_EXP_CATEGORY, object_name:IGWBV_GRANT_PRPSL_EXP_CATEGORY, status:VALID,
-
VIEW: APPS.IGWFV_GRANT_PROPOSAL_BDGT_LINE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRANT_PROPOSAL_BDGT_LINE, object_name:IGWFV_GRANT_PROPOSAL_BDGT_LINE, status:VALID,
-
VIEW: APPS.IGW_PRPO_PERSON_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PRPO_PERSON_DETAILS_V, object_name:IGW_PRPO_PERSON_DETAILS_V, status:VALID,
-
View: IGWFV_GRANT_PRPSL_EXP_CATEGORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRANT_PRPSL_EXP_CATEGORY, object_name:IGWFV_GRANT_PRPSL_EXP_CATEGORY, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGWFV_GRANT_PRPSL_EXP_CATEGORY ,
-
VIEW: APPS.IGWBV_GRANT_PROPOSAL_BDGT_LINE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWBV_GRANT_PROPOSAL_BDGT_LINE, object_name:IGWBV_GRANT_PROPOSAL_BDGT_LINE, status:VALID,
-
View: IGWFV_GRANT_PRPSL_EXP_CATEGORY
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGWBV_GRANT_PRPSL_EXP_CATEGORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWBV_GRANT_PRPSL_EXP_CATEGORY, object_name:IGWBV_GRANT_PRPSL_EXP_CATEGORY, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGWBV_GRANT_PRPSL_EXP_CATEGORY ,
-
View: IGWBV_GRANT_PRPSL_EXP_CATEGORY
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGWBV_GRANT_PROPOSAL_BDGT_LINE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWBV_GRANT_PROPOSAL_BDGT_LINE, object_name:IGWBV_GRANT_PROPOSAL_BDGT_LINE, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGWBV_GRANT_PROPOSAL_BDGT_LINE ,
-
View: IGWBV_GRANT_PROPOSAL_BDGT_LINE
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGWFV_GRANT_PROPOSAL_BDGT_LINE
12.2.2
product: IGW - Grants Proposal (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGWFV_GRANT_PROPOSAL_BDGT_LINE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGWFV_GRANT_PROPOSAL_BDGT_LINE, object_name:IGWFV_GRANT_PROPOSAL_BDGT_LINE, status:VALID, product: IGW - Grants Proposal , implementation_dba_data: APPS.IGWFV_GRANT_PROPOSAL_BDGT_LINE ,
-
View: IGW_PRPO_PERSON_DETAILS_V
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: View displays details about personnel included in budget lines , implementation_dba_data: Not implemented in this database ,
-
View: IGW_PRPO_PERSON_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PRPO_PERSON_DETAILS_V, object_name:IGW_PRPO_PERSON_DETAILS_V, status:VALID, product: IGW - Grants Proposal , description: View displays details about personnel included in budget lines , implementation_dba_data: APPS.IGW_PRPO_PERSON_DETAILS_V ,
-
eTRM - IGW Tables and Views
12.1.1
description: Information on proposal subjects ,
-
PACKAGE BODY: APPS.OZF_FUND_ALLOCATIONS_PVT
12.1.1
-
PACKAGE BODY: APPS.OZF_FUND_ALLOCATIONS_PVT
12.2.2
-
PACKAGE BODY: APPS.OZF_ACTMETRIC_PVT
12.1.1
-
PACKAGE BODY: APPS.OZF_ACTMETRIC_PVT
12.2.2
-
APPS.OZF_ACTMETRIC_PVT dependencies on FND_API
12.1.1
-
APPS.OZF_ACTMETRIC_PVT dependencies on FND_API
12.2.2