Search Results pa_project_copy_overrides
Overview
PA_PROJECT_COPY_OVERRIDES is a Projects (PA) module table that stores the Quick Entry field definitions used when a project is created from a project template. During the "copy project" operation, Oracle Projects presents users with a set of prompts derived from this table, allowing template-driven defaults to be overridden at the point of creation. Each row describes one overridable field — its name, presentation label, ordering, and whether entry is mandatory — so the form can be rendered dynamically rather than hard-coded.
The table is owned by the APPS-facing PA schema and is classified as VALID in both 12.1.1 and 12.2.2. From a Data Vault modeling perspective, the FK relationship to PA_PROJECTS_ALL on PROJECT_ID and the absence of any outgoing child references suggest a satellite-leaning classification: the table hangs off the project hub and carries descriptive, attribute-style content rather than representing an independent business entity or an associative link between two hubs. This is a heuristic suggestion only; the table is a conventional EBS transactional-attribute table, not a formal Data Vault construct.
Key Information Stored
The documented physical schema contains twelve columns. The most significant are:
- PROJECT_ID — Foreign key to PA_PROJECTS_ALL; identifies the project template or project record whose Quick Entry behavior is being configured.
- FIELD_NAME — Internal identifier of the field being overridden during the copy operation.
- DISPLAY_NAME — User-visible prompt or label presented on the Quick Entry form.
- LIMITING_VALUE — Value constraint applied to the entry, controlling what a user may supply.
- SORT_ORDER — Sequence in which the field is displayed; part of the composite primary key.
- MANDATORY_FLAG — Indicates whether the field must be populated before the copy can proceed.
- RECORD_VERSION_NUMBER — Optimistic locking counter used by the application during concurrent updates.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit columns recording who created and last modified each row and when.
The surrogate primary key is PA_PROJECT_COPY_OVERRIDES_PK, defined over (PROJECT_ID, SORT_ORDER). The unique index PA_PROJECT_COPY_OVERRIDES_U1 shares the same column list, making it the business-key candidate: no two override entries may occupy the same display position for the same project. Notably, FIELD_NAME is not part of either key, so field identity is positional within a project.
Common Use Cases and Queries
Typical scenarios include diagnosing why a Quick Entry prompt does not appear during template-based project creation, verifying that mandatory overrides are enforced, and auditing customizations applied to seeded templates.
- List all Quick Entry fields for a given template in display order:
SELECT sort_order, field_name, display_name, mandatory_flag, limiting_value
FROM pa.pa_project_copy_overrides
WHERE project_id = :p_project_id
ORDER BY sort_order; - Identify templates with mandatory overrides that may block automated project creation:
SELECT project_id, COUNT(*) mandatory_fields
FROM pa.pa_project_copy_overrides
WHERE mandatory_flag = 'Y'
GROUP BY project_id; - Compare override configurations across templates to detect inconsistent or duplicated setups.
- Reconcile the table against PA_PROJECTS_ALL to confirm orphaned override rows after project deletion.
Related Objects
The following objects are most significant when working with this table:
- PA_PROJECTS_ALL — Parent of the FK on PROJECT_ID; join key for resolving template names and numbers.
- PA_PROJECT_COPY_OVERRIDES_PK — Composite primary key on (PROJECT_ID, SORT_ORDER).
- PA_PROJECT_COPY_OVERRIDES_U1 — Unique index on (PROJECT_ID, SORT_ORDER), enforcing positional uniqueness.
- PA_PROJECT_TEMPLATES / template setup forms — Configuration UI that reads and writes override rows.
- Project Copy / Quick Entry concurrent programs and APIs — Runtime consumers that render prompts and apply overrides during project creation.
-
Table: PA_PROJECT_COPY_OVERRIDES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_COPY_OVERRIDES, object_name:PA_PROJECT_COPY_OVERRIDES, status:VALID, product: PA - Projects , description: Quick Entry fields for project templates , implementation_dba_data: PA.PA_PROJECT_COPY_OVERRIDES ,
-
Table: PA_PROJECT_COPY_OVERRIDES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_COPY_OVERRIDES, object_name:PA_PROJECT_COPY_OVERRIDES, status:VALID, product: PA - Projects , description: Quick Entry fields for project templates , implementation_dba_data: PA.PA_PROJECT_COPY_OVERRIDES ,
-
VIEW: PA.PA_PROJECT_COPY_OVERRIDES#
12.2.2
-
VIEW: PA.PA_PROJECT_COPY_OVERRIDES#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_PROJECT_COPY_OVERRIDES#, status:VALID,
-
SYNONYM: APPS.PA_PROJECT_COPY_OVERRIDES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECT_COPY_OVERRIDES, status:VALID,
-
TABLE: PA.PA_PROJECT_COPY_OVERRIDES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_COPY_OVERRIDES, object_name:PA_PROJECT_COPY_OVERRIDES, status:VALID,
-
VIEW: APPS.PA_OVERRIDE_FIELDS_SS_V
12.1.1
-
VIEW: APPS.PA_OVERRIDE_FIELDS_SS_V
12.2.2
-
VIEW: APPS.PA_OVERRIDE_FIELDS_V
12.2.2
-
VIEW: APPS.PA_OVERRIDE_FIELDS_V
12.1.1
-
SYNONYM: APPS.PA_PROJECT_COPY_OVERRIDES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECT_COPY_OVERRIDES, status:VALID,
-
TABLE: PA.PA_PROJECT_COPY_OVERRIDES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_COPY_OVERRIDES, object_name:PA_PROJECT_COPY_OVERRIDES, status:VALID,
-
View: PA_OVERRIDE_FIELDS_SS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OVERRIDE_FIELDS_SS_V, object_name:PA_OVERRIDE_FIELDS_SS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_OVERRIDE_FIELDS_SS_V ,
-
PACKAGE BODY: APPS.PA_PROJ_TEMPLATE_SETUP_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJ_TEMPLATE_SETUP_PUB, status:VALID,
-
APPS.PA_PROJ_TEMPLATE_SETUP_PUB SQL Statements
12.1.1
-
View: PA_OVERRIDE_FIELDS_SS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OVERRIDE_FIELDS_SS_V, object_name:PA_OVERRIDE_FIELDS_SS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_OVERRIDE_FIELDS_SS_V ,
-
View: PA_XC_OVERRIDE_FIELDS_V
12.2.2
product: PA - Projects , description: This view displays all the Quick Entry options for a template , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.PA_PROJ_TEMPLATE_SETUP_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJ_TEMPLATE_SETUP_PUB, status:VALID,
-
View: PA_OVERRIDE_FIELDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OVERRIDE_FIELDS_V, object_name:PA_OVERRIDE_FIELDS_V, status:VALID, product: PA - Projects , description: This view displays all the Quick Entry options for a template , implementation_dba_data: APPS.PA_OVERRIDE_FIELDS_V ,
-
View: PA_OVERRIDE_FIELDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OVERRIDE_FIELDS_V, object_name:PA_OVERRIDE_FIELDS_V, status:VALID, product: PA - Projects , description: This view displays all the Quick Entry options for a template , implementation_dba_data: APPS.PA_OVERRIDE_FIELDS_V ,
-
PACKAGE BODY: APPS.PA_USER_ATTR_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_USER_ATTR_PUB, status:VALID,
-
View: PA_XC_OVERRIDE_FIELDS_V
12.1.1
product: PA - Projects , description: This view displays all the Quick Entry options for a template , implementation_dba_data: Not implemented in this database ,
-
APPS.PA_PROJ_TEMPLATE_SETUP_PUB SQL Statements
12.2.2
-
VIEW: APPS.PA_OVERRIDE_FIELDS_SS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OVERRIDE_FIELDS_SS_V, object_name:PA_OVERRIDE_FIELDS_SS_V, status:VALID,
-
APPS.PA_PROJECT_CORE1 SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_PROJ_TEMPLATE_SETUP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJ_TEMPLATE_SETUP_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_USER_ATTR_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_USER_ATTR_PUB, status:VALID,
-
PACKAGE BODY: APPS.PA_PROJ_TEMPLATE_SETUP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJ_TEMPLATE_SETUP_PVT, status:VALID,
-
APPS.PA_PROJECT_CORE1 SQL Statements
12.1.1
-
VIEW: APPS.PA_OVERRIDE_FIELDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OVERRIDE_FIELDS_V, object_name:PA_OVERRIDE_FIELDS_V, status:VALID,
-
PACKAGE BODY: APPS.GMS_MULTI_FUNDING
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_MULTI_FUNDING, status:VALID,
-
VIEW: APPS.PA_OVERRIDE_FIELDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OVERRIDE_FIELDS_V, object_name:PA_OVERRIDE_FIELDS_V, status:VALID,
-
VIEW: APPS.PA_OVERRIDE_FIELDS_SS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OVERRIDE_FIELDS_SS_V, object_name:PA_OVERRIDE_FIELDS_SS_V, status:VALID,
-
PACKAGE BODY: APPS.GMS_MULTI_FUNDING
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_MULTI_FUNDING, status:VALID,
-
APPS.PA_PROJ_TEMPLATE_SETUP_PVT SQL Statements
12.1.1
-
APPS.PA_PROJ_TEMPLATE_SETUP_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMS_AWARD_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_AWARD_PVT, status:VALID,
-
PACKAGE BODY: APPS.GMS_AWARD_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_AWARD_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_PROJECT_CORE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJECT_CORE, status:VALID,
-
PACKAGE BODY: APPS.PA_PROJECT_CORE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJECT_CORE, status:VALID,
-
PACKAGE BODY: APPS.PA_PROJECT_CORE1
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJECT_CORE1, status:VALID,
-
PACKAGE BODY: APPS.PA_PROJECT_CORE1
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROJECT_CORE1, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.PA_USER_ATTR_PUB SQL Statements
12.1.1
-
Table: PA_PROJECTS_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECTS_ALL, object_name:PA_PROJECTS_ALL, status:VALID, product: PA - Projects , description: PA_PROJECTS_ALL stores the highest units of work defined in Oracle Projects. , implementation_dba_data: PA.PA_PROJECTS_ALL ,
-
12.2.2 DBA Data
12.2.2
-
Table: PA_PROJECTS_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECTS_ALL, object_name:PA_PROJECTS_ALL, status:VALID, product: PA - Projects , description: PA_PROJECTS_ALL stores the highest units of work defined in Oracle Projects. , implementation_dba_data: PA.PA_PROJECTS_ALL ,