Search Results etc_method
Overview
PA_FP_WEBADI_PERIODIC_V is an APPS-owned reporting view within the Oracle E-Business Suite Projects (PA) module. Its documented purpose is to support Financial Planning by downloading periodic budget and forecast data into an Excel spreadsheet. The view is registered as VALID in the ETRM repository and is available in both EBS 12.1.1 and 12.2.2. It functions as a presentation-layer interface between the WebADI (Web Applications Desktop Integrator) staging structures and the spreadsheet upload/download process used by planners working with periodic (spread) budget and forecast versions.
The view exposes one row per planning resource assignment for a given budget version, including project and task identifiers, resource details, currency and rate information, remaining effort (ETC) attributes, and a horizontally pivoted set of up to fifty-two period amount columns (PRD1 through PRD52), bracketed by preceding and succeeding period amounts. This shape is optimized for tabular consumption by Excel, rather than for normalized relational querying.
Underlying Base Objects
The view is defined over a single base object: the synonym PA_FP_WEBADI_XFACE_TMP, which resolves to the WebADI interface/staging table used during the Financial Planning download process. Because the view is defined entirely over this temporary interface structure, it carries no independent storage and reflects only the data currently staged for a WebADI planning session. Records are associated with a session through BUDGET_VERSION_ID and the delete flag, and the staging table is populated by the Financial Planning download logic before the data is rendered into the Excel worksheet.
The DELETE_FLAG column indicates staged rows marked for removal or refresh within the interface. Consequently, the view should be treated as session-scoped and transient, not as a stable historical record of planning data. Persistent planning amounts reside in the PA budget and forecast base tables; this view is strictly the WebADI transport representation.
Key Columns
- BUDGET_VERSION_ID — identifies the budget or forecast version being downloaded.
- FIN_PLAN_PREFERENCE_CODE, PLAN_CLASS_CODE — describe the planning preference and plan class driving the session.
- PROJECT_ID, PROJECT_NAME, PROJECT_NUMBER and TASK_NAME, TASK_NUMBER, TASK_DISPLAY_SEQUENCE — the project and task context for each row.
- RESOURCE_ASSIGNMENT_ID, RESOURCE_ALIAS, RESOURCE_LIST_MEMBER_ID, UNIT_OF_MEASURE — the planned resource and its unit of measure.
- TXN_CURRENCY_CODE, AMOUNT_TYPE_CODE, AMOUNT_TYPE_NAME — transaction currency and the amount type being planned.
- SPREAD_CURVE_ID, SPREAD_CURVE, START_DATE, END_DATE — the spread curve applied and the period boundaries.
- MFC_COST_TYPE_ID, MFC_COST_TYPE — the mapped cost type for the resource.
- ETC_METHOD_CODE, ETC_METHOD, ETC_SOURCE — the estimated-to-complete (ETC) method code, its descriptive name, and the source of the ETC value. The ETC_METHOD_CODE is the user's search term and is central to remaining-effort planning.
- PROJFUNC_RATE_TYPE, PROJFUNC_RATE_DATE_TYPE, PROJFUNC_EXCHANGE_RATE, PROJFUNC_RATE_DATE and the parallel PROJECT_RATE_* columns — the project functional and project rate/date details used for currency conversion.
- PRECEDING_PERIOD_AMOUNT and SUCCEEDING_PERIOD_AMOUNT — amounts outside the displayed period window.
- PRD1 ... PRD52 — the periodic spread amounts, one column per period.
- DELETE_FLAG — staging control flag for the WebADI interface.
Common Use Cases and Queries
The principal use case is the Financial Planning periodic budget/forecast download into Excel via WebADI. Technically, the view is queried to inspect staged planning rows, validate ETC method assignments, and troubleshoot download results.
To list staged rows for a budget version, including the ETC method for each resource assignment:
SELECT project_number, task_number, resource_alias,
etc_method_code, etc_method, etc_source,
preceding_period_amount, prd1, prd2
FROM apps.pa_fp_webadi_periodic_v
WHERE budget_version_id = :budget_version_id
AND delete_flag = 'N';
To summarize planned amounts by ETC method across the staged session:
SELECT etc_method_code, COUNT(*) staged_rows,
SUM(prd1) period1_amount
FROM apps.pa_fp_webadi_periodic_v
WHERE budget_version_id = :budget_version_id
GROUP BY etc_method_code;
Because the object is a view over a staging synonym, queries should always filter on BUDGET_VERSION_ID and DELETE_FLAG to avoid returning rows from unrelated or stale planning sessions.
-
View: PA_FP_WEBADI_PERIODIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_PERIODIC_V, object_name:PA_FP_WEBADI_PERIODIC_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to download the periodic budget/forecast data into Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_PERIODIC_V ,
-
View: PA_FP_WEBADI_NP_CUSTOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_NP_CUSTOM_V, object_name:PA_FP_WEBADI_NP_CUSTOM_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to customize the non-periodic budget/forecast download to Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_NP_CUSTOM_V ,
-
VIEW: APPS.PA_FP_WEBADI_NP_CUSTOM_V
12.2.2
-
VIEW: PA.PA_FP_WEBADI_XFACE_TMP1#
12.2.2
-
VIEW: APPS.PA_FP_WEBADI_PERIODIC_V
12.1.1
-
View: PA_FP_WEBADI_NP_CUSTOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_NP_CUSTOM_V, object_name:PA_FP_WEBADI_NP_CUSTOM_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to customize the non-periodic budget/forecast download to Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_NP_CUSTOM_V ,
-
VIEW: APPS.PA_FP_WEBADI_P_CUSTOM_V
12.1.1
-
VIEW: APPS.PA_FP_WEBADI_PERIODIC_V
12.2.2
-
VIEW: APPS.PA_FP_WEBADI_P_CUSTOM_V
12.2.2
-
VIEW: APPS.PA_FP_WEBADI_NP_CUSTOM_V
12.1.1
-
View: PA_FP_WEBADI_PERIODIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_PERIODIC_V, object_name:PA_FP_WEBADI_PERIODIC_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to download the periodic budget/forecast data into Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_PERIODIC_V ,
-
View: PA_FP_WEBADI_P_CUSTOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_P_CUSTOM_V, object_name:PA_FP_WEBADI_P_CUSTOM_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to customize the periodic budget/forecast download to Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_P_CUSTOM_V ,
-
View: PA_FP_WEBADI_P_CUSTOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_P_CUSTOM_V, object_name:PA_FP_WEBADI_P_CUSTOM_V, status:VALID, product: PA - Projects , description: This view is used in Financial Planning to customize the periodic budget/forecast download to Excel Spreadsheet. , implementation_dba_data: APPS.PA_FP_WEBADI_P_CUSTOM_V ,
-
TABLE: PA.PA_FP_WEBADI_XFACE_TMP1
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_FP_WEBADI_XFACE_TMP1, object_name:PA_FP_WEBADI_XFACE_TMP1, status:VALID,
-
VIEW: PA.PA_FP_WEBADI_XFACE_TMP1#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_FP_WEBADI_XFACE_TMP1#, status:VALID,
-
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 ,
-
TABLE: PA.PA_FP_WEBADI_XFACE_TMP
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_FP_WEBADI_XFACE_TMP, object_name:PA_FP_WEBADI_XFACE_TMP, status:VALID,
-
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: APPS.PA_FP_WEBADI_NON_PERIODIC_V
12.2.2
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.PA_FP_WEBADI_PERIODIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_PERIODIC_V, object_name:PA_FP_WEBADI_PERIODIC_V, status:VALID,
-
VIEW: APPS.PA_FP_WEBADI_NP_CUSTOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_NP_CUSTOM_V, object_name:PA_FP_WEBADI_NP_CUSTOM_V, status:VALID,
-
VIEW: APPS.PA_FP_WEBADI_PERIODIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_PERIODIC_V, object_name:PA_FP_WEBADI_PERIODIC_V, status:VALID,
-
VIEW: APPS.PA_FP_WEBADI_NP_CUSTOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_NP_CUSTOM_V, object_name:PA_FP_WEBADI_NP_CUSTOM_V, status:VALID,
-
VIEW: APPS.PA_FP_WEBADI_P_CUSTOM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_P_CUSTOM_V, object_name:PA_FP_WEBADI_P_CUSTOM_V, status:VALID,
-
VIEW: APPS.PA_FP_WEBADI_P_CUSTOM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_WEBADI_P_CUSTOM_V, object_name:PA_FP_WEBADI_P_CUSTOM_V, status:VALID,
-
VIEW: APPS.PA_FP_WEBADI_NON_PERIODIC_V
12.1.1
-
APPS.PA_FP_WEBADI_PKG dependencies on PA_FIN_PLAN_UTILS
12.2.2
-
APPS.PA_FP_WEBADI_PKG dependencies on PA_FIN_PLAN_UTILS
12.1.1
-
APPS.PA_FP_WEBADI_PKG dependencies on PA_LOOKUPS
12.1.1
-
APPS.PA_FP_WEBADI_PKG dependencies on PA_LOOKUPS
12.2.2
-
APPS.PA_FP_WEBADI_PKG SQL Statements
12.2.2
-
APPS.PA_FP_WEBADI_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_FP_WEBADI_PKG
12.1.1
-
PACKAGE BODY: APPS.PA_FP_WEBADI_PKG
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2