Search Results fixed_date
Overview
PA_FP_WEBADI_CONTENTS_V is an APPS-owned view within the Oracle E-Business Suite Projects (PA) module. Its documented purpose is to supply the dataset that is downloaded into an Excel worksheet for Financial Planning through the WebADI (Web Application Desktop Integrator) framework. In other words, it is the read-side extract that populates the integrated spreadsheet a planner uses to review and maintain project financial plan amounts.
The view is delivered with a VALID status in both 12.1.1 and 12.2.2, and its definition is identical across those releases from a functional standpoint. It resides in the APPS schema and, as is standard for EBS views of this class, is exposed to end users through grants and synonyms rather than being referenced by fully qualified name. The WebADI integrator defined for Financial Planning calls this view, applies its own column mapping, and renders the result set into the desktop Excel layout.
The data model reflects the periodic nature of project financial planning. Rather than storing a variable number of periods as rows, the view projects a fixed, wide block of period amount columns (PERIOD_AMOUNT1 through PERIOD_AMOUNT52), which aligns with the calendar structure configured for the plan and allows the WebADI template to map each spreadsheet column to a stable database column.
Underlying Base Objects
The documented base objects underlying PA_FP_WEBADI_CONTENTS_V span the budget, resource, task, and lookup areas of the Projects schema, together with several PL/SQL packages and a profile dependency.
- Plan and budget: PA_BUDGET_VERSIONS, PA_BUDGET_LINES (synonyms), PA_PROJ_FP_OPTIONS (synonym) - the plan header, plan lines, and financial plan preference options.
- Resource structure: PA_RESOURCE_ASSIGNMENTS (synonym), PA_RESOURCE_LISTS (view), PA_RESOURCE_LIST_MEMBERS (synonym) - the assignment being planned and its position in the resource list hierarchy.
- Task and project context: PA_TASKS (synonym), PA_PROJECTS_ALL (synonym).
- Amount and currency configuration: PA_AMOUNT_TYPES_VL (view), PA_FP_TXN_CURRENCIES (synonym), PA_CONVERSION_TYPES_V (view), and the denormalized PA_PROJ_PERIODS_DENORM (synonym).
- Lookups: PA_LOOKUPS (view), used for unit-of-measure decoding.
- Programmatic dependencies: FND_PROFILE, PA_CROSS_BUSINESS_GRP, and PA_FIN_PLAN_UTILS packages.
Because so many of the referenced objects are synonyms, the view is sensitive to the standard EBS synonym and grant setup; customizations that alter those synonyms or revoke privileges on the underlying plan tables will surface as errors when the WebADI download runs.
Key Columns
- BUDGET_VERSION_ID - identifier of the budget version (financial plan version) being downloaded.
- FIN_PLAN_PREFERENCE_CODE - the financial plan preference controlling how the plan is presented.
- RESOURCE_ASSIGNMENT_ID - the resource assignment row the plan line belongs to.
- NAME - project or plan name context.
- TASK_NUMBER and TASK_NAME - the task the planned amount is associated with.
- ALIAS expressions - derived from PA_RESOURCE_LIST_MEMBERS via DECODE logic, these resolve the resource list member alias, with special handling where PARENT_MEMBER_ID is null and where GROUP_RESOURCE_TYPE_ID is zero.
- AMOUNT_TYPE_NAME, AMOUNT_TYPE_CODE, AMOUNT_SUBTYPE_CODE, AMOUNT_TYPE_ID - classify the amount being planned.
- CURRENCY_CODE - currency of the plan line.
- PRECEDING_PERIODS_AMOUNT and SUCCEEDING_PERIODS_AMOUNT - totals outside the displayed period range.
- PERIOD_AMOUNT1 through PERIOD_AMOUNT52 - the periodic amount columns mapped to spreadsheet columns.
- Unit-of-measure column - decoded through PA_LOOKUPS with lookup type 'UNIT', defaulting to 'HOURS'.
Several trailing expressions in the view text are explicitly typed NULL placeholders (TO_DATE(NULL), TO_NUMBER(NULL), NULL), which reserve column positions for the WebADI template without carrying data.
Common Use Cases and Queries
The view is used almost exclusively as the WebADI download source for Financial Planning, but it can also be queried directly for troubleshooting, for building custom extracts, or for validating what a planner will see in the spreadsheet.
- Diagnosing why a plan downloads incorrectly, by inspecting row counts and amount values for a specific plan version.
- Building ad hoc reporting on planned periodic amounts beyond the standard WebADI template.
- Comparing amounts held in the plan against the assignment and task context columns.
A representative query:
SELECT budget_version_id, name, task_number, amount_type_code, currency_code, period_amount1, period_amount2 FROM apps.pa_fp_webadi_contents_v WHERE budget_version_id = :p_version_id;
To examine amount types and units for one plan line:
SELECT resource_assignment_id, amount_type_name, amount_subtype_code FROM apps.pa_fp_webadi_contents_v WHERE budget_version_id = :p_version_id ORDER BY amount_type_name;
Because the view performs DECODE-based derivations and reads from denormalized plan tables, it is best treated as a read-only reporting surface. Direct DML against the view is neither supported nor advisable; changes to plan amounts should flow through the supported Financial Planning WebADI upload path, which uses the corresponding integrator and API rather than this view.
-
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 ,
-
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_NON_PERIODIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_NON_PERIODIC_V, object_name:PA_FP_WEBADI_NON_PERIODIC_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to download non-periodic budget/forecast data into Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_NON_PERIODIC_V ,
-
View: PA_FP_WEBADI_NON_PERIODIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_NON_PERIODIC_V, object_name:PA_FP_WEBADI_NON_PERIODIC_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to download non-periodic budget/forecast data into Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_NON_PERIODIC_V ,
-
Lookup Type: PA_RATE_TYPE
12.2.2
product: PA - Projects , meaning: Projects Integration Rate Type ,
-
Lookup Type: BILL_RATE_DATE_CODE
12.1.1
product: PA - Projects , meaning: Bill Rate Date Code , description: Bill Rate Date Codes ,
-
Lookup Type: BILL_RATE_DATE_CODE
12.2.2
product: PA - Projects , meaning: Bill Rate Date Code , description: Bill Rate Date Codes ,
-
Lookup Type: PA_FP_RATE_DATE_TYPE
12.2.2
product: PA - Projects , meaning: Financial Planning Rate Date Type , description: Financial Planning Rate Date Type ,
-
Lookup Type: PA_FP_RATE_DATE_TYPE
12.1.1
product: PA - Projects , meaning: Financial Planning Rate Date Type , description: Financial Planning Rate Date Type ,