Search Results encumbrance_status




Overview

PSPFV_LABOR_SCHEDULE_LINES is a read-only reporting view in the Oracle E-Business Suite Labor Distribution module (PSP). It exposes labor schedule line records stored in the PSP_SCHEDULE_LINES table, joined to the descriptive attributes of the projects, tasks, awards, organizations, and sets of books that those lines reference. The view is intended for reporting and integration rather than for transaction processing; it is declared WITH READ ONLY and is vendor-owned, meaning it should be queried but never modified.

In the context of a user searching for encumbrance_status, this view is directly relevant because it surfaces the ENCUMBER_STATUS_CODE column from the underlying schedule lines table, exposed under the column alias ENCUMBRANCE_STATUS. This column indicates how labor schedule lines interact with encumbrance accounting, which determines whether scheduled labor costs generate encumbrance entries against awards and projects. The view therefore serves as a convenient single source for reviewing labor schedule distributions alongside their encumbrance treatment and the descriptive context needed to interpret them.

Underlying Base Objects

The view is defined over PSP_SCHEDULE_LINES as the driving table, with outer joins (denoted by the (+) operator) to the following reference objects:

Because the reference tables are outer-joined, schedule lines are retained in the result set even when a related project, task, award, organization, or accounting combination is missing or inaccessible. A mandatory inner join on business group (PSL.BUSINESS_GROUP_ID = HOU2.ORGANIZATION_ID) and a security predicate ("_SEC:PSL.EXPENDITURE_ORGANIZATION_ID") constrain the rows according to the querying user's organization access.

Key Columns

Common Use Cases and Queries

Typical scenarios include auditing labor schedule distributions for encumbrance treatment, reconciling scheduled labor to awards and projects, and feeding downstream reporting or integration extracts.

To list schedule lines by encumbrance status:

  • SELECT schedule_line_id, project_name, task_name, award_full_name, encumbrance_status, schedule_percentage FROM pspfv_labor_schedule_lines WHERE encumbrance_status = :status;

To review encumbrance status by award for a given set of books:

  • SELECT award_full_name, encumbrance_status, COUNT(*) FROM pspfv_labor_schedule_lines WHERE set_of_books_name = :sob GROUP BY award_full_name, encumbrance_status;

Because the view enforces organization security and is read only, it is safe for ad hoc reporting and scheduled extracts without risk of altering base data.