Results for “report_labor_hrs_from_code”

50+ results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

PA_PROJ_FP_OPTIONS is a Projects (PA) module table that stores the default financial planning options for a project, plan type, or plan version in Oracle EBS 12.1.1 and 12.2.2. It acts as the configuration anchor for how financial plans are generated, aggregated, and displayed — controlling source codes for cost, revenue, and combined plans; planning levels; time-phasing and period masks; amount sets; resource lists; rate schedules; and layout preferences. Each row represents one set of planning options tied to a specific project and financial plan type/version combination.

Under the heuristic Data Vault classification derived from its foreign key structure, PA_PROJ_FP_OPTIONS is satellite-leaning. This suggests modeling it as a descriptive satellite attached to a project hub (PA_PROJECTS_ALL) and financial plan type link, since it predominantly carries descriptive planning attributes and configuration flags rather than acting as a pure junction or core business entity. The table contains 123 documented columns in the 12.2.2 schema.

Key Information Stored

The surrogate primary key is PROJ_FP_OPTIONS_ID, enforced by the PA_PROJ_FP_OPTIONS_PK constraint. Two unique indexes identify business-key candidates: PA_PROJ_FP_OPTIONS_U1 on PROJ_FP_OPTIONS_ID and PA_PROJ_FP_OPTIONS_U2 on the composite (PROJECT_ID, FIN_PLAN_TYPE_ID, FIN_PLAN_VERSION_ID), which enforces one option set per project/plan type/plan version.

Common Use Cases and Queries

Typical usage centers on retrieving the planning configuration for a project to understand which amount sets, resource lists, or source plans drive plan generation. A common join retrieves options alongside project and plan type:

  • Identifying default options for a project: SELECT * FROM PA_PROJ_FP_OPTIONS WHERE PROJECT_ID = :p_project_id;
  • Joining to plan type names: SELECT o.*, t.name FROM PA_PROJ_FP_OPTIONS o, PA_FIN_PLAN_TYPES_B t WHERE o.FIN_PLAN_TYPE_ID = t.FIN_PLAN_TYPE_ID AND o.PROJECT_ID = :p_project_id;
  • Reporting on period masks and amount sets configured per plan version to audit plan consistency.
  • Diagnosing plan generation issues by inspecting GEN_SRC_* source codes and plan versions.
  • Extracting rate schedule configuration (RES_CLASS_RAW_COST_SCH_ID, COST_BURDEN_RATE_SCH_ID, etc.) for costing and revenue analysis.

Related Objects

PA_PROJ_FP_OPTIONS participates in a dense network of foreign keys and is referenced by several dependent tables.