Search Results pa_forecasting_period_type
Overview
APPS.PA_FCST_PERIODS_TMP_V is a reporting view in Oracle EBS Projects (PA) that exposes the complete set of forecasting periods available for use in project forecasting and planning. Its defining characteristic is that it is conditional: the rows returned depend on the value of the profile option PA_FORECASTING_PERIOD_TYPE, which is the exact term the user searched for. When this profile option is set to 'GL', the view returns periods sourced from the General Ledger calendar. When it is set to 'PA', the view returns periods sourced from the Oracle Projects period calendar.
Because the profile option governs the period source, the view acts as a single normalized access point for forecasting periods regardless of whether an implementation runs Projects periods aligned to GL periods or maintains its own PA-defined periods. This makes it central to forecasting UIs, period-selection LOVs, and any process that must enumerate valid forecast periods in a consistent shape.
Underlying Base Objects
The view is a UNION ALL of two branches, each governed by the profile option check.
- GL branch (when PA_FORECASTING_PERIOD_TYPE = 'GL'): joins PA_IMPLEMENTATIONS, GL_SETS_OF_BOOKS, GL_PERIODS, GL_PERIOD_STATUSES, GL_LOOKUPS, and GL_DATE_PERIOD_MAP. It ties the implementation set of books to the GL period set name and accounted period type, restricts to periods whose closing status maps to lookup codes 'C','F','N','O','P' in the CLOSING_STATUS lookup type, and filters by the PA period process application ID.
- PA branch (when PA_FORECASTING_PERIOD_TYPE = 'PA'): selects from PA_PERIODS_V, the Projects view of defined PA periods, using PA_START_DATE and PA_END_DATE.
- Supporting objects: FND_PROFILE (profile value retrieval) and PA_PERIOD_PROCESS_PKG (supplies the application ID constant).
Note that several referenced objects are synonyms or views over the base GL and PA tables, reflecting standard EBS layering.
Key Columns
- Source indicator: the literal 'GL' or 'PA' identifying which branch produced the row.
- PERIOD_YEAR: the fiscal/calendar year of the period.
- PERIOD_NAME: the period identifier (for example, a GL period name such as JAN-25).
- START_DATE / END_DATE: the GL start and end dates of the period in the GL branch; the PA branch returns PA_START_DATE and PA_END_DATE aliased to the same positions, giving a uniform date range across both sources.
The consistent column shape across both branches is what allows downstream forecast logic to iterate periods without branching on the profile option itself.
Common Use Cases and Queries
Typical scenarios include populating a forecast period LOV, validating a user-entered forecast period, and driving period-based forecast rollups. A simple query lists all valid forecast periods:
SELECT period_name, period_year, start_date, end_date FROM apps.pa_fcst_periods_tmp_v ORDER BY start_date;- Restricting to the current year: add
WHERE period_year = TO_CHAR(SYSDATE,'YYYY'). - Filtering by source:
WHERE source = 'PA'(or'GL') to isolate the active calendar branch.
Because the profile option is resolved at query time, the same SQL behaves correctly under either configuration, which is the primary reason this view exists.
-
Lookup Type: PA_FORECASTING_PERIOD_TYPE
12.2.2
product: PA - Projects , meaning: Defines the period type for forecast calculations , description: Defines the period type for forecast calculations ,
-
Lookup Type: PA_FORECASTING_PERIOD_TYPE
12.1.1
product: PA - Projects , meaning: Defines the period type for forecast calculations , description: Defines the period type for forecast calculations ,
-
VIEW: APPS.PA_FCST_PERIODS_TMP_V
12.1.1
-
VIEW: APPS.PA_FCST_PERIODS_TMP_V
12.2.2
-
VIEW: APPS.PA_FCST_PERIODS_V
12.2.2
-
VIEW: APPS.PA_FCST_PERIODS_V
12.1.1
-
View: PA_FCST_PERIODS_TMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PERIODS_TMP_V, object_name:PA_FCST_PERIODS_TMP_V, status:VALID, product: PA - Projects , description: The PA_FCST_PERIODS_TMP_V view displays information about period types such as the name of the period and the start and end dates. , implementation_dba_data: APPS.PA_FCST_PERIODS_TMP_V ,
-
View: PA_FCST_PERIODS_TMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PERIODS_TMP_V, object_name:PA_FCST_PERIODS_TMP_V, status:VALID, product: PA - Projects , description: The PA_FCST_PERIODS_TMP_V view displays information about period types such as the name of the period and the start and end dates. , implementation_dba_data: APPS.PA_FCST_PERIODS_TMP_V ,
-
APPS.PA_FCST_GLOBAL SQL Statements
12.2.2
-
APPS.PA_FCST_GLOBAL SQL Statements
12.1.1
-
View: PA_FCST_PERIODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PERIODS_V, object_name:PA_FCST_PERIODS_V, status:VALID, product: PA - Projects , description: PA_FCST_PERIODS_V is a view that shows the periods , implementation_dba_data: APPS.PA_FCST_PERIODS_V ,
-
View: PA_FCST_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PERIODS_V, object_name:PA_FCST_PERIODS_V, status:VALID, product: PA - Projects , description: PA_FCST_PERIODS_V is a view that shows the periods , implementation_dba_data: APPS.PA_FCST_PERIODS_V ,
-
VIEW: APPS.PA_FCST_PROJECT_SUM_V
12.1.1
-
VIEW: APPS.PA_FCST_PROJECT_SUM_V
12.2.2
-
PACKAGE BODY: APPS.PA_FORECAST_GLOBAL
12.1.1
-
PACKAGE BODY: APPS.PA_FORECAST_GLOBAL
12.2.2
-
View: PA_FCST_PROJECT_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJECT_SUM_V, object_name:PA_FCST_PROJECT_SUM_V, status:VALID, product: PA - Projects , description: PA_PROJ_FCST_HDR_V is a view that shows project forecasting , implementation_dba_data: APPS.PA_FCST_PROJECT_SUM_V ,
-
View: PA_FCST_PROJECT_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJECT_SUM_V, object_name:PA_FCST_PROJECT_SUM_V, status:VALID, product: PA - Projects , description: PA_PROJ_FCST_HDR_V is a view that shows project forecasting , implementation_dba_data: APPS.PA_FCST_PROJECT_SUM_V ,
-
VIEW: APPS.PA_FCST_PROJ_HDR_V
12.2.2
-
VIEW: APPS.PA_FCST_PROJ_HDR_V
12.1.1
-
View: PA_FCST_PROJ_HDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJ_HDR_V, object_name:PA_FCST_PROJ_HDR_V, status:VALID, product: PA - Projects , description: PA_FCST_PROJ_HDR_V is a view that shows project forecasting , implementation_dba_data: APPS.PA_FCST_PROJ_HDR_V ,
-
VIEW: APPS.PA_FCST_PROJ_PERIODIC_V
12.2.2
-
View: PA_FCST_PROJ_HDR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJ_HDR_V, object_name:PA_FCST_PROJ_HDR_V, status:VALID, product: PA - Projects , description: PA_FCST_PROJ_HDR_V is a view that shows project forecasting , implementation_dba_data: APPS.PA_FCST_PROJ_HDR_V ,
-
VIEW: APPS.PA_FCST_PROJ_PERIODIC_V
12.1.1
-
View: PA_FCST_PROJ_PERIODIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJ_PERIODIC_V, object_name:PA_FCST_PROJ_PERIODIC_V, status:VALID, product: PA - Projects , description: PA_PROJ_FCST_PERIODIC_V is a view that shows project periodic forecasting , implementation_dba_data: APPS.PA_FCST_PROJ_PERIODIC_V ,
-
View: PA_FCST_PROJ_PERIODIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FCST_PROJ_PERIODIC_V, object_name:PA_FCST_PROJ_PERIODIC_V, status:VALID, product: PA - Projects , description: PA_PROJ_FCST_PERIODIC_V is a view that shows project periodic forecasting , implementation_dba_data: APPS.PA_FCST_PROJ_PERIODIC_V ,
-
PACKAGE BODY: APPS.PA_FCST_GLOBAL
12.1.1
-
PACKAGE BODY: APPS.PA_FCST_GLOBAL
12.2.2
-
PACKAGE: APPS.PA_FCST_GLOBAL
12.1.1
-
PACKAGE: APPS.PA_FCST_GLOBAL
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.PA_FCST_GLOBAL dependencies on FND_PROFILE
12.1.1
-
APPS.PA_FORECAST_GLOBAL dependencies on FND_PROFILE
12.2.2
-
APPS.PA_FCST_GLOBAL dependencies on FND_PROFILE
12.2.2
-
APPS.PA_FORECAST_GLOBAL dependencies on FND_PROFILE
12.1.1
-
APPS.PA_FCST_GLOBAL dependencies on FND_PROFILE
12.1.1
-
APPS.PA_FCST_GLOBAL dependencies on FND_PROFILE
12.2.2
-
APPS.PA_FORECAST_GLOBAL dependencies on PA_UTILS
12.2.2
-
APPS.PA_FCST_GLOBAL dependencies on FND_PROFILE_OPTIONS_TL
12.2.2
-
APPS.PA_FORECAST_GLOBAL dependencies on PA_UTILS
12.1.1
-
APPS.PA_FCST_GLOBAL dependencies on FND_PROFILE_OPTIONS_TL
12.1.1
-
APPS.PA_FORECAST_GLOBAL dependencies on FND_API
12.2.2
-
APPS.PA_FCST_GLOBAL dependencies on PA_UTILS
12.1.1
-
APPS.PA_FORECAST_GLOBAL dependencies on FND_API
12.1.1
-
APPS.PA_FCST_GLOBAL dependencies on PA_UTILS
12.2.2
-
APPS.PA_RATE_PVT_PKG dependencies on FND_PROFILE
12.1.1
-
APPS.PA_RATE_PVT_PKG dependencies on FND_PROFILE
12.2.2
-
APPS.PA_FCST_GLOBAL dependencies on FND_API
12.1.1
-
APPS.PA_FCST_GLOBAL dependencies on FND_API
12.2.2