Search Results pa_project_asset_lines_all
Overview
The PA_PROJECT_ASSET_LINES_ALL table is a core data structure within Oracle E-Business Suite (EBS) Projects (PA) module, specifically for versions 12.1.1 and 12.2.2. It serves as the primary repository for summarized Capital Work in Progress (CIP) costs associated with project assets. Its fundamental role is to act as the central transactional link between the Projects module and the Fixed Assets (FA) module. When project costs are capitalized, summarized entries are created in this table, which are then used as the source for generating asset additions or adjustments in Fixed Assets. The table's multi-org structure, indicated by the "_ALL" suffix, allows it to store data for all operating units within a single installation.
Key Information Stored
The table's primary key is PROJECT_ASSET_LINE_ID, which uniquely identifies each summarized CIP cost line. The most critical columns define the relationships and financial context of the asset line. These include PROJECT_ID and TASK_ID, linking the cost to a specific project task, and PROJECT_ASSET_ID, which references the master asset definition in PA_PROJECT_ASSETS_ALL. The ASSET_CATEGORY_ID links to the FA_CATEGORIES_B table, defining the future fixed asset's category. Financial amounts, such as the capitalized cost, are stored in summarized form. Other key columns manage transactional integrity and process flow, such as CAPITAL_EVENT_ID (linking to the capital event that triggered the line creation) and REV_PROJ_ASSET_LINE_ID (supporting reversals of previous entries).
Common Use Cases and Queries
The primary use case is tracking and reporting on project costs destined for capitalization. Common queries involve joining to project and asset master tables to analyze CIP balances or to troubleshoot the flow of costs into Fixed Assets. For instance, to identify all capitalized costs for a specific project that have not yet been transferred to Fixed Assets, one might query lines where the associated mass addition or asset invoice ID is null. Another critical scenario is reconciliation between project expenditures and asset additions. A sample query pattern is:
- SELECT p.segment1 project_number, t.task_number, a.asset_number, pal.cost
- FROM pa_project_asset_lines_all pal
- JOIN pa_projects_all p ON pal.project_id = p.project_id
- JOIN pa_tasks t ON pal.task_id = t.task_id
- LEFT JOIN pa_project_assets_all pa ON pal.project_asset_id = pa.project_asset_id
- LEFT JOIN fa_additions_b a ON pa.asset_id = a.asset_id
- WHERE p.segment1 = 'P12345';
Related Objects
As indicated by its extensive foreign key relationships, PA_PROJECT_ASSET_LINES_ALL is a central hub. Key dependencies include:
- Parent Tables: PA_PROJECTS_ALL, PA_TASKS, PA_PROJECT_ASSETS_ALL, FA_CATEGORIES_B, PA_CAPITAL_EVENTS.
- Child Tables: PA_PROJECT_ASSET_LINE_DETAILS (holds detailed cost distributions), FA_MASS_ADDITIONS (receives generated records for asset import), FA_ASSET_INVOICES, and their multi-currency counterparts (FA_MC_ASSET_INVOICES, PA_MC_PRJ_AST_LINES_ALL).
- Process Flow: The table is directly referenced by the capital asset line generation and transfer processes. The foreign key to FA_TRANSACTION_HEADERS.RET_ADJUSTMENT_TXN_ID links it to specific asset retirement adjustments in Fixed Assets.
-
Table: PA_PROJECT_ASSET_LINES_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSET_LINES_ALL, object_name:PA_PROJECT_ASSET_LINES_ALL, status:VALID, product: PA - Projects , description: Summarized project CIP costs , implementation_dba_data: PA.PA_PROJECT_ASSET_LINES_ALL ,
-
Table: PA_PROJECT_ASSET_LINES_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSET_LINES_ALL, object_name:PA_PROJECT_ASSET_LINES_ALL, status:VALID, product: PA - Projects , description: Summarized project CIP costs , implementation_dba_data: PA.PA_PROJECT_ASSET_LINES_ALL ,
-
View: PA_CP_GENERATE_ASSET_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CP_GENERATE_ASSET_BASE_V, object_name:PA_CP_GENERATE_ASSET_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_CP_GENERATE_ASSET_BASE_V ,
-
View: PA_CP_GENERATE_ASSET_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CP_GENERATE_ASSET_BASE_V, object_name:PA_CP_GENERATE_ASSET_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_CP_GENERATE_ASSET_BASE_V ,
-
Table: PA_MC_PRJ_AST_LINES_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MC_PRJ_AST_LINES_ALL, object_name:PA_MC_PRJ_AST_LINES_ALL, status:VALID, product: PA - Projects , description: Summarized project CIP cost lines in each reporting currency , implementation_dba_data: PA.PA_MC_PRJ_AST_LINES_ALL ,
-
Table: PA_MC_PRJ_AST_LINES_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MC_PRJ_AST_LINES_ALL, object_name:PA_MC_PRJ_AST_LINES_ALL, status:VALID, product: PA - Projects , description: Summarized project CIP cost lines in each reporting currency , implementation_dba_data: PA.PA_MC_PRJ_AST_LINES_ALL ,
-
View: PABV_ASSET_LINE_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_ASSET_LINE_DETAILS, object_name:PABV_ASSET_LINE_DETAILS, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_ASSET_LINE_DETAILS ,
-
View: PA_CIP_COST_CLEARING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CIP_COST_CLEARING_V, object_name:PA_CIP_COST_CLEARING_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CIP_COST_CLEARING_V ,
-
Table: PA_PROJECT_ASSETS_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSETS_ALL, object_name:PA_PROJECT_ASSETS_ALL, status:VALID, product: PA - Projects , description: Assets defined for capital projects , implementation_dba_data: PA.PA_PROJECT_ASSETS_ALL ,
-
Table: PA_PROJECT_ASSETS_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSETS_ALL, object_name:PA_PROJECT_ASSETS_ALL, status:VALID, product: PA - Projects , description: Assets defined for capital projects , implementation_dba_data: PA.PA_PROJECT_ASSETS_ALL ,
-
View: PA_CIP_COST_CLEARING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CIP_COST_CLEARING_V, object_name:PA_CIP_COST_CLEARING_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CIP_COST_CLEARING_V ,
-
View: PA_PROJECT_ASSET_DRILLDOWN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ASSET_DRILLDOWN_V, object_name:PA_PROJECT_ASSET_DRILLDOWN_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_PROJECT_ASSET_DRILLDOWN_V ,
-
Table: PA_PROJECT_ASSET_LINE_DETAILS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSET_LINE_DETAILS, object_name:PA_PROJECT_ASSET_LINE_DETAILS, status:VALID, product: PA - Projects , description: Information necessary to drill down from an asset line to the cost distribution line , implementation_dba_data: PA.PA_PROJECT_ASSET_LINE_DETAILS ,
-
View: PABV_ASSET_LINE_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_ASSET_LINE_DETAILS, object_name:PABV_ASSET_LINE_DETAILS, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_ASSET_LINE_DETAILS ,
-
View: PA_PROJECT_ASSET_DRILLDOWN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ASSET_DRILLDOWN_V, object_name:PA_PROJECT_ASSET_DRILLDOWN_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_PROJECT_ASSET_DRILLDOWN_V ,
-
Table: PA_PROJECT_ASSET_LINE_DETAILS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSET_LINE_DETAILS, object_name:PA_PROJECT_ASSET_LINE_DETAILS, status:VALID, product: PA - Projects , description: Information necessary to drill down from an asset line to the cost distribution line , implementation_dba_data: PA.PA_PROJECT_ASSET_LINE_DETAILS ,
-
View: PABV_ASSET_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_ASSET_LINES, object_name:PABV_ASSET_LINES, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_ASSET_LINES ,
-
Table: PA_CAPITAL_EVENTS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CAPITAL_EVENTS, object_name:PA_CAPITAL_EVENTS, status:VALID, product: PA - Projects , description: Stores information about events used to group costs and assets for capitalization and events used to generate retirement cost adjustments. Based on the Event Processing Method defined at the project level, capital events are system generat , implementation_dba_data: PA.PA_CAPITAL_EVENTS ,
-
Table: PA_CAPITAL_EVENTS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CAPITAL_EVENTS, object_name:PA_CAPITAL_EVENTS, status:VALID, product: PA - Projects , description: Stores information about events used to group costs and assets for capitalization and events used to generate retirement cost adjustments. Based on the Event Processing Method defined at the project level, capital events are system generat , implementation_dba_data: PA.PA_CAPITAL_EVENTS ,
-
View: PAFV_ASSET_LINE_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_ASSET_LINE_DETAILS, object_name:PAFV_ASSET_LINE_DETAILS, status:VALID, product: PA - Projects , description: Business view to show details about asset lines to be transferred to Oracle Assets. , implementation_dba_data: APPS.PAFV_ASSET_LINE_DETAILS ,
-
View: PABV_ASSET_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_ASSET_LINES, object_name:PABV_ASSET_LINES, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_ASSET_LINES ,
-
View: PAFV_ASSET_LINE_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_ASSET_LINE_DETAILS, object_name:PAFV_ASSET_LINE_DETAILS, status:VALID, product: PA - Projects , description: Business view to show details about asset lines to be transferred to Oracle Assets. , implementation_dba_data: APPS.PAFV_ASSET_LINE_DETAILS ,
-
View: PA_PROJ_ASSET_LINES_MRC_V
12.1.1
product: PA - Projects , description: Single-org, single currency MRC view , implementation_dba_data: Not implemented in this database ,
-
View: PAFV_ASSET_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_ASSET_LINES, object_name:PAFV_ASSET_LINES, status:VALID, product: PA - Projects , description: Business view to show information about asset lines to be transferred to Oracle Assets. , implementation_dba_data: APPS.PAFV_ASSET_LINES ,
-
View: PAFV_ASSET_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_ASSET_LINES, object_name:PAFV_ASSET_LINES, status:VALID, product: PA - Projects , description: Business view to show information about asset lines to be transferred to Oracle Assets. , implementation_dba_data: APPS.PAFV_ASSET_LINES ,
-
View: PA_PROJ_ASSET_LINES_ALL_MRC_V
12.2.2
product: PA - Projects , description: Multi-org, single currency MRC view , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJ_ASSET_LINES_ALL_MRC_V
12.1.1
product: PA - Projects , description: Multi-org, single currency MRC view , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_ASSET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ASSET_LINES_V, object_name:PA_PROJECT_ASSET_LINES_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_PROJECT_ASSET_LINES_V ,
-
View: PA_PROJECT_ASSET_LINES
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_ASSET_LINES
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJ_ASSET_LINES_MRC_V
12.2.2
product: PA - Projects , description: Single-org, single currency MRC view , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_ASSET_LINES_MRC_V
12.1.1
product: PA - Projects , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_ASSET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ASSET_LINES_V, object_name:PA_PROJECT_ASSET_LINES_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_PROJECT_ASSET_LINES_V ,
-
View: PA_PROJECT_ASSET_LINES_MRC_V
12.2.2
product: PA - Projects , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
Table: PA_TASKS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TASKS, object_name:PA_TASKS, status:VALID, product: PA - Projects , description: User-defined subdivisions of project work , implementation_dba_data: PA.PA_TASKS ,
-
Table: PA_TASKS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TASKS, object_name:PA_TASKS, status:VALID, product: PA - Projects , description: User-defined subdivisions of project work , implementation_dba_data: PA.PA_TASKS ,
-
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 ,
-
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 ,