Search Results mapped_fin_task_id
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
PA_MAP_WP_TO_FIN_TASKS_TMP is a temporary staging table in the Oracle Projects (PA) schema. It supports the mapping between Workplan (WP) task elements and their corresponding financial task structures during integration and synchronization routines within Oracle E-Business Suite 12.1.1 and 12.2.2. The table operates as a transient workspace where the Projects application materializes the relationship between project workplan element versions and financial task versions before committing them to permanent structures such as PA_PROJ_ELEMENT_VERSIONS and the corresponding financial task tables.
From a Data Vault modeling perspective, the object is heuristically classified as standalone. This classification reflects that the table has no inbound foreign keys from other tables and only one outbound reference, meaning it does not function as a hub, link, or satellite in a strict Data Vault sense. Instead, it behaves as a staging or interface table whose lifecycle is bounded by the concurrent program or process that populates and consumes it.
Key Information Stored
The table contains twelve documented columns. The most significant are:
- ELEMENT_VERSION_ID – Foreign key to PA_PROJ_ELEMENT_VERSIONS; identifies the source workplan element version being mapped.
- PROJ_ELEMENT_ID – The underlying project element identifier associated with the workplan task.
- OBJECT_TYPE – Indicates the kind of project element (for example, task or structure) involved in the mapping.
- TASK_NUMBER and TASK_NAME – The business-facing identifiers and descriptions of the workplan task.
- PROJECT_ID – The project to which the workplan task belongs, anchoring the mapping to a specific project.
- MAPPED_FIN_TASK_ID, MAPPED_FIN_TASK_NAME, and MAPPED_FIN_TASK_VERSION_ID – The financial task identifiers, names, and versions that the workplan task is mapped to.
- MAPPED_FIN_STR_VERSION_ID – The mapped financial structure version identifier.
- PARENT_ELEMENT_VERSION_ID and PARENT_STRUCTURE_VERSION_ID – Parent references used to reconstruct the workplan and financial hierarchy during mapping.
No surrogate primary key or unique index is documented in the ETRM metadata, which is consistent with the table's role as a temporary staging object rather than a persistent entity. Business-key candidates would typically be the combination of PROJECT_ID, TASK_NUMBER, and the mapped financial task identifiers, but these are not enforced by documented constraints.
Common Use Cases and Queries
This table is primarily consumed by Oracle Projects concurrent programs that synchronize workplan tasks with financial tasks, such as the processes that maintain consistency between project workplan structures and their financial counterparts. Typical use cases include:
- Diagnosing mapping failures during workplan-to-financial-task synchronization.
- Reconciling workplan tasks that lack a corresponding financial task mapping.
- Auditing the parent-child hierarchy used during a mapping run.
A representative query to identify unmapped workplan tasks is:
SELECT t.project_id, t.task_number, t.task_name FROM pa_map_wp_to_fin_tasks_tmp t WHERE t.mapped_fin_task_id IS NULL;
A query to join back to the source element versions is:
SELECT t.task_number, t.task_name, v.element_version_id FROM pa_map_wp_to_fin_tasks_tmp t, pa_proj_element_versions v WHERE t.element_version_id = v.element_version_id;
Because the table is temporary, its contents are only meaningful during the execution window of the mapping process. Reports should therefore be run in conjunction with, or immediately after, the relevant concurrent request.
Related Objects
The most significant related objects are:
- PA_PROJ_ELEMENT_VERSIONS – Referenced via ELEMENT_VERSION_ID; the authoritative source of project element version data.
- PA_PROJECTS_ALL – Provides project context via PROJECT_ID.
- PA_TASKS – Supplies financial task definitions that MAPPED_FIN_TASK_ID resolves against.
- PA_STRUCTURES – Relates to the financial structure versions referenced by MAPPED_FIN_STR_VERSION_ID.
- PA_PROJ_ELEMENTS – Underlies PROJ_ELEMENT_ID and parent element relationships.
These objects together form the context in which the temporary mapping data is validated and ultimately persisted.
-
Table: PA_MAP_WP_TO_FIN_TASKS_TMP
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MAP_WP_TO_FIN_TASKS_TMP, object_name:PA_MAP_WP_TO_FIN_TASKS_TMP, status:VALID, product: PA - Projects , implementation_dba_data: PA.PA_MAP_WP_TO_FIN_TASKS_TMP ,
-
Table: PA_FP_CALC_AMT_TMP1_1
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_FP_CALC_AMT_TMP1_1, object_name:PA_FP_CALC_AMT_TMP1_1, status:VALID, product: PA - Projects , implementation_dba_data: PA.PA_FP_CALC_AMT_TMP1_1 ,
-
VIEW: APPS.PA_MAP_WP_TO_FIN_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_MAP_WP_TO_FIN_TASKS_V, object_name:PA_MAP_WP_TO_FIN_TASKS_V, status:VALID,
-
TABLE: PA.PA_MAP_WP_TO_FIN_TASKS_TMP
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MAP_WP_TO_FIN_TASKS_TMP, object_name:PA_MAP_WP_TO_FIN_TASKS_TMP, status:VALID,
-
VIEW: APPS.PA_MAP_WP_TO_FIN_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_MAP_WP_TO_FIN_TASKS_V, object_name:PA_MAP_WP_TO_FIN_TASKS_V, status:VALID,
-
TABLE: PA.PA_FP_CALC_AMT_TMP1
12.1.1
owner:PA, object_type:TABLE, object_name:PA_FP_CALC_AMT_TMP1, status:VALID,
-
TABLE: PA.PA_FP_CALC_AMT_TMP1_1
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_FP_CALC_AMT_TMP1_1, object_name:PA_FP_CALC_AMT_TMP1_1, status:VALID,
-
View: PA_MAP_WP_TO_FIN_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_MAP_WP_TO_FIN_TASKS_V, object_name:PA_MAP_WP_TO_FIN_TASKS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_MAP_WP_TO_FIN_TASKS_V ,
-
APPS.PA_FP_GEN_FCST_RMAP_PKG SQL Statements
12.1.1
-
View: PA_MAP_WP_TO_FIN_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_MAP_WP_TO_FIN_TASKS_V, object_name:PA_MAP_WP_TO_FIN_TASKS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_MAP_WP_TO_FIN_TASKS_V ,
-
APPS.PA_FP_GEN_FCST_RMAP_PKG SQL Statements
12.2.2
-
APPS.PA_FP_GEN_BILLING_AMOUNTS SQL Statements
12.1.1
-
APPS.PA_FP_GEN_BILLING_AMOUNTS SQL Statements
12.2.2
-
APPS.PA_FP_GEN_BUDGET_AMT_PUB SQL Statements
12.2.2
-
APPS.PA_FP_COMMITMENT_AMOUNTS SQL Statements
12.1.1
-
APPS.PA_FP_COMMITMENT_AMOUNTS SQL Statements
12.2.2
-
APPS.PA_FP_GEN_BUDGET_AMT_PUB SQL Statements
12.1.1
-
APPS.PA_FP_GEN_FCST_AMT_PVT SQL Statements
12.1.1
-
APPS.PA_FP_GEN_FCST_AMT_PVT SQL Statements
12.2.2
-
APPS.PA_FP_GEN_FCST_AMT_PUB SQL Statements
12.1.1
-
APPS.PA_FP_GEN_FCST_AMT_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_FP_GEN_FCST_RMAP_PKG
12.2.2
-
PACKAGE BODY: APPS.PA_FP_GEN_FCST_RMAP_PKG
12.1.1
-
APPS.PA_FP_GEN_FCST_AMT_PUB1 SQL Statements
12.1.1
-
APPS.PA_FP_GEN_FCST_AMT_PUB1 SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_FP_GEN_BILLING_AMOUNTS
12.2.2
-
PACKAGE BODY: APPS.PA_FP_GEN_BILLING_AMOUNTS
12.1.1
-
PACKAGE BODY: APPS.PA_FP_GEN_FCST_AMT_PVT
12.1.1
-
PACKAGE BODY: APPS.PA_FP_GEN_FCST_AMT_PVT
12.2.2
-
PACKAGE BODY: APPS.PA_FP_GEN_BUDGET_AMT_PUB
12.2.2
-
PACKAGE BODY: APPS.PA_FP_COMMITMENT_AMOUNTS
12.2.2
-
APPS.PA_FP_COPY_ACTUALS_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_FP_COMMITMENT_AMOUNTS
12.1.1
-
APPS.PA_FP_GEN_BUDGET_AMT_PUB dependencies on PA_MAP_WP_TO_FIN_TASKS_V
12.1.1
-
APPS.PA_FP_GEN_BILLING_AMOUNTS dependencies on PA_MAP_WP_TO_FIN_TASKS_V
12.2.2
-
APPS.PA_FP_COPY_ACTUALS_PUB dependencies on PA_FP_CALC_AMT_TMP1
12.2.2
-
APPS.PA_FP_GEN_BILLING_AMOUNTS dependencies on PA_MAP_WP_TO_FIN_TASKS_V
12.1.1
-
PACKAGE BODY: APPS.PA_FP_GEN_BUDGET_AMT_PUB
12.1.1
-
APPS.PA_FP_GEN_BUDGET_AMT_PUB dependencies on PA_MAP_WP_TO_FIN_TASKS_V
12.2.2
-
APPS.PA_FP_GEN_BUDGET_AMT_PUB dependencies on PA_TASKS
12.1.1
-
APPS.PA_FP_GEN_FCST_AMT_PUB1 dependencies on PA_MAP_WP_TO_FIN_TASKS_V
12.1.1
-
APPS.PA_FP_COPY_ACTUALS_PUB dependencies on PA_TASKS
12.2.2
-
APPS.PA_FP_GEN_BUDGET_AMT_PUB dependencies on PA_TASKS
12.2.2
-
APPS.PA_FP_GEN_BUDGET_AMT_PUB dependencies on PA_RES_LIST_MAP_TMP4
12.1.1
-
APPS.PA_FP_GEN_FCST_AMT_PUB1 dependencies on PA_MAP_WP_TO_FIN_TASKS_V
12.2.2
-
APPS.PA_FP_GEN_BILLING_AMOUNTS dependencies on PA_RESOURCE_ASSIGNMENTS
12.2.2
-
APPS.PA_FP_GEN_FCST_AMT_PUB dependencies on PA_FP_PLANNING_RES_TMP1
12.1.1
-
APPS.PA_FP_GEN_BILLING_AMOUNTS dependencies on PA_RESOURCE_ASSIGNMENTS
12.1.1
-
APPS.PA_FP_GEN_FCST_RMAP_PKG dependencies on PA_FP_CALC_AMT_TMP1
12.1.1
-
APPS.PA_FP_GEN_FCST_AMT_PUB dependencies on PA_FP_PLANNING_RES_TMP1
12.2.2