Search Results people_quantity
Overview
APPS.PA_FIN_PLAN_TYPES_B_V is a non-supported, internal Oracle E-Business Suite view in the Projects (PA) schema that exposes the base definition of financial plan types. In Oracle EBS 12.1.1 and 12.2.2, financial plan types drive how budgets, forecasts, and resource plans are structured and validated within the Project Management and Project Costing modules. The view presents the header-level attributes of each financial plan type, including the planning class it belongs to, flags controlling quantity and amount tracking, and behavioral controls such as versioning and baseline editing.
The view is deployed to support standard Oracle Applications programs and is not referenced by any database object; consequently it is a leaf-level read-only object. Oracle explicitly warns against customer access outside standard applications code. Its principal relevance to reporting is as a denormalized, query-friendly projection of plan type metadata that avoids requiring joins across the two-language (VL) view and the global package.
Because the object name ends in _B_V, it represents the base-table layer of a translated entity. The companion entity is PA_FIN_PLAN_TYPES_VL, which surfaces translatable name columns; this view exposes the untranslated base row structure.
Underlying Base Objects
Documented dependencies for the view are:
- PA_FIN_PLAN_TYPES_VL — the translated view supplying the plan type name and code columns.
- PA_PROJ_FP_OPTIONS — the project financial planning options synonym, linked through PROJ_FIN_PLANNING_OPTIONS_ID.
- PA_BUDGET_VERSIONS — the budget versions synonym, relevant to the VERSIONS_FLAG and versioning behavior.
- PA_FIN_PLAN_TYPE_GLOBAL — an Oracle package referenced by the view, typically providing cached or derived global plan type attributes.
Reference to a package rather than a table means certain columns may be evaluated dynamically. The PROJECT_ID column indicates the view can be filtered or joined by project context, because plan type behavior may be project-specific through PA_PROJ_FP_OPTIONS.
Key Columns
- PROJECT_ID, FIN_PLAN_TYPE_ID — primary identifiers for the project and plan type row.
- NAME, FIN_PLAN_TYPE_CODE, PLAN_CLASS_CODE — descriptive and classification columns; the plan class determines whether amounts, quantities, or both are tracked.
- LABOR_QUANTITY, EQUIPMENT_QUANTITY, PEOPLE_QUANTITY — indicators that the plan type admits these resource quantity types.
- COST, REVENUE, MARGIN, MARGIN_PERCENT — monetary indicators governing which financial measures the type supports.
- HEAD_COUNT, TOTAL_UTILIZATION_HOURS, TOTAL_UTILIZATION_PERCENT — utilization and staffing measures. TOTAL_UTILIZATION_PERCENT is the column users search for when determining whether a plan type captures percent-based utilization, commonly relevant to workforce planning.
- ALLOW_EDIT_AFTER_BASELINE_FLAG, VERSIONS_FLAG, GENERATED_FLAG — control flags for post-baseline editing, version support, and generated plans respectively.
- SECURITY_PLAN_CLASS_CODE — a concatenated security construct, hence the 4000-character length.
Common Use Cases and Queries
Typical scenarios include validating configuration, checking which plan types expose utilization measures, and supporting integrations that map external planning tools to EBS plan type behavior. A representative query listing utilization-capable plan types follows:
SELECT fin_plan_type_id, name, fin_plan_type_code, plan_class_code, total_utilization_hours, total_utilization_percent FROM apps.pa_fin_plan_types_b_v WHERE total_utilization_percent IS NOT NULL;
A project-scoped query is also common:
SELECT name, versions_flag, allow_edit_after_baseline_flag FROM apps.pa_fin_plan_types_b_v WHERE project_id = :p_project_id;
These columns support both configuration audits and read-only diagnostics; any modification must occur through supported Oracle forms or programs.
-
VIEW: APPS.PA_FIN_PLAN_TYPES_B_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_TYPES_B_V, object_name:PA_FIN_PLAN_TYPES_B_V, status:VALID,
-
View: PA_FP_BASELINED_REVENUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_REVENUE_V, object_name:PA_FP_BASELINED_REVENUE_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves budget versions whose version type is Revenue , implementation_dba_data: APPS.PA_FP_BASELINED_REVENUE_V ,
-
View: PA_FP_BASELINED_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_COST_V, object_name:PA_FP_BASELINED_COST_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves all baselined budget versions whose version type is COST , implementation_dba_data: APPS.PA_FP_BASELINED_COST_V ,
-
VIEW: APPS.PA_FIN_PLAN_TYPES_W_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_TYPES_W_V, object_name:PA_FIN_PLAN_TYPES_W_V, status:VALID,
-
View: PA_FP_WORKING_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_COST_V, object_name:PA_FP_WORKING_COST_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves all working budget versions whose version type is COST. , implementation_dba_data: APPS.PA_FP_WORKING_COST_V ,
-
VIEW: APPS.PA_FP_BASELINED_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_COST_V, object_name:PA_FP_BASELINED_COST_V, status:VALID,
-
View: PA_FP_WORKING_REVENUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_REVENUE_V, object_name:PA_FP_WORKING_REVENUE_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves working budget versions whose version type is Revenue. , implementation_dba_data: APPS.PA_FP_WORKING_REVENUE_V ,
-
View: PA_FP_BASELINED_COSTREV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_COSTREV_V, object_name:PA_FP_BASELINED_COSTREV_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves baselined budget versions, regardless of version type , implementation_dba_data: APPS.PA_FP_BASELINED_COSTREV_V ,
-
VIEW: APPS.PA_FP_WORKING_REVENUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_REVENUE_V, object_name:PA_FP_WORKING_REVENUE_V, status:VALID,
-
VIEW: APPS.PA_FP_BASELINED_REVENUE_V
12.1.1
-
View: PA_FP_BASELINED_COSTREV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_COSTREV_V, object_name:PA_FP_BASELINED_COSTREV_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves baselined budget versions, regardless of version type , implementation_dba_data: APPS.PA_FP_BASELINED_COSTREV_V ,
-
VIEW: APPS.PA_FP_BASELINED_COSTREV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_COSTREV_V, object_name:PA_FP_BASELINED_COSTREV_V, status:VALID,
-
VIEW: APPS.PA_FP_WORKING_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_COST_V, object_name:PA_FP_WORKING_COST_V, status:VALID,
-
View: PA_FP_WORKING_COSTREV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_COSTREV_V, object_name:PA_FP_WORKING_COSTREV_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves working budget versions, regardless of version type. , implementation_dba_data: APPS.PA_FP_WORKING_COSTREV_V ,
-
VIEW: APPS.PA_FP_BASELINED_REVENUE_V
12.2.2
-
VIEW: APPS.PA_FIN_PLAN_TYPES_B_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_TYPES_B_V, object_name:PA_FIN_PLAN_TYPES_B_V, status:VALID,
-
View: PA_FP_BASELINED_REVENUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_REVENUE_V, object_name:PA_FP_BASELINED_REVENUE_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves budget versions whose version type is Revenue , implementation_dba_data: APPS.PA_FP_BASELINED_REVENUE_V ,
-
VIEW: APPS.PA_FP_WORKING_COSTREV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_COSTREV_V, object_name:PA_FP_WORKING_COSTREV_V, status:VALID,
-
View: PA_FP_WORKING_COSTREV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_COSTREV_V, object_name:PA_FP_WORKING_COSTREV_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves working budget versions, regardless of version type. , implementation_dba_data: APPS.PA_FP_WORKING_COSTREV_V ,
-
VIEW: APPS.PA_FP_BASELINED_REVENUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_REVENUE_V, object_name:PA_FP_BASELINED_REVENUE_V, status:VALID,
-
VIEW: APPS.PA_FP_BASELINED_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_COST_V, object_name:PA_FP_BASELINED_COST_V, status:VALID,
-
VIEW: APPS.PA_FIN_PLAN_TYPES_W_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_TYPES_W_V, object_name:PA_FIN_PLAN_TYPES_W_V, status:VALID,
-
View: PA_FP_BASELINED_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_COST_V, object_name:PA_FP_BASELINED_COST_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves all baselined budget versions whose version type is COST , implementation_dba_data: APPS.PA_FP_BASELINED_COST_V ,
-
VIEW: APPS.PA_FP_BASELINED_REVENUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_REVENUE_V, object_name:PA_FP_BASELINED_REVENUE_V, status:VALID,
-
View: PA_FP_WORKING_REVENUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_REVENUE_V, object_name:PA_FP_WORKING_REVENUE_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves working budget versions whose version type is Revenue. , implementation_dba_data: APPS.PA_FP_WORKING_REVENUE_V ,
-
View: PA_FP_WORKING_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_COST_V, object_name:PA_FP_WORKING_COST_V, status:VALID, product: PA - Projects , description: Used in Maintain Versions OA page. This view retrieves all working budget versions whose version type is COST. , implementation_dba_data: APPS.PA_FP_WORKING_COST_V ,
-
VIEW: APPS.PA_FP_BASELINED_COSTREV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_BASELINED_COSTREV_V, object_name:PA_FP_BASELINED_COSTREV_V, status:VALID,
-
VIEW: APPS.PA_FP_WORKING_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_COST_V, object_name:PA_FP_WORKING_COST_V, status:VALID,
-
VIEW: APPS.PA_FP_WORKING_REVENUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_REVENUE_V, object_name:PA_FP_WORKING_REVENUE_V, status:VALID,
-
VIEW: APPS.PA_FP_WORKING_COSTREV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WORKING_COSTREV_V, object_name:PA_FP_WORKING_COSTREV_V, status:VALID,
-
VIEW: APPS.PA_FP_WORKING_COST_V
12.1.1
-
VIEW: APPS.PA_FP_BASELINED_COST_V
12.2.2
-
VIEW: APPS.PA_FP_WORKING_COST_V
12.2.2
-
VIEW: APPS.PA_FP_WORKING_REVENUE_V
12.2.2
-
VIEW: APPS.PA_FP_WORKING_REVENUE_V
12.1.1
-
VIEW: APPS.PA_FP_BASELINED_COST_V
12.1.1
-
VIEW: APPS.PA_FP_BASELINED_COSTREV_V
12.1.1
-
VIEW: APPS.PA_FP_BASELINED_COSTREV_V
12.2.2
-
VIEW: APPS.PA_FP_WORKING_COSTREV_V
12.1.1
-
VIEW: APPS.PA_FP_WORKING_COSTREV_V
12.2.2
-
View: PA_FIN_PLAN_TYPES_W_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_TYPES_W_V, object_name:PA_FIN_PLAN_TYPES_W_V, status:VALID, product: PA - Projects , description: This view is used for the Plan Types page. It retrieves information for all plan types that are current working for a given project id. , implementation_dba_data: APPS.PA_FIN_PLAN_TYPES_W_V ,
-
View: PA_FIN_PLAN_TYPES_B_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_TYPES_B_V, object_name:PA_FIN_PLAN_TYPES_B_V, status:VALID, product: PA - Projects , description: This view is used by the Plan Types page. It displays all baselined plan types for a given project id. , implementation_dba_data: APPS.PA_FIN_PLAN_TYPES_B_V ,
-
View: PA_FIN_PLAN_TYPES_B_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_TYPES_B_V, object_name:PA_FIN_PLAN_TYPES_B_V, status:VALID, product: PA - Projects , description: This view is used by the Plan Types page. It displays all baselined plan types for a given project id. , implementation_dba_data: APPS.PA_FIN_PLAN_TYPES_B_V ,
-
View: PA_FIN_PLAN_TYPES_W_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_TYPES_W_V, object_name:PA_FIN_PLAN_TYPES_W_V, status:VALID, product: PA - Projects , description: This view is used for the Plan Types page. It retrieves information for all plan types that are current working for a given project id. , implementation_dba_data: APPS.PA_FIN_PLAN_TYPES_W_V ,
-
VIEW: APPS.PA_FIN_PLAN_TYPES_W_V
12.2.2
-
VIEW: APPS.PA_FIN_PLAN_TYPES_W_V
12.1.1
-
VIEW: APPS.PA_FIN_PLAN_TYPES_B_V
12.2.2
-
VIEW: APPS.PA_FIN_PLAN_TYPES_B_V
12.1.1
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2