Search Results capitalized_date
Overview
PABV_ASSETS is an APPS-owned database view in the Oracle E-Business Suite Projects (PA) module. It is documented in ETRM as VALID with the description "- Retrofitted," indicating that the object was carried forward from an earlier release into the 12.1.1 / 12.2.2 code line without functional redesign. The view presents project asset information — capitalized, depreciating, or reversed assets created from capital projects — in a flattened, reporting-friendly shape.
The naming convention follows the PA "BV" view family, where the underlying table columns are augmented with Oracle Application Object Library (AOL) descriptive flexfield and lookup descriptors. These descriptors are exposed as string literals in the SELECT list: for example, '_LA:AMORTIZE_FLAG:FND_LOOKUPS:YES_NO:MEANING' and '_LA:DEPRECIATE_FLAG:FND_LOOKUPS:YES_NO:MEANING'. They instruct the AOL lookup/translate layer to render YES/NO meaning values rather than raw codes, and '_DF:PA:PA_PROJECT_ASSETS:PPA' references the PA_PROJECT_ASSETS descriptive flexfield. The view also carries a row-level security predicate, WHERE '_SEC:ORG_ID' IS NOT NULL, enforcing operating unit access through the standard security grouping. The view is defined WITH READ ONLY, so it is strictly a query surface.
Underlying Base Objects
ETRM documents a single referenced base object: PA_PROJECT_ASSETS_ALL, accessed through a synonym and aliased as PPA in the view text. This is the multi-organization (partitioned by ORG_ID) project asset table, and PABV_ASSETS is essentially a projected, lightly decorated view over it. The view exposes all standard WHO audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY) and ORG_ID directly from that table. Because PA_PROJECT_ASSETS_ALL is an _ALL table, the ORG_ID predicate is the mechanism by which a session sees only the assets belonging to its authorized operating units.
Key Columns
- PROJECT_ASSET_ID — Primary key of the project asset row; the join key to the base table and to downstream costing/depreciation records.
- ASSET_NUMBER / ASSET_NAME / ASSET_DESCRIPTION — Human-readable identification of the asset.
- ASSET_UNITS — Number of units represented by the asset record, relevant to unit-based depreciation.
- PROJECT_ID / ASSET_CATEGORY_ID — Foreign keys to the project and to the Oracle Assets asset category (which determines depreciation method and life).
- CAPITALIZED_COST / CAPITALIZED_DATE / CAPITALIZED_FLAG — Cost accumulated for the asset, the date it was capitalized, and the YES/NO indicator of capitalization status.
- DATE_PLACED_IN_SERVICE — The date the asset was placed in service; this drives depreciation start in Oracle Assets.
- ESTIMATED_IN_SERVICE_DATE — The expected in-service date before actual placement.
- GROUPED_CIP_COST — Construction-in-process cost grouped for transfer to Oracle Assets.
- AMORTIZE_FLAG / DEPRECIATE_FLAG / REVERSAL_FLAG / REVERSAL_DATE — YES/NO control flags and the reversal date, exposing lookup meanings via the embedded AOL descriptors.
- ASSIGNED_TO_PERSON_ID / LOCATION_ID / BOOK_TYPE_CODE — Assignee, location, and the Oracle Assets book to which the asset is transferred.
- ORG_ID — Operating unit, subject to the view's security predicate.
Common Use Cases and Queries
The view is typically used for capital project reporting and reconciliation between Projects and Oracle Assets — for example, listing assets awaiting transfer to a depreciation book, or validating capitalization timing. A representative query retrieving assets with their in-service dates is:
SELECT asset_number,
asset_name,
project_id,
date_placed_in_service,
capitalized_cost,
book_type_code
FROM apps.pabv_assets
WHERE date_placed_in_service IS NOT NULL
AND book_type_code = 'CORP'
ORDER BY date_placed_in_service;
Because ORG_ID security is embedded, the query automatically returns only assets for the session's authorized operating units, eliminating the need for an explicit ORG_ID filter. The view is equally suited to feed downstream extracts or interface staging tables, since it flattens the _ALL table's multi-org structure and resolves lookup meanings without additional joins to FND_LOOKUPS or PA descriptive flexfield views. Owing to its READ ONLY definition and retrofitted status, it should be used for querying and reporting only, never for DML.
-
View: PABV_ASSETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_ASSETS, object_name:PABV_ASSETS, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_ASSETS ,
-
View: PABV_ASSETS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_ASSETS, object_name:PABV_ASSETS, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_ASSETS ,
-
View: PA_PROJECT_ASSETS
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_ASSETS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ASSETS_AMG_V, object_name:PA_PROJECT_ASSETS_AMG_V, status:VALID, product: PA - Projects , description: Single-Org , implementation_dba_data: APPS.PA_PROJECT_ASSETS_AMG_V ,
-
View: PA_PROJECT_ASSETS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ASSETS_AMG_V, object_name:PA_PROJECT_ASSETS_AMG_V, status:VALID, product: PA - Projects , description: Single-Org , implementation_dba_data: APPS.PA_PROJECT_ASSETS_AMG_V ,
-
View: PA_PROJECT_ASSETS
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PAFV_ASSETS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_ASSETS, object_name:PAFV_ASSETS, status:VALID, product: PA - Projects , description: Business view to show information about the classification of expenditure types. , implementation_dba_data: APPS.PAFV_ASSETS ,
-
View: PAFV_ASSETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_ASSETS, object_name:PAFV_ASSETS, status:VALID, product: PA - Projects , description: Business view to show information about the classification of expenditure types. , implementation_dba_data: APPS.PAFV_ASSETS ,
-
View: PA_PROJECT_ASSETS_MRC_V
12.1.1
product: PA - Projects , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_ASSETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ASSETS_V, object_name:PA_PROJECT_ASSETS_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_PROJECT_ASSETS_V ,
-
View: PA_PROJECT_ASSETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_ASSETS_V, object_name:PA_PROJECT_ASSETS_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_PROJECT_ASSETS_V ,
-
View: PA_PROJECT_ASSETS_MRC_V
12.2.2
product: PA - Projects , description: 10SC Only , implementation_dba_data: Not implemented in this database ,