Search Results cost_quantity_flag
Overview
APPS.PA_ALLOC_BUDGET_ENTRY_METHOD_V is a reporting and validation view in Oracle EBS Project Accounting (Oracle Projects). It exposes the set of budget entry methods that are currently active and that support the entry of at least one monetary or quantity measure — cost quantities, raw costs, or burdened costs. The view is defined on the PA_BUDGET_ENTRY_METHODS table and filters rows by both functional capability and effective dating, returning only methods where the current system date falls within the method's active date range.
In Oracle EBS 12.1.1 and 12.2.2, budget entry methods govern how budgets are captured for a project or project template. The three flags referenced in the view — COST_QUANTITY_FLAG, RAW_COST_FLAG, and BURDENED_COST_FLAG — identify which budget line types are permitted for a given entry method. Because the view applies an OR condition across these flags, any method that enables cost quantities, raw costs, or burdened costs is returned. The view is therefore intended to present a complete, date-valid list of usable entry methods for allocation and budgeting purposes, rather than the full contents of the underlying setup table.
Underlying Base Objects
The view is defined exclusively over a single base object, PA_BUDGET_ENTRY_METHODS, referenced through an APPS synonym. No joins to other tables are present in the supplied view text. All filtering is performed against columns of PA_BUDGET_ENTRY_METHODS, including the three capability flags and the standard effective-dating columns START_DATE_ACTIVE and END_DATE_ACTIVE.
The effective-dating predicate is notable: the view compares TRUNC(SYSDATE) against TRUNC(START_DATE_ACTIVE) and TRUNC(NVL(END_DATE_ACTIVE, SYSDATE)). This means methods with a null end date are treated as open-ended and remain visible, while methods whose end date precedes the current day are excluded. This behavior aligns the view with the standard Oracle Projects convention of filtering date-effective setup data at query time rather than relying on a separate active-flag column.
Key Columns
- BUDGET_ENTRY_METHOD_CODE — the unique identifier for the budget entry method, used as the primary key reference in project and template setup.
- BUDGET_ENTRY_METHOD — the user-facing name or description of the entry method.
- ENTRY_LEVEL_CODE — indicates the level at which budget entries are made, such as project or task level.
- CATEGORIZATION_CODE — defines whether the method is categorized, controlling whether resources are grouped into cost categories.
- COST_QUANTITY_FLAG — when set to 'Y', permits budget entry in cost quantities (units of measure) in addition to monetary amounts; this is the column of greatest interest in the supplied search context.
- RAW_COST_FLAG — when set to 'Y', permits entry of raw, unburdened costs.
- BURDENED_COST_FLAG — when set to 'Y', permits entry of burdened costs inclusive of indirect components.
- TIME_PHASED_TYPE_CODE — specifies whether the budget is time-phased and the phasing convention applied.
Common Use Cases and Queries
The view is commonly used in LOV (list of values) queries, concurrent program parameters, and custom reporting where only capable, currently effective budget entry methods should be selectable. It is also used to audit which methods permit cost quantity entry, which is directly relevant to searches on COST_QUANTITY_FLAG.
The following query lists all methods that permit cost quantity entry:
SELECT budget_entry_method_code, budget_entry_method, cost_quantity_flag, raw_cost_flag, burdened_cost_flag FROM apps.pa_alloc_budget_entry_method_v WHERE cost_quantity_flag = 'Y';
A broader query retrieves all methods supporting monetary entry:
SELECT budget_entry_method_code, budget_entry_method, time_phased_type_code FROM apps.pa_alloc_budget_entry_method_v WHERE raw_cost_flag = 'Y' OR burdened_cost_flag = 'Y';
When joining to project setup tables such as PA_PROJECTS or PA_BUDGET_TYPES, the view should be keyed on BUDGET_ENTRY_METHOD_CODE. Because the view already enforces effective dating, consumers do not need to reapply the start and end date predicates, though additional filtering by ENTRY_LEVEL_CODE or CATEGORIZATION_CODE may be applied to narrow results to a specific budgeting scenario.
-
VIEW: APPS.PA_ALLOC_BUDGET_ENTRY_METHOD_V
12.1.1
-
VIEW: PA.PA_BUDGET_ENTRY_METHODS#
12.2.2
-
VIEW: APPS.PA_ALLOC_BUDGET_ENTRY_METHOD_V
12.2.2
-
View: PA_ALLOC_BUDGET_ENTRY_METHOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_BUDGET_ENTRY_METHOD_V, object_name:PA_ALLOC_BUDGET_ENTRY_METHOD_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_BUDGET_ENTRY_METHOD_V ,
-
View: PA_ALLOC_BUDGET_ENTRY_METHOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_BUDGET_ENTRY_METHOD_V, object_name:PA_ALLOC_BUDGET_ENTRY_METHOD_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_BUDGET_ENTRY_METHOD_V ,
-
VIEW: APPS.PA_ALLOC_BUDGET_ENTRY_METHOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_BUDGET_ENTRY_METHOD_V, object_name:PA_ALLOC_BUDGET_ENTRY_METHOD_V, status:VALID,
-
VIEW: APPS.PA_ALLOC_BUDGET_ENTRY_METHOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_BUDGET_ENTRY_METHOD_V, object_name:PA_ALLOC_BUDGET_ENTRY_METHOD_V, status:VALID,
-
VIEW: APPS.PA_BUDGET_ENTRY_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_ENTRY_METHODS_V, object_name:PA_BUDGET_ENTRY_METHODS_V, status:VALID,
-
VIEW: PA.PA_BUDGET_ENTRY_METHODS#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_BUDGET_ENTRY_METHODS#, status:VALID,
-
VIEW: APPS.PA_BUDGET_ENTRY_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_ENTRY_METHODS_V, object_name:PA_BUDGET_ENTRY_METHODS_V, status:VALID,
-
View: PA_BUDGET_ENTRY_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_ENTRY_METHODS_V, object_name:PA_BUDGET_ENTRY_METHODS_V, status:VALID, product: PA - Projects , description: This view displays the valid budget entry methods which control how a budget is entered , implementation_dba_data: APPS.PA_BUDGET_ENTRY_METHODS_V ,
-
View: PA_BUDGET_ENTRY_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_ENTRY_METHODS_V, object_name:PA_BUDGET_ENTRY_METHODS_V, status:VALID, product: PA - Projects , description: This view displays the valid budget entry methods which control how a budget is entered , implementation_dba_data: APPS.PA_BUDGET_ENTRY_METHODS_V ,
-
VIEW: APPS.GMS_BUDGET_VERSIONS_DRAFT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_BUDGET_VERSIONS_DRAFT_V, object_name:GMS_BUDGET_VERSIONS_DRAFT_V, status:VALID,
-
VIEW: APPS.GMS_BUDGET_VERSIONS_DRAFT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_BUDGET_VERSIONS_DRAFT_V, object_name:GMS_BUDGET_VERSIONS_DRAFT_V, status:VALID,
-
VIEW: APPS.GMS_BUDGET_VERSIONS_BASELND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_BUDGET_VERSIONS_BASELND_V, object_name:GMS_BUDGET_VERSIONS_BASELND_V, status:VALID,
-
VIEW: APPS.PA_BUDGET_VERSIONS_BASELINED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_BASELINED_V, object_name:PA_BUDGET_VERSIONS_BASELINED_V, status:VALID,
-
TABLE: PA.PA_BUDGET_ENTRY_METHODS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_BUDGET_ENTRY_METHODS, object_name:PA_BUDGET_ENTRY_METHODS, status:VALID,
-
TABLE: PA.PA_BUDGET_ENTRY_METHODS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_BUDGET_ENTRY_METHODS, object_name:PA_BUDGET_ENTRY_METHODS, status:VALID,
-
VIEW: APPS.PA_BUDGET_VERSIONS_DRAFT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_DRAFT_V, object_name:PA_BUDGET_VERSIONS_DRAFT_V, status:VALID,
-
VIEW: APPS.PA_BUDGET_VERSIONS_DRAFT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_DRAFT_V, object_name:PA_BUDGET_VERSIONS_DRAFT_V, status:VALID,
-
VIEW: APPS.PA_BUDGET_VERSIONS_BASELINED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_BASELINED_V, object_name:PA_BUDGET_VERSIONS_BASELINED_V, status:VALID,
-
View: PA_BUDGET_VERSIONS_BASELINED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_BASELINED_V, object_name:PA_BUDGET_VERSIONS_BASELINED_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_BUDGET_VERSIONS_BASELINED_V ,
-
View: PA_BUDGET_VERSIONS_BASELINED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_BASELINED_V, object_name:PA_BUDGET_VERSIONS_BASELINED_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_BUDGET_VERSIONS_BASELINED_V ,
-
VIEW: APPS.GMS_BUDGET_VERSIONS_BASELND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_BUDGET_VERSIONS_BASELND_V, object_name:GMS_BUDGET_VERSIONS_BASELND_V, status:VALID,
-
View: GMS_BUDGET_VERSIONS_BASELND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_BUDGET_VERSIONS_BASELND_V, object_name:GMS_BUDGET_VERSIONS_BASELND_V, status:VALID, product: GMS - Grants Accounting , description: 10SC Only , implementation_dba_data: APPS.GMS_BUDGET_VERSIONS_BASELND_V ,
-
View: GMS_BUDGET_VERSIONS_BASELND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_BUDGET_VERSIONS_BASELND_V, object_name:GMS_BUDGET_VERSIONS_BASELND_V, status:VALID, product: GMS - Grants Accounting , description: 10SC Only , implementation_dba_data: APPS.GMS_BUDGET_VERSIONS_BASELND_V ,
-
View: PA_BUDGET_VERSIONS_DRAFT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_DRAFT_V, object_name:PA_BUDGET_VERSIONS_DRAFT_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted , implementation_dba_data: APPS.PA_BUDGET_VERSIONS_DRAFT_V ,
-
View: PA_BUDGET_VERSIONS_DRAFT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_VERSIONS_DRAFT_V, object_name:PA_BUDGET_VERSIONS_DRAFT_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted , implementation_dba_data: APPS.PA_BUDGET_VERSIONS_DRAFT_V ,
-
APPS.PA_BUDGET_CHECK_PVT SQL Statements
12.1.1
-
APPS.PA_BUDGET_CHECK_PVT SQL Statements
12.2.2
-
View: GMS_BUDGET_VERSIONS_DRAFT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_BUDGET_VERSIONS_DRAFT_V, object_name:GMS_BUDGET_VERSIONS_DRAFT_V, status:VALID, product: GMS - Grants Accounting , description: - Retrofitted , implementation_dba_data: APPS.GMS_BUDGET_VERSIONS_DRAFT_V ,
-
View: GMS_BUDGET_VERSIONS_DRAFT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_BUDGET_VERSIONS_DRAFT_V, object_name:GMS_BUDGET_VERSIONS_DRAFT_V, status:VALID, product: GMS - Grants Accounting , description: - Retrofitted , implementation_dba_data: APPS.GMS_BUDGET_VERSIONS_DRAFT_V ,
-
APPS.PA_FP_UPGRADE_PKG SQL Statements
12.1.1
-
APPS.PA_FP_UPGRADE_PKG SQL Statements
12.2.2
-
APPS.GMS_BUDGET_UTILS SQL Statements
12.1.1
-
APPS.GMS_BUDGET_UTILS SQL Statements
12.2.2
-
APPS.GMS_BUDGET_UTILS dependencies on PA_BUDGET_ENTRY_METHODS
12.2.2
-
APPS.GMS_BUDGET_UTILS dependencies on PA_BUDGET_ENTRY_METHODS
12.1.1
-
APPS.PA_FP_UPGRADE_PKG dependencies on PA_BUDGET_ENTRY_METHODS
12.1.1
-
APPS.PA_BUDGET_CHECK_PVT dependencies on PA_BUDGET_ENTRY_METHODS
12.2.2
-
APPS.PA_BUDGET_CHECK_PVT dependencies on PA_BUDGET_ENTRY_METHODS
12.1.1
-
APPS.PA_FP_UPGRADE_PKG dependencies on PA_BUDGET_ENTRY_METHODS
12.2.2
-
APPS.PA_BUDGET_CORE1 SQL Statements
12.1.1
-
APPS.PA_BUDGET_CORE1 SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMS_BUDGET_UTILS
12.1.1
-
PACKAGE BODY: APPS.GMS_BUDGET_UTILS
12.2.2
-
PACKAGE BODY: APPS.PA_BUDGET_CHECK_PVT
12.2.2
-
PACKAGE BODY: APPS.PA_BUDGET_CHECK_PVT
12.1.1
-
PACKAGE BODY: APPS.PA_FP_UPGRADE_PKG
12.1.1
-
PACKAGE BODY: APPS.PA_FP_UPGRADE_PKG
12.2.2