Search Results psb_position_set_line_values
Overview
The table PSB_POSITION_SET_LINE_VALUES is a core data object within the Oracle E-Business Suite Public Sector Budgeting (PSB) module. It functions as a junction table that stores the specific attribute values assigned to individual lines within a position set. In the context of PSB, a position set is a grouping of positions used for budgeting and forecasting. This table is critical for establishing the detailed characteristics and costing rules for each position within a set, enabling the complex position-based budgeting required by public sector entities. Its role is to link a position set line to its defined attributes, thereby providing the granular data necessary for accurate budget calculations and position management.
Key Information Stored
The table's primary purpose is to associate a position set line with one or more attribute values. Its structure is defined by key foreign key columns that establish these relationships. The central column is LINE_SEQUENCE_ID, which links the record to a specific line in the PSB_ACCOUNT_POSITION_SET_LINES table. The ATTRIBUTE_VALUE_ID column stores a reference to a predefined value in the PSB_ATTRIBUTE_VALUES table, representing the actual attribute assigned (e.g., a specific grade, step, or funding source). The table's primary key, VALUE_SEQUENCE_ID, uniquely identifies each attribute assignment on a line. While the provided metadata does not list all columns, this core structure indicates the table holds the essential links between a position line and its descriptive and financial attributes.
Common Use Cases and Queries
This table is primarily accessed for reporting and validation within position budgeting processes. A common use case is to generate a detailed report of all attributes assigned to positions within a specific budget or position set. Technical consultants often query this table to troubleshoot budget calculation issues by verifying the attribute values driving cost formulas. A typical SQL pattern involves joining to the related position set lines and attribute master tables:
- Reporting Position Details:
SELECT line.line_number, attr_val.attribute_value
FROM psb_position_set_line_values pslv,
psb_account_position_set_lines line,
psb_attribute_values attr_val
WHERE pslv.line_sequence_id = line.line_sequence_id
AND pslv.attribute_value_id = attr_val.attribute_value_id
AND line.position_set_id = :p_set_id; - Data Integrity Validation: Queries are also used to identify orphaned records or lines missing required attribute assignments by checking for NULL foreign keys or expected counts of values per line.
Related Objects
PSB_POSITION_SET_LINE_VALUES is a dependent table with defined foreign key relationships to two master tables, as documented in the ETRM metadata.
- PSB_ACCOUNT_POSITION_SET_LINES: This is the primary parent table. The foreign key PSB_POSITION_SET_LINE_VALUES.LINE_SEQUENCE_ID references a unique line in this table. Every record in PSB_POSITION_SET_LINE_VALUES must correspond to a valid position set line.
- PSB_ATTRIBUTE_VALUES: This is the reference table for valid attribute values. The foreign key PSB_POSITION_SET_LINE_VALUES.ATTRIBUTE_VALUE_ID ensures that the value assigned to a position line is drawn from the established list of allowed values within the PSB setup.
These relationships enforce data integrity and ensure that position costing is based on consistently defined attributes across the budgeting system.
-
Table: PSB_POSITION_SET_LINE_VALUES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_POSITION_SET_LINE_VALUES, object_name:PSB_POSITION_SET_LINE_VALUES, status:VALID, product: PSB - Public Sector Budgeting , description: Attribute values associated with a position set line , implementation_dba_data: PSB.PSB_POSITION_SET_LINE_VALUES ,
-
Table: PSB_POSITION_SET_LINE_VALUES
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , description: Attribute values associated with a position set line , implementation_dba_data: Not implemented in this database ,
-
APPS.PSB_ACCOUNT_POSITION_SET_PVT dependencies on PSB_POSITION_SET_LINE_VALUES
12.1.1
-
APPS.PSB_ENTITY_SET_PVT dependencies on PSB_POSITION_SET_LINE_VALUES
12.1.1
-
APPS.PSB_SET_RELATION_PVT dependencies on PSB_POSITION_SET_LINE_VALUES
12.1.1
-
APPS.PSB_BUDGET_POSITION_PVT dependencies on PSB_POSITION_SET_LINE_VALUES
12.1.1
-
APPS.PSB_PURGE_DATA_EXTRACT_PVT dependencies on PSB_POSITION_SET_LINE_VALUES
12.1.1
-
APPS.PSB_WORKSHEET_CONSOLIDATE dependencies on PSB_POSITION_SET_LINE_VALUES
12.1.1
-
APPS.PSB_POS_SET_LINE_VALUES_PVT dependencies on PSB_POSITION_SET_LINE_VALUES
12.1.1
-
APPS.PSB_ACCT_POSITION_SET_LINE_PVT dependencies on PSB_POSITION_SET_LINE_VALUES
12.1.1
-
APPS.PSB_POSITION_CONTROL_PVT dependencies on PSB_POSITION_SET_LINE_VALUES
12.1.1
-
APPS.PSB_POS_SET_LINE_VALUES_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.PSB_POSITION_SET_LINE_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PSB_POSITION_SET_LINE_VALUES, status:VALID,
-
VIEW: APPS.PSBBV_POSITION_SET_LINES
12.1.1
-
VIEW: APPS.PSB_POSITION_SET_LINE_VALUES_V
12.1.1
-
VIEW: APPS.PSBFV_POSITION_SET_LINES
12.1.1
-
TABLE: PSB.PSB_POSITION_SET_LINE_VALUES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_POSITION_SET_LINE_VALUES, object_name:PSB_POSITION_SET_LINE_VALUES, status:VALID,
-
Table: PSB_ACCOUNT_POSITION_SET_LINES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_ACCOUNT_POSITION_SET_LINES, object_name:PSB_ACCOUNT_POSITION_SET_LINES, status:VALID, product: PSB - Public Sector Budgeting , description: Account set details in form of range of accounts. Position set details in form of position attributes. , implementation_dba_data: PSB.PSB_ACCOUNT_POSITION_SET_LINES ,
-
View: PSBBV_POSITION_SET_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_SET_LINES, object_name:PSBBV_POSITION_SET_LINES, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBBV_POSITION_SET_LINES ,
-
APPS.PSB_POS_SET_LINE_VALUES_PVT dependencies on PSB_POSITION_SET_LINE_VALUES_S
12.1.1
-
Table: PSB_ATTRIBUTE_VALUES
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_ATTRIBUTE_VALUES, object_name:PSB_ATTRIBUTE_VALUES, status:VALID, product: PSB - Public Sector Budgeting , description: Position attribute value sets , implementation_dba_data: PSB.PSB_ATTRIBUTE_VALUES ,
-
Table: PSB_ATTRIBUTE_VALUES
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , description: Position attribute value sets , implementation_dba_data: Not implemented in this database ,
-
APPS.PSB_SET_RELATION_PVT dependencies on PSB_ACCOUNT_POSITION_SET_LINES
12.1.1
-
Table: PSB_ACCOUNT_POSITION_SET_LINES
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , description: Account set details in form of range of accounts. Position set details in form of position attributes. , implementation_dba_data: Not implemented in this database ,
-
View: PSBBV_POSITION_SET_LINES
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSB_POSITION_SET_LINE_VALUES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_POSITION_SET_LINE_VALUES_V, object_name:PSB_POSITION_SET_LINE_VALUES_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_POSITION_SET_LINE_VALUES_V ,
-
View: PSBFV_POSITION_SET_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_SET_LINES, object_name:PSBFV_POSITION_SET_LINES, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_POSITION_SET_LINES ,
-
View: PSBFV_POSITION_SET_LINES
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.PSB_ENTITY_SET_PVT dependencies on PSB_ACCOUNT_POSITION_SET_LINES
12.1.1
-
PACKAGE BODY: APPS.PSB_SET_RELATION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_SET_RELATION_PVT, status:VALID,
-
PACKAGE BODY: APPS.PSB_BUDGET_POSITION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_BUDGET_POSITION_PVT, status:VALID,
-
APPS.PSB_ENTITY_SET_PVT dependencies on PSB_SET_RELATIONS
12.1.1
-
PACKAGE BODY: APPS.PSB_PURGE_DATA_EXTRACT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_PURGE_DATA_EXTRACT_PVT, status:VALID,
-
APPS.PSB_ENTITY_SET_PVT dependencies on PSB_ACCOUNT_POSITION_SETS
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
View: PSB_POSITION_SET_LINE_VALUES_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.PSB_POS_SET_LINE_VALUES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_POS_SET_LINE_VALUES_PVT, status:VALID,
-
PACKAGE BODY: APPS.PSB_ACCT_POSITION_SET_LINE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_ACCT_POSITION_SET_LINE_PVT, status:VALID,
-
APPS.PSB_PURGE_DATA_EXTRACT_PVT SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PSB_ACCOUNT_POSITION_SET_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_ACCOUNT_POSITION_SET_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.PSB_BUDGET_POSITION_PVT SQL Statements
12.1.1
-
VIEW: APPS.PSBFV_POSITION_SET_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_SET_LINES, object_name:PSBFV_POSITION_SET_LINES, status:VALID,
-
PACKAGE BODY: APPS.PSB_POS_SET_LINE_VALUES_PVT
12.1.1
-
APPS.PSB_ENTITY_SET_PVT dependencies on PSB_ATTRIBUTES
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.PSB_ENTITY_SET_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_ENTITY_SET_PVT, status:VALID,
-
PACKAGE BODY: APPS.PSB_WORKSHEET_CONSOLIDATE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_WORKSHEET_CONSOLIDATE, status:VALID,