Search Results distribution_date
Overview
PSP_ADJUSTMENT_COMBO_V is a consolidated union view owned by the APPS schema within the Oracle E-Business Suite environment. It functions primarily within the PSP (Labor Distribution) module. The view is designed to provide a unified interface for querying historical distribution data across three distinct transactional contexts: standard distribution, pre-generation, and adjustments. As indicated by its definition, the view does not store data itself but rather aggregates and transforms data from multiple underlying history tables. Its primary role is to support reporting and integration by presenting a single, queryable source for distribution history records, allowing users to track labor cost allocations and adjustments over time without needing to navigate multiple tables. The view is marked as VALID in version 12.1.1 and 12.2.2, ensuring its availability for concurrent programs, custom reports, and data extracts.
Underlying Base Objects
The view is constructed via a UNION of three SELECT statements, each sourcing data from a different history table within the PSP schema. The first branch joins PSP_DISTRIBUTION_LINES_HISTORY with PSP_PAYROLL_SUB_LINES and PSP_PAYROLL_LINES to derive assignment and element type identifiers. This branch is tagged with the source literal 'DISTRIBUTION_LINES_HISTORY'. The second branch selects directly from PSP_PRE_GEN_DIST_LINES_HISTORY, tagged as 'PRE_GEN_DIST_LINES_HISTORY'. The third branch selects from PSP_ADJUSTMENT_LINES_HISTORY, tagged as 'ADJUSTMENT_LINES_HISTORY'. All referenced base objects are synonyms pointing to the actual tables in the APPS schema. The view therefore serves as a metadata layer that abstracts the physical storage of distribution history, enabling consistent access across all three historical data sets.
Key Columns
- ASSIGNMENT_ID – Identifier for the employee assignment associated with the distribution line.
- ELEMENT_TYPE_ID – Identifier for the payroll element type, indicating the nature of the earning or deduction.
- DISTRIBUTION_DATE – The effective date on which the distribution was recorded or adjusted.
- BUSINESS_GROUP_ID – Identifier for the business group, used for organizational partitioning.
- SET_OF_BOOKS_ID – Identifier for the set of books (ledger), establishing the financial context.
- SOURCE – A literal column that indicates the origin of each row: 'DISTRIBUTION_LINES_HISTORY', 'PRE_GEN_DIST_LINES_HISTORY', or 'ADJUSTMENT_LINES_HISTORY'. This column is critical for distinguishing between the different data sets within the union.
Common Use Cases and Queries
This view is typically employed in labor distribution reporting, audit trails, and reconciliation processes. A common requirement is to retrieve all historical distribution entries for a given assignment, optionally filtered by source or date range. For example, to examine all adjustments for a specific assignment, one might execute:
SELECT * FROM APPS.PSP_ADJUSTMENT_COMBO_V WHERE ASSIGNMENT_ID = :p_assignment_id AND SOURCE = 'ADJUSTMENT_LINES_HISTORY';
Alternatively, to compare pre-generated distributions against final distributions, a query grouping by SOURCE can provide counts and totals. Because the view consolidates three tables, it simplifies data extraction for subledger accounting, cost allocation reviews, and custom OBIEE or BI Publisher reports. It is also useful in integration scenarios where external systems require a single feed of distribution history without needing to understand the underlying PSP schema complexity. When using the view, ensure that joins to other master data (e.g., PER_ALL_ASSIGNMENTS_F, GL_SETS_OF_BOOKS) are performed on the exposed ID columns to enrich the output with descriptive attributes.
-
View: PSP_ADJUSTMENT_COMBO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_ADJUSTMENT_COMBO_V, object_name:PSP_ADJUSTMENT_COMBO_V, status:VALID, product: PSP - Labor Distribution , implementation_dba_data: APPS.PSP_ADJUSTMENT_COMBO_V ,
-
View: PSP_ADJUSTMENT_COMBO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_ADJUSTMENT_COMBO_V, object_name:PSP_ADJUSTMENT_COMBO_V, status:VALID, product: PSP - Labor Distribution , implementation_dba_data: APPS.PSP_ADJUSTMENT_COMBO_V ,
-
View: PSP_DISTRIBUTION_COMBO_V
12.2.2
product: PSP - Labor Distribution , description: Based on PSP_DISTRIBUTION_LINES_HISTORY, PSP_PRE_GEN_DIST_LINES_HISTORY, and PSP_ADJUSTMENT_LINES_HISTORY tables , implementation_dba_data: Not implemented in this database ,
-
View: PSP_DISTRIBUTION_COMBO_V
12.1.1
product: PSP - Labor Distribution , description: Based on PSP_DISTRIBUTION_LINES_HISTORY, PSP_PRE_GEN_DIST_LINES_HISTORY, and PSP_ADJUSTMENT_LINES_HISTORY tables , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_GENERATE_COST_DIST_LINES
12.1.1
product: PSP - Labor Distribution , description: PSPBV_GENERATE_COST_DIST_LINES displays information about cost distribution lines generated in Labor Distribution. , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_GENERATE_COST_DIST_LINES
12.2.2
product: PSP - Labor Distribution , description: PSPBV_GENERATE_COST_DIST_LINES displays information about cost distribution lines generated in Labor Distribution. , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_GENERATED_DIST_HISTORIES
12.2.2
product: PSP - Labor Distribution , description: PSPBV_GENERATED_DIST_HISTORIES displays the distributed Oracle Payroll and non-Oracle payroll sublines that are successfully transferred to General Ledger and Grants Management. , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_GENERATED_DIST_HISTORIES
12.1.1
product: PSP - Labor Distribution , description: PSPBV_GENERATED_DIST_HISTORIES displays the distributed Oracle Payroll and non-Oracle payroll sublines that are successfully transferred to General Ledger and Grants Management. , implementation_dba_data: Not implemented in this database ,
-
View: PSP_REP_DIST_PRJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_REP_DIST_PRJ_V, object_name:PSP_REP_DIST_PRJ_V, status:VALID, product: PSP - Labor Distribution , description: Based on the PSP_DISTRIBUTION_LINES_HISTORY table , implementation_dba_data: APPS.PSP_REP_DIST_PRJ_V ,
-
View: PSP_REP_DIST_PRJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_REP_DIST_PRJ_V, object_name:PSP_REP_DIST_PRJ_V, status:VALID, product: PSP - Labor Distribution , description: Based on the PSP_DISTRIBUTION_LINES_HISTORY table , implementation_dba_data: APPS.PSP_REP_DIST_PRJ_V ,
-
View: PSPBV_PREGEN_DIST_LINES
12.1.1
product: PSP - Labor Distribution , description: PSPBV_PREGEN_DIST_LINES displays information about imported pre-generated distribution lines brought into Labor Distribution from time card sytems or other similar systems. , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_COST_DIST_LINE_ADJUST
12.2.2
product: PSP - Labor Distribution , description: PSPBV_COST_DIST_LINE_ADJUST displays information regarding distribution lines created due to adjustments. , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_DIST_ADJUST_HISTORIES
12.2.2
product: PSP - Labor Distribution , description: PSPBV_DIST_ADJUST_HISTORIES displays the adjusted lines that are transferred to General Ledger or Grants Management successfully. , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_PREGEN_DIST_HISTORIES
12.2.2
product: PSP - Labor Distribution , description: PSPBV_PREGEN_DIST_HISTORIES displays the distributed Oracle Payroll and non-Oracle payroll sublines that are transferred to General Ledger and Grants Management successfully. , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_PREGEN_DIST_HISTORIES
12.1.1
product: PSP - Labor Distribution , description: PSPBV_PREGEN_DIST_HISTORIES displays the distributed Oracle Payroll and non-Oracle payroll sublines that are transferred to General Ledger and Grants Management successfully. , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_PREGEN_DIST_LINES
12.2.2
product: PSP - Labor Distribution , description: PSPBV_PREGEN_DIST_LINES displays information about imported pre-generated distribution lines brought into Labor Distribution from time card sytems or other similar systems. , implementation_dba_data: Not implemented in this database ,
-
View: PSPBV_COST_DIST_LINE_ADJUST
12.1.1
product: PSP - Labor Distribution , description: PSPBV_COST_DIST_LINE_ADJUST displays information regarding distribution lines created due to adjustments. , implementation_dba_data: Not implemented in this database ,
-
View: PSP_REP_DEF_CHG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_REP_DEF_CHG_V, object_name:PSP_REP_DEF_CHG_V, status:VALID, product: PSP - Labor Distribution , description: Based on PSP_DISTRIBUTION_LINES_HISTORY for the Distribution History by Default Account report , implementation_dba_data: APPS.PSP_REP_DEF_CHG_V ,
-
View: PSPBV_DIST_ADJUST_HISTORIES
12.1.1
product: PSP - Labor Distribution , description: PSPBV_DIST_ADJUST_HISTORIES displays the adjusted lines that are transferred to General Ledger or Grants Management successfully. , implementation_dba_data: Not implemented in this database ,
-
View: PSP_DISTRIBUTION_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_DISTRIBUTION_INTERFACE_V, object_name:PSP_DISTRIBUTION_INTERFACE_V, status:VALID, product: PSP - Labor Distribution , description: Based on PSP_DISTRIBUTION_INTERFACE table , implementation_dba_data: APPS.PSP_DISTRIBUTION_INTERFACE_V ,
-
View: PSP_REP_DEF_CHG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_REP_DEF_CHG_V, object_name:PSP_REP_DEF_CHG_V, status:VALID, product: PSP - Labor Distribution , description: Based on PSP_DISTRIBUTION_LINES_HISTORY for the Distribution History by Default Account report , implementation_dba_data: APPS.PSP_REP_DEF_CHG_V ,
-
View: PSP_DISTRIBUTION_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_DISTRIBUTION_INTERFACE_V, object_name:PSP_DISTRIBUTION_INTERFACE_V, status:VALID, product: PSP - Labor Distribution , description: Based on PSP_DISTRIBUTION_INTERFACE table , implementation_dba_data: APPS.PSP_DISTRIBUTION_INTERFACE_V ,
-
View: PSP_REP_DIST_ORG_V
12.1.1
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_PREGEN_DIST_LINES
12.1.1
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_PREGEN_DIST_HISTORIES
12.1.1
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_PREGEN_DIST_HISTORIES
12.2.2
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSP_REP_SSP_CHG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_REP_SSP_CHG_V, object_name:PSP_REP_SSP_CHG_V, status:VALID, product: PSP - Labor Distribution , description: Based on PSP_DISTRIBUTION_LINES_HISTORY used in Suspense Account Charging report , implementation_dba_data: APPS.PSP_REP_SSP_CHG_V ,
-
View: PSP_REP_DIST_ORG_V
12.2.2
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_PREGEN_DIST_LINES
12.2.2
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSP_REP_SSP_CHG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_REP_SSP_CHG_V, object_name:PSP_REP_SSP_CHG_V, status:VALID, product: PSP - Labor Distribution , description: Based on PSP_DISTRIBUTION_LINES_HISTORY used in Suspense Account Charging report , implementation_dba_data: APPS.PSP_REP_SSP_CHG_V ,
-
View: PSP_REP_ORG_GRP1_V
12.2.2
product: PSP - Labor Distribution , description: Based on the PSP_DISTRIBUTION_LINES_HISTORY table used in the Distribution History by Organization report , implementation_dba_data: Not implemented in this database ,
-
View: PSP_REP_ORG_GRP1_V
12.1.1
product: PSP - Labor Distribution , description: Based on the PSP_DISTRIBUTION_LINES_HISTORY table used in the Distribution History by Organization report , implementation_dba_data: Not implemented in this database ,
-
View: PSP_REP_SSP_CHG1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_REP_SSP_CHG1_V, object_name:PSP_REP_SSP_CHG1_V, status:VALID, product: PSP - Labor Distribution , description: Based on PSP_REP_SSP_CHG_V that is used in Suspense Account Charging report.5-FEB-02 Ritesh Modified query to fix Bug:2209306 , implementation_dba_data: APPS.PSP_REP_SSP_CHG1_V ,
-
View: PSP_REP_SSP_CHG1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PSP.PSP_REP_SSP_CHG1_V, object_name:PSP_REP_SSP_CHG1_V, status:VALID, product: PSP - Labor Distribution , description: Based on PSP_REP_SSP_CHG_V that is used in Suspense Account Charging report.5-FEB-02 Ritesh Modified query to fix Bug:2209306 , implementation_dba_data: APPS.PSP_REP_SSP_CHG1_V ,
-
View: PSPFV_GENERATED_DIST_HISTORIES
12.2.2
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_GENERATE_COST_DIST_LINES
12.2.2
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_GENERATED_DIST_HISTORIES
12.1.1
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_GENERATE_COST_DIST_LINES
12.1.1
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_DIST_ADJUST_HISTORIES
12.1.1
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_DIST_ADJUST_HISTORIES
12.2.2
product: PSP - Labor Distribution , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_COST_DIST_LINE_ADJUST
12.2.2
product: PSP - Labor Distribution , description: PSPFV_COST_DIST_LINE_ADJUST displays information regarding distribution lines created due to adjustments. , implementation_dba_data: Not implemented in this database ,
-
View: PSPFV_COST_DIST_LINE_ADJUST
12.1.1
product: PSP - Labor Distribution , description: PSPFV_COST_DIST_LINE_ADJUST displays information regarding distribution lines created due to adjustments. , implementation_dba_data: Not implemented in this database ,