Search Results pa_utilization_options_v
Overview
PA_UTILIZATION_OPTIONS_V is an Oracle EBS Projects (PA) view owned by the APPS schema, defined in 12.1.1 and 12.2.2 to expose utilization option configurations for each operating unit in Oracle Projects. Utilization options determine how a project is planned and tracked across an organization's fiscal and project accounting periods, and this view presents those settings alongside descriptive operating unit names.
The view is used in reporting, integrations, and concurrent program logic where the caller must determine whether GL period flagging, PA period flagging, or global exception period flagging is enabled, and which forecast-through and actuals-through dates are assigned. Because the view joins the underlying utilization options table to a descriptive operating units view, it simplifies queries that would otherwise require manual joins to translate ORG_ID into a human-readable operating unit name.
Its primary value is read-only access to configuration data. No transactional posting should be performed against the view; it is intended to support inquiry, validation, and reporting tasks in projects-related flows.
Underlying Base Objects
The view is defined over the utilization options table and an operating unit view. The documented metadata and the view text identify the following base objects:
- PA_UTILIZATION_OPTIONS — the base table stored in the APPS schema (referenced through synonym PA_UTILIZATION_OPTIONS). It holds utilization configuration rows keyed by ORG_ID.
- PA_OPERATING_UNITS_V — the operating units view used to resolve ORG_ID to the OPERATING_UNIT descriptive name.
- MO_GLOBAL — a package referenced by the metadata, typically involved in multi-org (VPD/security) context resolution that governs which ORG_ID rows are visible to the session.
The view joins PA_UTILIZATION_OPTIONS and PA_OPERATING_UNITS_V on ORG_ID. In practice, access is constrained by the user's operating unit security profile through MO_GLOBAL, meaning the visible rows depend on the active organization context.
Key Columns
The view exposes the following columns:
- ROW_ID — the ROWID of the underlying PA_UTILIZATION_OPTIONS row, useful for identifying specific configuration records.
- ORG_ID — the operating unit identifier, the primary join key to PA_OPERATING_UNITS_V.
- OPERATING_UNIT — the descriptive name of the operating unit.
- GL_PERIOD_FLAG — indicates whether GL period flagging is enabled for the operating unit.
- PA_PERIOD_FLAG — indicates whether PA period flagging is enabled.
- GLOBAL_EXP_PERIOD_FLAG — indicates whether the global exception period flag is set.
- FORECAST_THRU_DATE — the date through which forecast data is considered valid for the operating unit's utilization processing. This column is frequently queried to determine forecast horizons.
- ACTUALS_THRU_DATE — the date through which actuals are processed.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard audit columns.
Common Use Cases and Queries
Typical scenarios include validating utilization configuration for a given operating unit, checking whether forecast or actuals horizons are set correctly before running utilization routines, and confirming that period flagging settings align with the organization's accounting calendar.
A basic query retrieving utilization options for an operating unit:
- SELECT operating_unit, org_id, forecast_thru_date, actuals_thru_date, gl_period_flag, pa_period_flag FROM apps.pa_utilization_options_v WHERE operating_unit = :p_operating_unit;
A query to identify operating units whose forecast horizon has lapsed or is approaching:
- SELECT operating_unit, forecast_thru_date, actuals_thru_date FROM apps.pa_utilization_options_v WHERE forecast_thru_date <= SYSDATE ORDER BY forecast_thru_date;
A query listing all flag settings by operating unit for review before period close:
- SELECT operating_unit, gl_period_flag, pa_period_flag, global_exp_period_flag FROM apps.pa_utilization_options_v ORDER BY operating_unit;
Because row visibility is governed by the multi-org security model, queries should be run within the correct operating unit context, or using a profile with appropriate cross-organization access, to ensure complete and accurate results.
-
View: PA_UTILIZATION_OPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UTILIZATION_OPTIONS_V, object_name:PA_UTILIZATION_OPTIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_UTILIZATION_OPTIONS_V ,
-
View: PA_UTILIZATION_OPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UTILIZATION_OPTIONS_V, object_name:PA_UTILIZATION_OPTIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_UTILIZATION_OPTIONS_V ,
-
SYNONYM: APPS.PA_UTILIZATION_OPTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_UTILIZATION_OPTIONS, status:VALID,
-
VIEW: APPS.PA_OPERATING_UNITS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:PA_OPERATING_UNITS_V, status:VALID,
-
SYNONYM: APPS.PA_UTILIZATION_OPTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_UTILIZATION_OPTIONS, status:VALID,
-
VIEW: APPS.PA_OPERATING_UNITS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PA_OPERATING_UNITS_V, status:VALID,
-
VIEW: APPS.PA_UTILIZATION_OPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UTILIZATION_OPTIONS_V, object_name:PA_UTILIZATION_OPTIONS_V, status:VALID,
-
VIEW: APPS.PA_UTILIZATION_OPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UTILIZATION_OPTIONS_V, object_name:PA_UTILIZATION_OPTIONS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE: APPS.MO_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:MO_GLOBAL, status:VALID,
-
PACKAGE: APPS.MO_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:MO_GLOBAL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2