Search Results asset
Overview
The PA_STANDARD_UNIT_COSTS table is a core data structure within Oracle E-Business Suite Projects (PA) module. It functions as a repository for pre-defined cost rates used specifically for capitalizing project expenditures as fixed assets. The table's primary role is to support the "Standard Unit Cost" asset cost allocation method. When this method is configured, the system utilizes the standard costs stored in this table during the asset line generation process to automatically allocate indirect and common costs to project assets. This enables systematic and rule-based capitalization, ensuring asset costs are calculated consistently based on asset category and accounting book.
Key Information Stored
The table stores the standard cost per unit, keyed by two critical dimensions from the Fixed Assets module: the Asset Book and the Asset Category. While the full column list is not detailed in the provided metadata, the foreign key relationships explicitly identify the core columns. The BOOK_TYPE_CODE column links to the FA_BOOK_CONTROLS table, identifying the depreciation or corporate book for which the standard cost is valid. The ASSET_CATEGORY_ID column links to the FA_CATEGORIES_B table, defining the class of asset (e.g., Computers, Machinery, Furniture). The central piece of data is the STANDARD_COST column (implied by the table's description), which holds the monetary value per unit for that specific category and book combination. Additional columns likely include effective date ranges, last update information, and a unique identifier.
Common Use Cases and Queries
The primary use case is the automated generation of asset lines for project costs. When a project's asset cost allocation method is set to "Standard Unit Cost," the system references this table to assign a cost to capitalized items. Common operational queries involve maintenance and reporting. Administrators may run queries to review or update standard costs for an upcoming fiscal period. Financial analysts often query the table to audit capitalization rates or reconcile project costs with fixed asset valuations. A typical reporting query would join this table with asset category and book control descriptions.
SELECT fc.SEGMENT1 asset_category,
fbc.BOOK_TYPE_CODE,
psc.standard_cost,
psc.last_update_date
FROM pa_standard_unit_costs psc,
fa_categories_b fc,
fa_book_controls fbc
WHERE psc.asset_category_id = fc.category_id
AND psc.book_type_code = fbc.book_type_code
AND fbc.book_class = 'CORPORATE';
Related Objects
- FA_BOOK_CONTROLS: A Fixed Assets table that defines accounting books. It is referenced via a foreign key on the BOOK_TYPE_CODE column to ensure the standard cost is associated with a valid asset book.
- FA_CATEGORIES_B: The base table for Fixed Assets categories. It is referenced via a foreign key on the ASSET_CATEGORY_ID column, tying the standard cost to a specific type of capital asset.
- Project Assets & Capitalization Processes: The table is integral to the asset line generation engine within Projects. Key APIs and programs that perform asset cost allocation will read from this table when the standard unit cost method is applied.
-
Lookup Type: UNASSIGNED ASSET
12.2.2
product: PA - Projects , meaning: Unassigned Asset , description: Unassigned Asset ,
-
Lookup Type: UNASSIGNED ASSET
12.1.1
product: PA - Projects , meaning: Unassigned Asset , description: Unassigned Asset ,
-
Lookup Type: CRL ASSET CATEGORY
12.1.1
product: PA - Projects , meaning: CRL Asset Category , description: Used by CRL to identify the asset categroy in Automati c asset generation ,
-
Lookup Type: CRL ASSET NAME
12.1.1
product: PA - Projects , meaning: CRL Asset Naming Method , description: Asset Naming Method used by CRL for Automatic asset ge neration- Asset name by project or Task or Grouping elem ents ,
-
Lookup Type: INTERFACE ASSET COST
12.2.2
product: PA - Projects , meaning: Interface Asset Cost , description: Interface Asset Cost ,
-
Lookup Type: CRL ASSET LOCATION
12.1.1
product: PA - Projects , meaning: CRL Asset Location , description: Used by CRL to map asset location with grouping elemen t in Automatic asset generation ,
-
Lookup Type: CRL ASSET DESCRIPTION
12.1.1
product: PA - Projects , meaning: CRL Asset Description , description: Asset description used by CRL for Automatic asset gene ration ,
-
Lookup Type: CRL ASSET CATEGORY
12.2.2
product: PA - Projects , meaning: CRL Asset Category , description: Used by CRL to identify the asset categroy in Automatic asset generation ,
-
Lookup Type: CRL ASSET DESCRIPTION
12.2.2
product: PA - Projects , meaning: CRL Asset Description , description: Asset description used by CRL for Automatic asset generation ,
-
Lookup Type: CRL ASSET NAME
12.2.2
product: PA - Projects , meaning: CRL Asset Naming Method , description: Asset Naming Method used by CRL for Automatic asset generation- Asset name by project or Task or Grouping elements ,
-
Lookup Type: CRL ASSET LOCATION
12.2.2
product: PA - Projects , meaning: CRL Asset Location , description: Used by CRL to map asset location with grouping element in Automatic asset generation ,
-
Lookup Type: INTERFACE ASSET COST
12.1.1
product: PA - Projects , meaning: Interface Asset Cost , description: Interface Asset Cost ,
-
Lookup Type: CRL AUTO ASSET REJECTION CODE
12.1.1
product: PA - Projects , meaning: CRL Auto Asset rejection code , description: Used by CRL to identify the rejection code by Automati c asset generation ,
-
Lookup Type: CRL AUTO ASSET REJECTION CODE
12.2.2
product: PA - Projects , meaning: CRL Auto Asset rejection code , description: Used by CRL to identify the rejection code by Automatic asset generation ,
-
Lookup Type: ASSET_ALLOCATION_EXCEPTIONS
12.2.2
product: PA - Projects , meaning: Asset Allocation Exceptions , description: Asset Allocation Exceptions ,
-
Lookup Type: ASSET_ALLOCATION_EXCEPTIONS
12.1.1
product: PA - Projects , meaning: Asset Allocation Exceptions , description: Asset Allocation Exceptions ,
-
Lookup Type: PA_CAPITAL_CLIENT_EXTN
12.2.2
product: PA - Projects , meaning: Pa Capital Client Extn , description: Capital Client Extension Asset Assignment ,
-
Lookup Type: PA_CAPITAL_CLIENT_EXTN
12.1.1
product: PA - Projects , meaning: Pa Capital Client Extn , description: Capital Client Extension Asset Assignment ,
-
Lookup Type: TRANSFER REJECTION REASON
12.1.1
product: PA - Projects , meaning: Transfer Rejection Reason , description: Transfer Rejection Reason ,
-
Lookup Type: TRANSFER REJECTION REASON
12.2.2
product: PA - Projects , meaning: Transfer Rejection Reason , description: Transfer Rejection Reason ,
-
Lookup Type: PROJECT_ASSET_TYPES
12.1.1
product: PA - Projects , meaning: Project Asset Types , description: Project Asset Types ,
-
Lookup Type: PROJECT_ASSET_TYPES
12.2.2
product: PA - Projects , meaning: Project Asset Types , description: Project Asset Types ,
-
Lookup Type: GEN_ASSET_REJECTION_REASON
12.1.1
product: PA - Projects , meaning: Gen Asset Rejection Reason , description: Gen_Asset_Rejection_Reason ,
-
Lookup Type: GEN_ASSET_REJECTION_REASON
12.2.2
product: PA - Projects , meaning: Gen Asset Rejection Reason , description: Gen_Asset_Rejection_Reason ,
-
Lookup Type: ASSET_ALLOCATION_METHOD
12.1.1
product: PA - Projects , meaning: Asset Allocation Method , description: Asset Allocation Method ,
-
Lookup Type: VENDOR_INVOICE_GROUPING_CODE
12.2.2
product: PA - Projects , meaning: Vendor Invoice Grouping Code , description: Vendor Invoice Grouping Codes ,
-
Lookup Type: ASSET_ALLOCATION_METHOD
12.2.2
product: PA - Projects , meaning: Asset Allocation Method , description: Asset Allocation Method ,
-
Table: PA_STANDARD_UNIT_COSTS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_STANDARD_UNIT_COSTS, object_name:PA_STANDARD_UNIT_COSTS, status:VALID, product: PA - Projects , description: Stores the standard cost per unit for Project Assets by Asset Category and Asset Book. When the Asset Cost Allocation Method is "Standard Unit Cost", the asset line generation process uses this information to allocate indirect and common c , implementation_dba_data: PA.PA_STANDARD_UNIT_COSTS ,
-
Table: PA_STANDARD_UNIT_COSTS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_STANDARD_UNIT_COSTS, object_name:PA_STANDARD_UNIT_COSTS, status:VALID, product: PA - Projects , description: Stores the standard cost per unit for Project Assets by Asset Category and Asset Book. When the Asset Cost Allocation Method is "Standard Unit Cost", the asset line generation process uses this information to allocate indirect and common c , implementation_dba_data: PA.PA_STANDARD_UNIT_COSTS ,
-
Lookup Type: VENDOR_INVOICE_GROUPING_CODE
12.1.1
product: PA - Projects , meaning: Vendor Invoice Grouping Code , description: Vendor Invoice Grouping Codes ,
-
Lookup Type: PA_OPTIONS
12.2.2
product: PA - Projects , meaning: Project Options , description: Project Options ,
-
Lookup Type: PA_OPTIONS
12.1.1
product: PA - Projects , meaning: Project Options , description: Project Options ,
-
Lookup Type: PERIODIC_EVENT_CREATION
12.1.1
product: PA - Projects , meaning: Periodic Event Creation , description: Periodic Event Creation ,
-
Lookup Type: PERIODIC_EVENT_CREATION
12.2.2
product: PA - Projects , meaning: Periodic Event Creation , description: Periodic Event Creation ,
-
Concurrent Program: PAXCPGAL_SINGLE
12.1.1
execution_filename: PAXCPGAL , product: PA - Projects , user_name: PAXCPGAL , description: Generate Asset Lines , argument_method: Standard , enabled: Yes , execution_method: Oracle Reports ,
-
Concurrent Program: PACRCBDT
12.1.1
execution_filename: PACRCBDT , product: PA - Projects , user_name: PACRCBDT , description: Report to show the Capital Events and the Project Asset Details , argument_method: Standard , enabled: Yes , execution_method: Oracle Reports ,
-
Concurrent Program: PAXCPGAL_SINGLE
12.2.2
execution_filename: PAXCPGAL , product: PA - Projects , user_name: PAXCPGAL , description: Generate Asset Lines , argument_method: Standard , enabled: Yes , execution_method: Oracle Reports ,
-
Concurrent Program: PACRCBDT
12.2.2
execution_filename: PACRCBDT , product: PA - Projects , user_name: PACRCBDT , description: Report to show the Capital Events and the Project Asset Details , argument_method: Standard , enabled: Yes , execution_method: Oracle Reports ,
-
Concurrent Program: PACFATBP
12.2.2
execution_filename: PA_FA_TIEBACK_PVT.ASSETS_TIEBACK , product: PA - Projects , user_name: PACFATBP , description: Tieback Asset Lines from Oracle Assets , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Concurrent Program: PACFATBP
12.1.1
execution_filename: PA_FA_TIEBACK_PVT.ASSETS_TIEBACK , product: PA - Projects , user_name: PACFATBP , description: Tieback Asset Lines from Oracle Assets , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Concurrent Program: FNDRSSUB122
12.1.1
product: PA - Projects , user_name: Report Set PRC: Generate and Interface Asset Lines , description: Generate and Interface Asset Lines , argument_method: Database fetch , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Concurrent Program: PACRCBDT_XML
12.2.2
product: PA - Projects , user_name: MGT: Project Asset Details Report (XML) , description: Project Asset Details Report , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
Concurrent Program: PACRCBDT_XML
12.1.1
product: PA - Projects , user_name: MGT: Project Asset Details Report (XML) , description: Project Asset Details Report , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
Concurrent Program: PAXCPGAL_SINGLE_XML
12.2.2
product: PA - Projects , user_name: PRC: Generate Asset Lines for a Single Project (XML) , description: Generate Asset Lines for a Single Project , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
Concurrent Program: PAXCPGAL_SINGLE_XML
12.1.1
product: PA - Projects , user_name: PRC: Generate Asset Lines for a Single Project (XML) , description: Generate Asset Lines for a Single Project , argument_method: Standard , enabled: Yes , execution_method: Java Concurrent Program ,
-
Concurrent Program: FNDRSSUB122
12.2.2
product: PA - Projects , user_name: Report Set PRC: Generate and Interface Asset Lines , description: Generate and Interface Asset Lines , argument_method: Database fetch , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Concurrent Program: PAXCPGAL
12.1.1
execution_filename: PAXCPGAL , product: PA - Projects , user_name: PAXCPGAL , description: Generate Asset Lines , argument_method: Standard , enabled: Yes , execution_method: Oracle Reports ,
-
Concurrent Program: PAXCPGAL
12.2.2
execution_filename: PAXCPGAL , product: PA - Projects , user_name: PAXCPGAL , description: Generate Asset Lines , argument_method: Standard , enabled: Yes , execution_method: Oracle Reports ,
-
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 ,
-
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 ,