Search Results cost_only
Overview
APPS.PA_FIN_PLAN_CREATE_PLAN_NOBV_V is a reporting view in the Oracle E-Business Suite Projects (PA) module that supports the creation of financial plans and budget versions. The view consolidates financial plan option settings configured at the project level and resolves them into a single, normalized row per project and financial plan type. Its design is driven by the fin_plan_preference_code attribute on PA_PROJ_FP_OPTIONS, which determines whether cost and revenue planning are handled together or separately. The view applies conditional DECODE logic so that the "generic" columns it exposes—such as plan_level_code, time_phased_code, and resource_list_id—are populated from the correct cost, revenue, or combined source column depending on the preference selected.
The suffix "NOBV" indicates this view does not involve budget version records, distinguishing it from companion views that handle version-level plan creation. Because the source of truth for plan preference is stored in a coded, preference-dependent format, the view exists to simplify consumption by concurrent programs, APIs, and reporting tools that require a flat, denormalized projection. The term "revenue_only" relates directly to one of the supported fin_plan_preference_code values, for which the view directs all generic planning attributes to the revenue-specific source columns.
Underlying Base Objects
The view is defined over three documented objects:
- PA_PROJ_FP_OPTIONS (referenced via a synonym): Holds project-level financial plan preference settings, including cost, revenue, and combined plan level, time-phasing, and resource list columns, keyed by
project_id. - PA_FIN_PLAN_TYPES_VL: The financial plan type definition view, supplying
fin_plan_type_codeandplan_type_name. - PA_FIN_PLAN_CREATE_VER_GLOBAL (package): Provides session-scoped functions such as
get_project_id,get_pa_current_start_period, andget_gl_current_start_period, which the view calls to derive start period names when time phasing is enabled.
The join reconciles project-level options against plan types, and the package functions supply dynamic context values at query time.
Key Columns
project_id: Project identifier linking the row to the project.fin_plan_type_code/plan_type_name: The financial plan type and its descriptive name.fin_plan_preference_code: The controlling preference (for example, COST_ONLY, REVENUE_ONLY, COST_AND_REV_SEP, COST_AND_REV_SAME).plan_level_code: The resolved planning level for the preference.time_phased_code: The resolved time-phasing indicator (for example, P for PA period, G for GL period).resource_list_id: The resolved resource list associated with the preference.- Cost-, revenue-, and combined-prefixed variants (
cost_plan_level_code,revenue_time_phased_code, etc.) expose the individual source settings when "COST_AND_REV_SEP" is used. cost_start_period_nameand related period columns: Derived via the package functions when time phasing applies.
Common Use Cases and Queries
The view is typically used to determine what planning defaults apply to a project before programmatically creating a financial plan. A common pattern is to filter by preference to isolate revenue-driven configurations:
- Retrieve all projects configured for revenue-only planning:
SELECT project_id, plan_type_name FROM pa_fin_plan_create_plan_nobv_v WHERE fin_plan_preference_code = 'REVENUE_ONLY'; - Inspect resolved defaults for a single project:
SELECT plan_level_code, time_phased_code, resource_list_id FROM pa_fin_plan_create_plan_nobv_v WHERE project_id = :p_project_id; - Compare cost and revenue settings where plans are separated: query the cost- and revenue-prefixed columns when
fin_plan_preference_code = 'COST_AND_REV_SEP'.
Because the view invokes package functions, callers should be aware that it relies on session context supplied by PA_FIN_PLAN_CREATE_VER_GLOBAL, and results can vary with the active project or ledger environment.
-
VIEW: APPS.PA_FIN_PLAN_CREATE_PLAN_NOBV_V
12.2.2
-
VIEW: APPS.PA_FIN_PLAN_CREATE_PLAN_BV_V
12.2.2
-
VIEW: APPS.PA_FIN_PLAN_CREATE_PLAN_BV_V
12.1.1
-
VIEW: APPS.PA_FIN_PLAN_CREATE_PLAN_NOBV_V
12.1.1
-
View: PA_FIN_PLAN_CREATE_PLAN_NOBV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_CREATE_PLAN_NOBV_V, object_name:PA_FIN_PLAN_CREATE_PLAN_NOBV_V, status:VALID, product: PA - Projects , description: Used in Create/View/Edit Versions OA page This view retrieves information about a budget version when a budget version id is not supplied. It relies on the following packages: pa_fin_plan_create_ver_global. , implementation_dba_data: APPS.PA_FIN_PLAN_CREATE_PLAN_NOBV_V ,
-
View: PA_FIN_PLAN_CREATE_PLAN_BV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_CREATE_PLAN_BV_V, object_name:PA_FIN_PLAN_CREATE_PLAN_BV_V, status:VALID, product: PA - Projects , description: Used in Create/View/Edit Versions OA page. This view retrieves information about a budget version given a budget version id. It relies on the following packages: pa_fin_plan_create_ver_global. , implementation_dba_data: APPS.PA_FIN_PLAN_CREATE_PLAN_BV_V ,
-
View: PA_FIN_PLAN_CREATE_PLAN_BV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_CREATE_PLAN_BV_V, object_name:PA_FIN_PLAN_CREATE_PLAN_BV_V, status:VALID, product: PA - Projects , description: Used in Create/View/Edit Versions OA page. This view retrieves information about a budget version given a budget version id. It relies on the following packages: pa_fin_plan_create_ver_global. , implementation_dba_data: APPS.PA_FIN_PLAN_CREATE_PLAN_BV_V ,
-
View: PA_FIN_PLAN_CREATE_PLAN_NOBV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PLAN_CREATE_PLAN_NOBV_V, object_name:PA_FIN_PLAN_CREATE_PLAN_NOBV_V, status:VALID, product: PA - Projects , description: Used in Create/View/Edit Versions OA page This view retrieves information about a budget version when a budget version id is not supplied. It relies on the following packages: pa_fin_plan_create_ver_global. , implementation_dba_data: APPS.PA_FIN_PLAN_CREATE_PLAN_NOBV_V ,
-
APPS.PA_PLANNING_ELEMENT_UTILS SQL Statements
12.2.2
-
APPS.PA_PLANNING_ELEMENT_UTILS SQL Statements
12.1.1
-
Lookup Type: FIN_PLAN_PREFERENCE
12.1.1
product: PA - Projects , meaning: Financial Planning Preference , description: Financial Planning Preference ,
-
Lookup Type: FIN_PLAN_PREFERENCE
12.2.2
product: PA - Projects , meaning: Financial Planning Preference , description: Financial Planning Preference ,
-
VIEW: APPS.PA_FP_OPTIONS_RESLISTS_V
12.1.1
-
VIEW: APPS.PA_FP_OPTIONS_RESLISTS_V
12.2.2
-
VIEW: APPS.PA_FP_WEBADI_CUSTOM_V
12.1.1
-
VIEW: APPS.PA_FP_WEBADI_CUSTOM_V
12.2.2
-
View: PA_FP_OPTIONS_RESLISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_OPTIONS_RESLISTS_V, object_name:PA_FP_OPTIONS_RESLISTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_FP_OPTIONS_RESLISTS_V ,
-
View: PA_FP_OPTIONS_RESLISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_OPTIONS_RESLISTS_V, object_name:PA_FP_OPTIONS_RESLISTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_FP_OPTIONS_RESLISTS_V ,
-
View: PA_FP_OPTIONS_RESLISTS_V_R
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_FP_OPTIONS_RESLISTS_V_R
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.PJI_REP_VP_UTILS
12.1.1
-
APPS.PA_FIN_PLAN_CREATE_VER_GLOBAL SQL Statements
12.2.2
-
APPS.PA_FIN_PLAN_CREATE_VER_GLOBAL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PJI_REP_VP_UTILS
12.2.2
-
APPS.PA_FP_SHORTCUTS_PKG SQL Statements
12.1.1
-
APPS.PA_FP_SHORTCUTS_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_PLANNING_ELEMENT_UTILS
12.2.2
-
PACKAGE BODY: APPS.PA_PLANNING_ELEMENT_UTILS
12.1.1
-
View: PA_FP_WEBADI_CUSTOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_CUSTOM_V, object_name:PA_FP_WEBADI_CUSTOM_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to customize the download to Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_CUSTOM_V ,
-
View: PA_FP_WEBADI_CUSTOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_CUSTOM_V, object_name:PA_FP_WEBADI_CUSTOM_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to customize the download to Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_CUSTOM_V ,
-
APPS.PA_CAP_INT_PVT SQL Statements
12.2.2
-
APPS.PA_CAP_INT_PVT SQL Statements
12.1.1
-
VIEW: APPS.PA_FP_WEBADI_CONTENTS_V
12.2.2
-
VIEW: APPS.PA_FP_WEBADI_CONTENTS_V
12.1.1
-
APPS.PA_FP_CONTROL_ITEMS_UTILS SQL Statements
12.2.2
-
View: PA_FP_WEBADI_CONTENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_CONTENTS_V, object_name:PA_FP_WEBADI_CONTENTS_V, status:VALID, product: PA - Projects , description: This view is used for data to be downloaded to excel sheet for Financial Planning. , implementation_dba_data: APPS.PA_FP_WEBADI_CONTENTS_V ,
-
View: PA_FP_WEBADI_CONTENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_CONTENTS_V, object_name:PA_FP_WEBADI_CONTENTS_V, status:VALID, product: PA - Projects , description: This view is used for data to be downloaded to excel sheet for Financial Planning. , implementation_dba_data: APPS.PA_FP_WEBADI_CONTENTS_V ,
-
PACKAGE: APPS.PA_FP_CONSTANTS_PKG
12.2.2
-
APPS.PA_FP_CONTROL_ITEMS_UTILS SQL Statements
12.1.1
-
PACKAGE: APPS.PA_FP_CONSTANTS_PKG
12.1.1
-
PACKAGE BODY: APPS.PA_FP_SHORTCUTS_PKG
12.1.1
-
PACKAGE BODY: APPS.PA_FP_SHORTCUTS_PKG
12.2.2
-
PACKAGE: APPS.PA_FP_VIEW_PLANS_TXN_PUB
12.2.2
-
PACKAGE BODY: APPS.PA_FIN_PLAN_CREATE_VER_GLOBAL
12.1.1
-
PACKAGE BODY: APPS.PA_FIN_PLAN_CREATE_VER_GLOBAL
12.2.2
-
PACKAGE: APPS.PA_FP_VIEW_PLANS_TXN_PUB
12.1.1
-
APPS.PA_FIN_PLAN_PVT SQL Statements
12.1.1
-
APPS.PA_FIN_PLAN_PVT SQL Statements
12.2.2
-
APPS.PA_DATE_RANGE_PKG SQL Statements
12.1.1
-
APPS.PA_DATE_RANGE_PKG SQL Statements
12.2.2