Search Results reverse_flag
Overview
PA_PROJECT_ASSETS_AMG_V is a single-organization (Single-Org) view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the PA (Projects) product family. It exposes project asset records maintained in Oracle Projects, including the capitalized cost, depreciation, amortization, and reversal attributes required to reconcile project costs to Oracle Assets. The "_AMG_V" suffix identifies it as an AutoMedia/AMG-style reporting view used for multi-organization-aware reporting scenarios where the caller must supply or be restricted to a specific ORG_ID.
The view surfaces the project asset lifecycle end to end: estimated in-service dates and costs, capitalization flags and dates, capitalized cost, grouped CIP cost, reversal indicators (REVERSE_FLAG, REVERSAL_DATE), and the FA_ASSET_ID link to the corresponding Oracle Assets asset. Because it is a pass-through projection of PA_PROJECT_ASSETS with no filtering predicates, it behaves as a secured, reporting-friendly layer over the base table for extracts, interfaces, and reconciliation queries.
Underlying Base Objects
Per the documented ETRM metadata (12.2.2), the view is defined over a single referenced base object: PA_PROJECT_ASSETS (accessible through its SYNONYM in the APPS schema). The view text selects a fixed column list directly from PA_PROJECT_ASSETS with no joins, unions, or WHERE clause—column names are identical to the base table's columns. Consequently, all behavioral characteristics (organization partitioning via ORG_ID, transactional updates, descriptive flexfield columns ATTRIBUTE_CATEGORY and ATTRIBUTE1–15, and the WHO columns) are inherited unchanged. Any insert, update, or delete must target PA_PROJECT_ASSETS itself; the view is read-only in practice.
Key Columns
- PROJECT_ASSET_ID / PROJECT_ID — primary key of the asset line and its owning project; the join keys to PA_PROJECTS and related PA entities.
- ASSET_NUMBER, ASSET_NAME, ASSET_DESCRIPTION — asset identification used when the asset is created or referenced in Oracle Assets.
- ASSET_CATEGORY_ID, BOOK_TYPE_CODE, ASSET_KEY_CCID — Oracle Assets category, depreciation book, and the asset clearing/cost account combination used during capitalization.
- CAPITALIZED_FLAG, CAPITALIZED_DATE, CAPITALIZED_COST, GROUPED_CIP_COST — capitalization status, the date capitalization occurred, and the capitalized versus grouped CIP cost amounts.
- REVERSE_FLAG, REVERSAL_DATE — indicated whether the capitalization was reversed and when. This is the column most often searched for in this view.
- DEPRECIATE_FLAG, AMORTIZE_FLAG, COST_ADJUSTMENT_FLAG, DEPRECIATION_EXPENSE_CCID — flags controlling downstream depreciation and amortization behavior and the expense account used.
- FA_ASSET_ID, RET_TARGET_ASSET_ID, NEW_MASTER_FLAG, CAPITAL_EVENT_ID — linkage to the Oracle Assets asset identifier, retirement target, master-asset indicator, and the capitalization event that generated the row.
- FA_PERIOD_NAME, PROJECT_ASSET_TYPE, PM_PRODUCT_CODE, PM_ASSET_REFERENCE — the Assets period, asset type classification, and the Project Manufacturing product/reference identifiers.
- ORG_ID — the operating unit (organization) that owns the row; the governing key for the Single-Org view behavior.
- WHO columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN, plus REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE identifying the concurrent program that created or modified the row.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — descriptive flexfield storage segments.
Common Use Cases and Queries
Typical uses include reconciling capitalized project costs to Oracle Assets, reporting CIP and grouping status, and auditing capitalization reversals. The following query lists assets whose capitalization was reversed for a given operating unit and accounting period:
SELECT pa.project_asset_id, pa.project_id, pa.asset_number, pa.asset_name, pa.capitalized_flag, pa.reverse_flag, pa.reversal_date, pa.fa_asset_id
FROM apps.pa_project_assets_amg_v pa
WHERE pa.org_id = :p_org_id
AND pa.reverse_flag = 'Y'
AND pa.fa_period_name = :p_period_name
ORDER BY pa.project_id, pa.asset_number;
A second common pattern extracts capitalized assets ready for transfer or analysis, including category and cost data:
SELECT a.project_id, a.asset_number, a.asset_category_id, a.book_type_code, a.capitalized_cost, a.capitalized_date, a.fa_asset_id
FROM apps.pa_project_assets_amg_v a
WHERE a.org_id = :p_org_id
AND a.capitalized_flag = 'Y'
AND a.reverse_flag = 'N';
Because the view is unfiltered, always constrain queries by ORG_ID and, where possible, by PROJECT_ID or FA_PERIOD_NAME to preserve performance on PA_PROJECT_ASSETS.
-
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.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_ASSETS
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_ASSETS_MRC_V
12.2.2
product: PA - Projects , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
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 ,