Search Results pa_forecasting_options_all_u1




Overview

PA.PA_FORECASTING_OPTIONS_ALL is a setup and configuration table in the Oracle E-Business Suite Projects (PA) schema that stores the parameters and defaults governing utilization forecasting behavior. Each row defines the forecasting options for a single operating unit, so multi-organization installations must create and maintain one row per ORG_ID. Because the table is organization-striped, it carries the _ALL suffix, and the ORG_ID column is the discriminator enforced by the unique index PA_FORECASTING_OPTIONS_ALL_U1.

The table captures two broad categories of information: date-driven forecasting boundaries (the dates through which actuals and forecast utilization are calculated) and defaulting attributes for requirements, assignments, and transfer pricing, including labor expenditure types and transfer price amount types. Several legacy columns remain in the physical schema but are documented as obsolete and unused, reflecting the table's evolution across releases.

From a Data Vault modeling perspective, the metadata's heuristic classification is satellite-leaning. This is consistent with a table whose business key is effectively the operating unit identifier and whose non-key attributes are descriptive configuration values subject to change over time rather than transactional relationships.

Key Information Stored

Although the documented 12.2.2 schema contains 32 columns, the most operationally significant are:

Common Use Cases and Queries

Typical usage centers on verifying forecasting setup per operating unit and auditing utilization calculation cutoffs. A common retrieval pattern selects configuration for a given organization:

  • SELECT * FROM pa.pa_forecasting_options_all WHERE org_id = :org_id;
  • Reporting on which operating units have stale FORECAST_THRU_DATE or ACTUALS_THRU_DATE values to detect forecasting jobs that have not run.
  • Reviewing default expenditure type and transfer price amount type configuration before running forecast burdened cost calculations.
  • Joining to PA_PROJECTS_ALL on ORG_FCST_PROJECT_TEMPLATE_ID = PROJECT_ID to confirm the template assigned to organization forecasting.
  • Inspecting unassigned-time defaulting flags to reconcile how billable versus non-billable time is routed during forecast processing.

Related Objects

  • PA.PA_PROJECTS_ALL — referenced via the documented foreign key ORG_FCST_PROJECT_TEMPLATE_ID → PROJECT_ID, linking the organization forecasting template.
  • PA.PA_FORECASTING_OPTIONS_ALL_U1 — the unique index on ORG_ID that enforces one row per operating unit.
  • HR_OPERATING_UNITS / HR_ALL_ORGANIZATION_UNITS — source of the ORG_ID operating unit definition used in multi-organization filtering.
  • PA.PA_PROJECT_TEMPLATES and related template tables — consumed through ORG_FCST_PROJECT_TEMPLATE_ID when organization forecasting projects are created.
  • PA.PA_EXPENDITURE_TYPES — supplies valid values for the default labor expenditure type and class columns.
  • PA.PA_TRANSFER_PRICE_AMOUNT_TYPES — supplies values for DEFAULT_TP_AMOUNT_TYPE.
  • Utilization and forecast reporting views in the PA schema that read these configuration values at runtime.