Search Results base_line_version
Overview
PSBBV_POSITION_COSTS is an Oracle E-Business Suite read-only view owned by the APPS schema and delivered as part of the Oracle Enterprise Technical Reference Model (ETRM). It exposes position-level cost information maintained by the Oracle Public Sector Budgeting (PSB) module. In EBS 12.1.1 and 12.2.2, this view presents budgeted or proposed cost data associated with positions, expressed at the level of individual position element lines. Because it is created with a WITH READ ONLY clause, it is intended strictly for query and reporting purposes rather than for DML operations.
The view plays a supporting role in budget formulation, position control, and cost analysis reporting. It allows reporting tools, custom concurrent programs, and integration interfaces to retrieve position cost detail without querying the underlying transactional table directly, thereby insulating consumers from the base table structure and enforcing read-only access semantics.
Underlying Base Objects
The ETRM documentation records that the view is defined over a single base object: PSB_POSITION_COSTS. The documented view text is a straightforward projection of columns with no joins, aggregations, or filter predicates:
- SELECT POSITION_ELEMENT_LINE_ID, POSITION_ID, PAY_ELEMENT_ID, BUDGET_REVISION_ID, BASE_LINE_VERSION, CURRENCY_CODE, START_DATE, END_DATE, ELEMENT_COST FROM PSB_POSITION_COSTS WITH READ ONLY
No additional referenced base objects are documented in the metadata excerpt provided. The read-only constraint is enforced at the database level, meaning attempts to perform INSERT, UPDATE, or DELETE against the view will fail.
Key Columns
The columns exposed by the view correspond directly to the underlying PSB_POSITION_COSTS table:
- POSITION_ELEMENT_LINE_ID — Primary identifier for the position element line; uniquely identifies each cost record.
- POSITION_ID — Foreign key linking the cost line to a defined position.
- PAY_ELEMENT_ID — Identifies the pay element associated with the cost, used to categorize the nature of the cost component.
- BUDGET_REVISION_ID — Identifies the budget revision within which the position cost was captured, enabling historical and versioned budget analysis.
- BASE_LINE_VERSION — Distinguishes the baseline version of the position line, supporting comparisons between baseline and revised cost figures.
- CURRENCY_CODE — The currency in which ELEMENT_COST is expressed.
- START_DATE / END_DATE — The effective date range during which the cost record is applicable.
- ELEMENT_COST — The monetary cost amount for the position element line.
The BASE_LINE_VERSION column is particularly relevant to consumers searching for version-aware position cost data, as it allows records to be partitioned by baseline versus subsequent revision states.
Common Use Cases and Queries
Typical uses include position budgeting reports, cost impact analyses, and data extraction for downstream financial systems. A common query retrieves all cost lines for a given position:
- SELECT POSITION_ID, PAY_ELEMENT_ID, BASE_LINE_VERSION, CURRENCY_CODE, ELEMENT_COST FROM APPS.PSBBV_POSITION_COSTS WHERE POSITION_ID = :p_position_id;
To analyze costs across budget revisions and baseline versions:
- SELECT POSITION_ID, BUDGET_REVISION_ID, BASE_LINE_VERSION, SUM(ELEMENT_COST) FROM APPS.PSBBV_POSITION_COSTS GROUP BY POSITION_ID, BUDGET_REVISION_ID, BASE_LINE_VERSION;
To retrieve only currently effective costs, a date-bounded query may be applied using START_DATE and END_DATE. Because the view is read-only and represents a direct projection, queries are efficient and well suited to large-scale reporting and integration extraction.
-
VIEW: APPS.PSBBV_POSITION_COSTS
12.1.1
-
View: PSBBV_POSITION_FTE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_FTE, object_name:PSBBV_POSITION_FTE, status:VALID, product: PSB - Public Sector Budgeting , description: Provides Details about Position Fte from Position Control tables. , implementation_dba_data: APPS.PSBBV_POSITION_FTE ,
-
View: PSBBV_POSITION_FTE
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , description: Provides Details about Position Fte from Position Control tables. , implementation_dba_data: Not implemented in this database ,
-
View: PSBBV_POSITION_ACCOUNTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , description: Provides details about the Position account distributions. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PSBBV_POSITION_FTE
12.1.1
-
View: PSBBV_POSITION_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_COSTS, object_name:PSBBV_POSITION_COSTS, status:VALID, product: PSB - Public Sector Budgeting , description: Provides details about Position Costs elementwise. , implementation_dba_data: APPS.PSBBV_POSITION_COSTS ,
-
View: PSBBV_POSITION_COSTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , description: Provides details about Position Costs elementwise. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PSBBV_POSITION_ACCOUNTS
12.1.1
-
View: PSBBV_POSITION_ACCOUNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_ACCOUNTS, object_name:PSBBV_POSITION_ACCOUNTS, status:VALID, product: PSB - Public Sector Budgeting , description: Provides details about the Position account distributions. , implementation_dba_data: APPS.PSBBV_POSITION_ACCOUNTS ,
-
VIEW: APPS.PSBBV_POSITION_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_COSTS, object_name:PSBBV_POSITION_COSTS, status:VALID,
-
VIEW: APPS.PSBFV_POSITION_ACCOUNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_ACCOUNTS, object_name:PSBFV_POSITION_ACCOUNTS, status:VALID,
-
VIEW: APPS.PSBBV_POSITION_FTE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_FTE, object_name:PSBBV_POSITION_FTE, status:VALID,
-
VIEW: APPS.PSBFV_POSITION_FTE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_FTE, object_name:PSBFV_POSITION_FTE, status:VALID,
-
VIEW: APPS.PSBBV_POSITION_ACCOUNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_ACCOUNTS, object_name:PSBBV_POSITION_ACCOUNTS, status:VALID,
-
View: PSBFV_POSITION_FTE
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , description: Provides Details about Position Fte from Position Control tables. , implementation_dba_data: Not implemented in this database ,
-
TABLE: PSB.PSB_POSITION_ACCOUNTS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_POSITION_ACCOUNTS, object_name:PSB_POSITION_ACCOUNTS, status:VALID,
-
View: PSBFV_POSITION_FTE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_FTE, object_name:PSBFV_POSITION_FTE, status:VALID, product: PSB - Public Sector Budgeting , description: Provides Details about Position Fte from Position Control tables. , implementation_dba_data: APPS.PSBFV_POSITION_FTE ,
-
TABLE: PSB.PSB_POSITION_COSTS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_POSITION_COSTS, object_name:PSB_POSITION_COSTS, status:VALID,
-
View: PSBFV_POSITION_ACCOUNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_ACCOUNTS, object_name:PSBFV_POSITION_ACCOUNTS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_POSITION_ACCOUNTS ,
-
View: PSBFV_POSITION_ACCOUNTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: PSB.PSB_POSITION_FTE
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_POSITION_FTE, object_name:PSB_POSITION_FTE, status:VALID,
-
APPS.PSB_POSITION_CONTROL_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PSB_POSITION_CONTROL_PVT
12.1.1
-
APPS.PSB_BUDGET_REVISIONS_PVT SQL Statements
12.1.1
-
APPS.PSB_BUDGET_REVISIONS_PVT dependencies on PSB_POSITION_FTE
12.1.1
-
APPS.PSB_POSITION_CONTROL_PVT dependencies on PSB_POSITION_COSTS_S
12.1.1
-
APPS.PSB_POSITION_CONTROL_PVT dependencies on PSB_POSITION_FTE
12.1.1
-
APPS.PSB_POSITION_CONTROL_PVT dependencies on PSB_POSITION_ACCOUNTS_S
12.1.1
-
APPS.PSB_POSITION_CONTROL_PVT dependencies on PSB_POSITION_FTE_S
12.1.1
-
APPS.PSB_POSITION_CONTROL_PVT dependencies on PSB_POSITION_ACCOUNTS
12.1.1
-
APPS.PSB_POSITION_CONTROL_PVT dependencies on PSB_POSITION_COSTS
12.1.1
-
APPS.PSB_BUDGET_REVISIONS_PVT dependencies on PSB_POSITION_ACCOUNTS
12.1.1
-
APPS.PSB_POSITION_CONTROL_PVT dependencies on FND_GLOBAL
12.1.1
-
APPS.PSB_POSITION_CONTROL_PVT dependencies on FND_API
12.1.1
-
eTRM - PSB Tables and Views
12.1.1
description: User profiles for a worksheet ,
-
PACKAGE BODY: APPS.PSB_BUDGET_REVISIONS_PVT
12.1.1