Search Results pa_utilization_options
Overview
PA_UTILIZATION_OPTIONS is a Projects (PA) module view in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes the parameter and control settings that govern the Project Utilization process — the engine that computes utilization percentages and forecast and actual hour totals for project resources. The view is not a base table; it is a "secure" or organization-restricted presentation layer built on top of the underlying intersection table. Its defining characteristic is that it returns only the row belonging to the operating unit in which the current database session is running.
Functionally, the view presents one record per operating unit. That record carries the flags and dates that determine how the utilization calculation is executed: which calendar periods are included, how far actuals are processed, how far forecasts are projected, and when each run last completed. Because the view limits output by organization, it is the correct access point for forms, concurrent programs, and custom reports that must observe operating-unit security rather than reading the unrestricted data set directly.
Underlying Base Objects
The view is defined exclusively over PA_UTILIZATION_OPTIONS_ALL, a table that stores the same columns without organizational restriction, holding one configuration row per operating unit. No other base tables or objects are documented for this view. The relationship is a one-to-one filter: PA_UTILIZATION_OPTIONS_ALL contains all organizations, and PA_UTILIZATION_OPTIONS projects the single row whose ORG_ID matches the organization indicated by the Oracle session.
The restriction is implemented in the WHERE clause through the USERENV('CLIENT_INFO') function. The first ten characters of CLIENT_INFO are interpreted as the current organization identifier. A DECODE on the first character treats a leading blank as NULL (no organization), and the resulting value is converted to a number and wrapped in NVL with a default of -99. The same expression is applied to both ORG_ID and the session value, so a session with no organization set resolves to -99 on both sides and matches only a row that likewise has no ORG_ID. This is the standard multi-org view pattern used throughout Oracle EBS to enforce operating-unit security at the database layer.
Key Columns
- ORG_ID — The operating unit that owns the configuration row; the column against which the session organization is matched.
- GL_PERIOD_FLAG — Flag controlling whether General Ledger periods are used in the utilization calculation window.
- PA_PERIOD_FLAG — Flag controlling whether Projects (PA) periods are used in the calculation window.
- GLOBAL_EXP_PERIOD_FLAG — Flag governing the treatment of global expenditure periods.
- FORECAST_THRU_DATE — The date through which forecast hours are projected.
- ACTUALS_THRU_DATE — The date through which actual hours are processed.
- ACTUALS_LAST_RUN_DATE — Timestamp of the most recent successful actuals utilization run.
- FORECAST_LAST_RUN_DATE — Timestamp of the most recent successful forecast utilization run.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard Oracle who-audit columns recording row creation and last modification.
Common Use Cases and Queries
Typical uses include verifying the active utilization configuration before submitting the process, auditing when actuals and forecast runs last executed, and driving custom reporting on utilization parameters. The session organization must be initialized (for example, via FND_GLOBAL.APPS_INITIALIZE) for the row to be returned.
- Retrieve the configuration and last-run dates for the current operating unit:
SELECT org_id, actuals_thru_date, forecast_thru_date, actuals_last_run_date, forecast_last_run_date FROM pa_utilization_options; - Inspect period flag settings:
SELECT gl_period_flag, pa_period_flag, global_exp_period_flag FROM pa_utilization_options; - Confirm which organization the session resolves to:
SELECT org_id FROM pa_utilization_options;
Because the view filters strictly on the session organization, queries return at most one row per session; administrators needing cross-organizational comparison must query PA_UTILIZATION_OPTIONS_ALL directly under appropriate privileges.
-
View: PA_UTILIZATION_OPTIONS
12.2.2
product: PA - Projects , description: This view is based on PA_UTILIZATION_OPTIONS_ALL and restricts data to a single operating unit. The WHERE clause relies upon the value of an Oracle global variable to indicate the current organization. The view selects the parameters and de , implementation_dba_data: Not implemented in this database ,
-
View: PA_UTILIZATION_OPTIONS
12.1.1
product: PA - Projects , description: This view is based on PA_UTILIZATION_OPTIONS_ALL and restricts data to a single operating unit. The WHERE clause relies upon the value of an Oracle global variable to indicate the current organization. The view selects the parameters and de , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PA_UTILIZATION_OPTIONS_V
12.2.2
-
VIEW: APPS.PA_UTILIZATION_OPTIONS_V
12.1.1
-
APPS.PA_REP_UTIL_GLOB SQL Statements
12.1.1
-
APPS.PA_REP_UTIL_GLOB SQL Statements
12.2.2
-
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 ,
-
PACKAGE: APPS.PA_FORECAST_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_FORECAST_GLOBAL, status:VALID,
-
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 ,
-
PACKAGE: APPS.PA_FORECAST_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_FORECAST_GLOBAL, status:VALID,
-
PACKAGE BODY: APPS.PA_SUMMARIZE_ORG_ROLLUP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_SUMMARIZE_ORG_ROLLUP_PVT, status:VALID,
-
SYNONYM: APPS.PA_UTILIZATION_OPTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_UTILIZATION_OPTIONS, status:VALID,
-
SYNONYM: APPS.PA_UTILIZATION_OPTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_UTILIZATION_OPTIONS, status:VALID,
-
PACKAGE BODY: APPS.PA_SUMMARIZE_ORG_ROLLUP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_SUMMARIZE_ORG_ROLLUP_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_SUMMARIZE_ACTUAL_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_SUMMARIZE_ACTUAL_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_SUMMARIZE_ACTUAL_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_SUMMARIZE_ACTUAL_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_SUMMARIZE_FORECAST_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_SUMMARIZE_FORECAST_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_SUMMARIZE_FORECAST_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_SUMMARIZE_FORECAST_UTIL_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_FORECAST_GRC_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_FORECAST_GRC_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_REP_UTIL_GLOB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_REP_UTIL_GLOB, status:VALID,
-
PACKAGE BODY: APPS.PA_FORECAST_GRC_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_FORECAST_GRC_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_REP_UTIL_GLOB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_REP_UTIL_GLOB, status:VALID,
-
PACKAGE: APPS.PA_REP_UTIL_GLOB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_REP_UTIL_GLOB, status:VALID,
-
PACKAGE BODY: APPS.PA_REPORT_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_REPORT_UTIL, status:VALID,
-
PACKAGE: APPS.PA_REP_UTIL_GLOB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_REP_UTIL_GLOB, status:VALID,
-
PACKAGE BODY: APPS.PA_REPORT_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_REPORT_UTIL, status:VALID,
-
VIEW: PA.PA_UTILIZATION_OPTIONS_ALL#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_UTILIZATION_OPTIONS_ALL#, 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,
-
TABLE: PA.PA_UTILIZATION_OPTIONS_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_UTILIZATION_OPTIONS_ALL, object_name:PA_UTILIZATION_OPTIONS_ALL, status:VALID,
-
APPS.PA_REPORT_UTIL SQL Statements
12.1.1
-
APPS.PA_REPORT_UTIL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_REP_UTIL_GLOB
12.1.1
-
PACKAGE BODY: APPS.PA_REP_UTIL_GLOB
12.2.2
-
APPS.PA_SUMMARIZE_ACTUAL_UTIL_PVT dependencies on PA_UTILIZATION_OPTIONS
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.PA_FORECAST_GRC_PVT dependencies on PA_UTILIZATION_OPTIONS
12.1.1
-
APPS.PA_REP_UTIL_GLOB dependencies on PA_UTILIZATION_OPTIONS
12.1.1
-
APPS.PA_SUMMARIZE_ACTUAL_UTIL_PVT dependencies on PA_UTILIZATION_OPTIONS
12.1.1
-
APPS.PA_SUMMARIZE_FORECAST_UTIL_PVT dependencies on PA_UTILIZATION_OPTIONS
12.1.1
-
APPS.PA_SUMMARIZE_FORECAST_UTIL_PVT dependencies on PA_UTILIZATION_OPTIONS
12.2.2
-
APPS.PA_SUMMARIZE_ORG_ROLLUP_PVT dependencies on PA_UTILIZATION_OPTIONS
12.1.1
-
APPS.PA_REPORT_UTIL dependencies on PA_UTILIZATION_OPTIONS
12.1.1
-
APPS.PA_FORECAST_GRC_PVT dependencies on PA_UTILIZATION_OPTIONS
12.2.2
-
APPS.PA_REP_UTIL_GLOB dependencies on PA_UTILIZATION_OPTIONS
12.2.2
-
APPS.PA_FORECAST_GLOBAL dependencies on PA_UTILIZATION_OPTIONS
12.1.1
-
APPS.PA_REP_UTIL_GLOB dependencies on PA_UTILIZATION_OPTIONS
12.1.1
-
APPS.PA_REPORT_UTIL dependencies on PA_UTILIZATION_OPTIONS
12.2.2
-
APPS.PA_FORECAST_GLOBAL dependencies on PA_UTILIZATION_OPTIONS
12.2.2