Search Results num_proposed_years
Overview
PSBBV_BUDGET_WORKSHEETS is a read-only view belonging to the Public Sector Budgeting (PSB) product, which is marked as obsolete in Oracle E-Business Suite 12.1.1 and 12.2.2. The view presents budget worksheet definitions along with the control parameters, allocation options, currency-balance handling flags, and workbook metadata required to drive the budgeting process. Its role is chiefly informational and reporting-oriented: it consolidates the metadata stored in the PSB worksheet tables into a single, responsibility-filtered result set that exposes the configuration of worksheets belonging to the budget groups accessible to the current user's responsibility.
The view is created WITH READ ONLY, so it cannot be used for DML. It is intended purely for query and reporting purposes. Because the underlying budget-group filter depends on FND_GLOBAL.RESP_ID, the set of rows returned is automatically restricted to budget groups reachable through the responsibility's hierarchical group assignments. This makes the view a natural source for responsibility-aware inquiry screens, custom reports, and integration extracts.
Underlying Base Objects
The view text selects from a single driving table, PSB_WORKSHEETS (aliased WS), which supplies every projected column. Filtering is performed against two further PSB tables:
- PSB_BUDGET_GROUPS — restricts the result to groups whose
BUDGET_GROUP_TYPE = 'R'and whose effective date range includes the current system date (SYSDATE BETWEEN EFFECTIVE_START_DATE AND NVL(EFFECTIVE_END_DATE, SYSDATE)). - PSB_BUDGET_GROUP_RESP — anchors the hierarchical
CONNECT BY PRIOR BUDGET_GROUP_ID = PARENT_BUDGET_GROUP_IDtraversal to budget groups assigned to the responsibility identified byFND_GLOBAL.RESP_ID.
Although the ETRM documentation records no referenced base objects, the view text clearly establishes PSB_WORKSHEETS as the primary source table, with PSB_BUDGET_GROUPS and PSB_BUDGET_GROUP_RESP providing the responsibility-scoped security filter. The dictionary is exposed in the PSB schema and is closely associated with the worksheet logic of the legacy Public Sector Budgeting module.
Key Columns
- WORKSHEET_NAME / WORKSHEET_DESCRIPTION — the worksheet label and description.
- "_LA:WORKSHEET_TYPE" — a translated lookup expression joining
FND_LOOKUPSon lookup typePSB_WORKSHEET_TYPESand returning theMEANING. This is the column most relevant to a user searching for worksheet-type identification. - GL_CUTOFF_PERIOD — the GL period used as the cutoff for balance extraction; this column is the direct answer to the user's search term gl_cutoff_period, and is stored on the worksheet record itself.
- CURRENT_STAGE_SEQ — the sequence position of the stage currently active in the worksheet workflow.
- BUDGET_BY_POSITION, NUM_PROPOSED_YEARS, NUM_YEARS_TO_ALLOCATE, ROUNDING_FACTOR — budgeting calculation controls.
- USE_REVISED_ELEMENT_RATES, INCLUDE_TRANSLATED_BALANCE, INCLUDE_ADJUSTMENT_PERIODS, INCLUDE_STAT_BALANCE — flags governing rate application, translated balances, adjustment periods, and statistical balances during extraction.
- DATE_SUBMITTED / SUBMITTED_BY — submission audit fields.
- WORKSHEET_ID, BUDGET_GROUP_ID, BUDGET_CALENDAR_ID, STAGE_SET_ID, GLOBAL_WORKSHEET_ID, GL_BUDGET_SET_ID, GL_BUDGET_VERSION_ID — primary and foreign keys linking the worksheet to its group, calendar, stages, GL budget set/version, and global template.
- DATA_EXTRACT_ID, PARAMETER_SET_ID, CONSTRAINT_SET_ID, ALLOCRULE_SET_ID — references to extraction, parameter, constraint, and allocation rule sets.
- FREEZE_FLAG — indicates whether the worksheet is frozen against further edits.
- Audit columns —
LAST_UPDATED_BY,LAST_UPDATE_DATE,CREATION_DATE,CREATED_BY.
Common Use Cases and Queries
Typical uses include reporting on worksheet configuration, verifying the GL cutoff period applied to a worksheet, auditing submission status, and building integration extracts that reconcile worksheets with their GL budget sets. Because the view is responsibility-filtered, it is also used to confirm which budget groups and worksheets a given responsibility can access.
Sample query listing worksheets with their type and GL cutoff period:
SELECT worksheet_name,
"_LA:WORKSHEET_TYPE" AS worksheet_type,
gl_cutoff_period,
current_stage_seq,
freeze_flag,
date_submitted
FROM psbbv_budget_worksheets
ORDER BY worksheet_name;
Sample query identifying worksheets awaiting submission or frozen worksheets:
SELECT w.worksheet_name,
w.budget_group_id,
w.gl_budget_set_id,
w.gl_cutoff_period,
w.freeze_flag
FROM psbbv_budget_worksheets w
WHERE w.date_submitted IS NULL
OR w.freeze_flag = 'Y';
Because the view enforces group-level and responsibility-level security internally, queries do not need to reimplement the PSB_BUDGET_GROUP_RESP hierarchy filter. Users should be aware that the PSB product is obsolete in 12.1.1 and 12.2.2, so the view is retained primarily for backward compatibility and historical data inquiry rather than active new implementations.
-
View: PSBBV_BUDGET_WORKSHEETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_BUDGET_WORKSHEETS, object_name:PSBBV_BUDGET_WORKSHEETS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBBV_BUDGET_WORKSHEETS ,
-
View: PSBBV_BUDGET_WORKSHEETS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PSB_BUDGET_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_BUDGET_GROUPS_V, object_name:PSB_BUDGET_GROUPS_V, status:VALID,
-
VIEW: APPS.PSBBV_BUDGET_WORKSHEETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_BUDGET_WORKSHEETS, object_name:PSBBV_BUDGET_WORKSHEETS, status:VALID,
-
View: PSBFV_BUDGET_WORKSHEETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_BUDGET_WORKSHEETS, object_name:PSBFV_BUDGET_WORKSHEETS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_BUDGET_WORKSHEETS ,
-
View: PSBFV_BUDGET_WORKSHEETS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PSB_WORKSHEETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WORKSHEETS_V, object_name:PSB_WORKSHEETS_V, status:VALID,
-
View: PSB_WORKSHEETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WORKSHEETS_V, object_name:PSB_WORKSHEETS_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_WORKSHEETS_V ,
-
VIEW: APPS.PSBFV_BUDGET_WORKSHEETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_BUDGET_WORKSHEETS, object_name:PSBFV_BUDGET_WORKSHEETS, status:VALID,
-
View: PSB_WORKSHEETS_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.PSB_WS_ACCT2
12.1.1
-
View: PSB_BUDGET_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_BUDGET_GROUPS_V, object_name:PSB_BUDGET_GROUPS_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_BUDGET_GROUPS_V ,
-
View: PSB_BUDGET_GROUPS_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: PSB.PSB_BUDGET_GROUPS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_BUDGET_GROUPS, object_name:PSB_BUDGET_GROUPS, status:VALID,
-
TABLE: PSB.PSB_WORKSHEETS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WORKSHEETS, object_name:PSB_WORKSHEETS, status:VALID,
-
APPS.PSB_WORKSHEET SQL Statements
12.1.1
-
APPS.PSB_WS_POS2 SQL Statements
12.1.1
-
APPS.PSB_BUDGET_GROUPS_PVT SQL Statements
12.1.1
-
APPS.PSB_WS_ACCT2 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PSB_WS_ACCT2
12.1.1
-
APPS.PSB_WS_POS2 dependencies on PSB_WORKSHEETS_V
12.1.1
-
PACKAGE BODY: APPS.PSB_WORKSHEET
12.1.1
-
APPS.PSB_WS_ACCT2 dependencies on PSB_BUDGET_GROUPS
12.1.1
-
PACKAGE BODY: APPS.PSB_BUDGET_GROUPS_PVT
12.1.1
-
APPS.PSB_WORKSHEET 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_WS_POS2
12.1.1
-
APPS.PSB_WS_ACCT2 dependencies on PSB_WS_ACCT1
12.1.1