Search Results pa_fp_options_reslists_v
Overview
PA_FP_OPTIONS_RESLISTS_V is a Projects (PA) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes the financial plan option configuration at the project and plan type level, specifically the resource lists that have been associated with cost, revenue, and combined financial plan structures. The view consolidates three distinct resource list associations — cost, revenue, and cost-and-revenue — into a single, uniformly structured result set, labeling each row with a resource list type indicator.
Because financial plan options in Oracle Projects are stored denormalized across several columns of PA_PROJ_FP_OPTIONS, this view provides a normalized, reporting-friendly projection. It is intended to support reporting, data extraction, and integration scenarios where a flat list of project/plan-type resource list assignments is required without needing to know which physical column holds the relevant identifier. The view is read-only and reflects the state of the underlying configuration table at query time.
Underlying Base Objects
The view is defined over a single documented base object, PA_PROJ_FP_OPTIONS (referenced in the schema as a synonym), which stores financial plan option settings for each project and financial plan type combination. The view is constructed as a UNION ALL of three SELECT statements, each filtering the base table on a different resource list column and an accompanying preference code. Only rows where FIN_PLAN_OPTION_LEVEL_CODE = 'PLAN_TYPE' are included.
- The first branch returns rows where
COST_RESOURCE_LIST_IDis populated andFIN_PLAN_PREFERENCE_CODEisCOST_ONLYorCOST_AND_REV_SEP, tagged asCOST RESOURCE LIST. - The second branch returns rows where
REVENUE_RESOURCE_LIST_IDis populated and the preference code isREVENUE_ONLYorCOST_AND_REV_SEP, tagged asREVENUE RESOURCE LIST. - The third branch returns rows where
ALL_RESOURCE_LIST_IDis populated and the preference code isCOST_AND_REV_SAME, tagged asCOST AND REVENUE RESOURCE LIST.
Each branch requires non-null PROJECT_ID, FIN_PLAN_TYPE_ID, and the respective resource list identifier. The final result set is ordered by project and plan type.
Key Columns
- PROJECT_ID — Identifier of the project to which the financial plan option applies.
- FIN_PLAN_TYPE_ID — Identifier of the financial plan type associated with the option record.
- FP_RESOURCE_LIST_ID — The resource list identifier resolved from the applicable source column. Note that the documented view text aliases these as
COST_RESOURCE_LIST_ID,REVENUE_RESOURCE_LIST_ID, andALL_RESOURCE_LIST_IDin the individual branches; the exposed view column isFP_RESOURCE_LIST_ID. - FP_RESOURCE_LIST_TYPE — A descriptive tag (
COST RESOURCE LIST,REVENUE RESOURCE LIST, orCOST AND REVENUE RESOURCE LIST) indicating the nature of the resource list association. - FIN_PLAN_START_DATE — The start date of the financial plan option period.
- FIN_PLAN_END_DATE — The end date of the financial plan option period.
Common Use Cases and Queries
Typical uses include auditing which resource lists are configured per project, validating financial plan setup during implementation, and feeding downstream reporting or integration processes that consume resource list assignments.
Retrieve all resource list associations for a specific project:
SELECT PROJECT_ID,
FIN_PLAN_TYPE_ID,
FP_RESOURCE_LIST_ID,
FP_RESOURCE_LIST_TYPE,
FIN_PLAN_START_DATE,
FIN_PLAN_END_DATE
FROM APPS.PA_FP_OPTIONS_RESLISTS_V
WHERE PROJECT_ID = :p_project_id
ORDER BY FIN_PLAN_TYPE_ID, FP_RESOURCE_LIST_TYPE;
Summarize the count of associations by resource list type:
SELECT FP_RESOURCE_LIST_TYPE, COUNT(*) AS ASSOC_COUNT FROM APPS.PA_FP_OPTIONS_RESLISTS_V GROUP BY FP_RESOURCE_LIST_TYPE;
Join to project and plan type lookups to produce a human-readable report:
SELECT p.name AS project_name,
v.FP_RESOURCE_LIST_TYPE,
v.FP_RESOURCE_LIST_ID
FROM APPS.PA_FP_OPTIONS_RESLISTS_V v,
APPS.PA_PROJECTS_ALL p
WHERE v.PROJECT_ID = p.project_id
ORDER BY p.name;
-
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: APPS.PA_PMC_RESOURCE_LIST_V
12.1.1
-
VIEW: APPS.PA_PMC_RESOURCE_LIST_V
12.2.2
-
View: PA_PMC_RESOURCE_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PMC_RESOURCE_LIST_V, object_name:PA_PMC_RESOURCE_LIST_V, status:VALID, product: PA - Projects , description: This view is being used by WebConnect to retrieve all the resource lists. , implementation_dba_data: APPS.PA_PMC_RESOURCE_LIST_V ,
-
View: PA_PMC_RESOURCE_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PMC_RESOURCE_LIST_V, object_name:PA_PMC_RESOURCE_LIST_V, status:VALID, product: PA - Projects , description: This view is being used by WebConnect to retrieve all the resource lists. , implementation_dba_data: APPS.PA_PMC_RESOURCE_LIST_V ,
-
VIEW: APPS.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,
-
VIEW: APPS.PA_PMC_RESOURCE_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PMC_RESOURCE_LIST_V, object_name:PA_PMC_RESOURCE_LIST_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.PA_PMC_RESOURCE_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PMC_RESOURCE_LIST_V, object_name:PA_PMC_RESOURCE_LIST_V, status:VALID,
-
PACKAGE BODY: APPS.PA_FIN_PLAN_UTILS2
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_FIN_PLAN_UTILS2, status:VALID,
-
PACKAGE BODY: APPS.PA_FIN_PLAN_UTILS2
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_FIN_PLAN_UTILS2, status:VALID,
-
SYNONYM: APPS.PA_PROJ_FP_OPTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_FP_OPTIONS, status:VALID,
-
SYNONYM: APPS.PA_PROJ_FP_OPTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_FP_OPTIONS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.PA_FIN_PLAN_UTILS2 dependencies on PA_FP_OPTIONS_RESLISTS_V
12.2.2
-
APPS.PA_FIN_PLAN_UTILS2 dependencies on PA_FP_OPTIONS_RESLISTS_V
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.PA_FIN_PLAN_UTILS2 SQL Statements
12.2.2
-
APPS.PA_FIN_PLAN_UTILS2 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_FIN_PLAN_UTILS2
12.1.1
-
PACKAGE BODY: APPS.PA_FIN_PLAN_UTILS2
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2