Search Results fixed_date
Overview
APPS.PA_FP_WEBADI_CONTENTS_V is a read-only reporting view in the Oracle E-Business Suite Projects (PA) module. It exposes financial plan data — budget versions, resource assignments, tasks, amount types, currencies, and period-by-period amounts — in a flattened, WebADI-friendly structure intended for desktop integration and external reporting. The view is part of the Project Financial Planning / budgeting feature set and is defined in the APPS schema, making it queryable by any user with the appropriate grants.
Within Oracle EBS 12.1.1 and 12.2.2 the view functions as an abstraction layer over the underlying PA financial plan and budget tables. It joins resource assignments, task definitions, amount types, and the denormalized period columns (PERIOD_AMOUNT1 through PERIOD_AMOUNT52) so that consumers do not need to reconstruct multi-table joins themselves. This makes it suitable for WebADI upload/download templates, BI Publisher reports, and ad-hoc SQL used by project accountants.
Underlying Base Objects
According to the ETRM metadata for 12.2.2, the view is defined over the following documented base objects:
- Synonyms (base tables): PA_BUDGET_LINES, PA_BUDGET_VERSIONS, PA_FP_TXN_CURRENCIES, PA_PROJECTS_ALL, PA_PROJ_FP_OPTIONS, PA_PROJ_PERIODS_DENORM, PA_RESOURCE_ASSIGNMENTS, PA_RESOURCE_LIST_MEMBERS, PA_TASKS.
- Views: PA_AMOUNT_TYPES_VL, PA_CONVERSION_TYPES_V, PA_LOOKUPS, PA_RESOURCE_LISTS.
- Packages: FND_PROFILE, PA_CROSS_BUSINESS_GRP, PA_FIN_PLAN_UTILS.
The principal driving objects are PA_PROJ_PERIODS_DENORM (which supplies the PERIOD_AMOUNT1..52 columns), PA_RESOURCE_ASSIGNMENTS (resource_assignment_id, unit_of_measure), PA_BUDGET_VERSIONS (budget_version_id), and PA_TASKS (task_number, task_name). The FND_PROFILE package is referenced to respect site-level profile options such as currency and cross-business-group security, while PA_FIN_PLAN_UTILS computes derived financial plan attributes.
Key Columns
- BUDGET_VERSION_ID — identifier of the budget version the financial plan belongs to.
- RESOURCE_ASSIGNMENT_ID — the resource-assignment line tying a resource (person, organization, or non-labor resource) to a project/task.
- NAME, ALIAS, FIN_PLAN_PREFERENCE_CODE — resource and financial-plan naming attributes used to label rows.
- TASK_NUMBER, TASK_NAME — the project task the plan line belongs to.
- AMOUNT_TYPE_NAME, AMOUNT_TYPE_CODE, AMOUNT_SUBTYPE_CODE, AMOUNT_TYPE_ID — classify the plan amount (e.g., cost, revenue, burden).
- CURRENCY_CODE — transaction currency for the amounts.
- PRECEDING_PERIODS_AMOUNT, SUCCEEDING_PERIODS_AMOUNT — rolled-up totals for periods outside the visible window.
- PERIOD_AMOUNT1 … PERIOD_AMOUNT52 — the denormalized period-by-period amounts.
- UNIT_OF_MEASURE (via decode) — resolved to a meaning from PA_LOOKUPS (LOOKUP_TYPE='UNIT'), defaulting from 'NONE' to HOURS.
- Numerous placeholder columns (to_date(NULL), to_number(NULL), null) retain WebADI template shape even where no data is populated.
Common Use Cases and Queries
Typical uses include exporting a budget version's plan to Excel via WebADI, reconciling budget lines to tasks, and feeding downstream reporting on labor and non-labor amounts by period.
SELECT pra.budget_version_id,
pra.resource_assignment_id,
ptk.task_number,
pmvl.amount_type_name,
p.currency_code,
p.period_amount1,
p.period_amount2
FROM apps.pa_fp_webadi_contents_v p
WHERE p.budget_version_id = :budget_version_id
ORDER BY ptk.task_number, pmvl.amount_type_name;
Note on the searched term fixed_date: this view contains no FIXED_DATE column and does not reference the FND_SESSIONS/fixed-date mechanism. Any "fixed date" behavior affecting results would come from the session-level profile option (FND: Fixed Date) applied by the underlying base tables, not from a column in this view.
-
VIEW: APPS.PA_FP_WEBADI_CONTENTS_V
12.2.2
-
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: APPS.PA_FP_WEBADI_CONTENTS_V
12.1.1
-
VIEW: APPS.PA_FP_WEBADI_NON_PERIODIC_V
12.1.1
-
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: APPS.PA_FP_WEBADI_NON_PERIODIC_V
12.2.2
-
VIEW: AP.AP_TERMS_LINES#
12.2.2
-
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 ,
-
VIEW: AP.AP_TERMS_LINES#
12.2.2
owner:AP, object_type:VIEW, object_name:AP_TERMS_LINES#, status:VALID,
-
APPS.PA_FP_MULTI_CURRENCY_PKG SQL Statements
12.1.1
-
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 ,
-
APPS.PA_EVENT_CORE SQL Statements
12.1.1
-
APPS.PA_EVENT_CORE SQL Statements
12.2.2
-
APPS.PA_FP_MULTI_CURRENCY_PKG SQL Statements
12.2.2
-
APPS.PA_BILLING_PUB SQL Statements
12.2.2
-
APPS.MSD_WF SQL Statements
12.1.1
-
APPS.MSD_WF SQL Statements
12.2.2
-
APPS.PA_BILLING_PUB SQL Statements
12.1.1
-
TABLE: AP.AP_TERMS_LINES
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TERMS_LINES, object_name:AP_TERMS_LINES, status:VALID,
-
TABLE: AP.AP_TERMS_LINES
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TERMS_LINES, object_name:AP_TERMS_LINES, status:VALID,
-
APPS.PA_RATE_ATTR_PKG SQL Statements
12.1.1
-
APPS.PA_RATE_ATTR_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_BILLING_PUB
12.2.2
-
APPS.MSDWF SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_BILLING_WRKBNCH_EVENTS
12.2.2
-
APPS.MSDWF SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_BILLING_WRKBNCH_EVENTS
12.1.1
-
PACKAGE BODY: APPS.PA_BILLING_PUB
12.1.1
-
PACKAGE: APPS.PA_FP_CONSTANTS_PKG
12.1.1
-
PACKAGE: APPS.PA_FP_CONSTANTS_PKG
12.2.2
-
APPS.PA_FP_WEBADI_PKG SQL Statements
12.1.1
-
APPS.PA_FP_WEBADI_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_EVENT_CORE
12.1.1
-
PACKAGE BODY: APPS.PA_EVENT_CORE
12.2.2
-
PACKAGE BODY: APPS.PA_RATE_ATTR_PKG
12.1.1
-
PACKAGE BODY: APPS.PA_RATE_ATTR_PKG
12.2.2
-
PACKAGE BODY: APPS.PA_FP_MULTI_CURRENCY_PKG
12.1.1
-
PACKAGE BODY: APPS.PA_FP_MULTI_CURRENCY_PKG
12.2.2
-
PACKAGE BODY: APPS.PA_EVENT_PVT
12.2.2
-
PACKAGE BODY: APPS.PA_EVENT_PVT
12.1.1
-
APPS.PA_FP_COPY_ACTUALS_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_EVENT_PUB
12.1.1
-
PACKAGE BODY: APPS.PA_EVENT_PUB
12.2.2
-
APPS.PA_BUDGET_PVT SQL Statements
12.1.1
-
APPS.PA_FP_WEBADI_PKG dependencies on PA_FP_PROJ_XL_AMT_TYPES
12.1.1