Search Results date_submitted
Overview
APPS.PSB_WS_FOLDER_V is a supplementary Oracle E-Business Suite view owned by the APPS schema and registered in FND Design Data as PSB.PSB_WS_FOLDER_V. In ETRM (Enterprise Treasury/Public Sector Budgeting) terminology, it presents a consolidated listing of budget worksheets organized within budget groups, exposed in a flat, denormalized form intended to simplify forms coding. The view is flagged as VALID and is classified as a supplementary view whose primary purpose is to reduce the complexity of form-based queries. Oracle explicitly cautions that this view is not a supported integration or reporting interface: the documentation states that querying or altering data through it is not recommended, and that its definition may change dramatically in subsequent minor or major releases.
The view is relevant to the search term date_submitted, which appears as the DATE_SUBMITTED column. This makes PSB_WS_FOLDER_V a convenient source for identifying when a budget worksheet was submitted, together with the submitting user, within the broader context of worksheet staging and budget group structure.
Underlying Base Objects
The documented dependency list identifies the base objects referenced by the view: PSB_WORKSHEETS, PSB_BUDGET_GROUPS, PSB_BUDGET_STAGES, PSB_DATA_EXTRACTS, and FND_USER. These tables supply the worksheet, budget group, stage, data extract, and user information surfaced by the view. The view is documented as not being referenced by any other database object, meaning it functions as a terminal, form-facing presentation layer rather than a shared dependency.
Because it joins the worksheets table with budget groups, stages, and data extracts, the view effectively denormalizes several parent-child relationships into a single row per worksheet folder entry, including derived descriptive columns such as names for groups, stages, extracts, and submitting users.
Key Columns
- BUDGET_GROUP_ID and BUDGET_GROUP_SHORT_NAME — identifiers and short labels for the budget group to which the worksheet belongs.
- WORKSHEET_ID, WORKSHEET_NAME, WORKSHEET_TYPE — primary worksheet identifiers and classification.
- BUDGET_BY_POSITION — indicates whether budgeting is performed by position.
- CURRENT_STAGE_SEQ, CURRENT_STAGE_NAME, STAGE_SET_ID — the worksheet's current position within its stage set and the associated stage definition.
- DATA_EXTRACT_ID and DATA_EXTRACT_NAME — the data extract linked to the worksheet.
- GLOBAL_WORKSHEET_ID, GLOBAL_WORKSHEET_NAME, GLOBAL_WORKSHEET_OPTION, GLOBAL_WORKSHEET_FLAG — global worksheet context and options.
- LOCAL_COPY_FLAG, FREEZE_FLAG, SUBMITTED_FLAG — status indicators for copies, freezing, and submission.
- SUBMITTED_BY, SUBMITTED_BY_NAME, DATE_SUBMITTED — the submitting user identifier, display name, and submission timestamp. DATE_SUBMITTED is the column most directly associated with the search term.
- CREATED_BY and CREATION_DATE — audit columns recording row creation.
- FEDERAL_WS_FLAG — federal worksheet indicator.
Common Use Cases and Queries
A typical use is locating worksheets by submission date, or confirming which user submitted a worksheet and when.
SELECT WORKSHEET_ID,
WORKSHEET_NAME,
BUDGET_GROUP_SHORT_NAME,
SUBMITTED_BY_NAME,
DATE_SUBMITTED,
SUBMITTED_FLAG
FROM APPS.PSB_WS_FOLDER_V
WHERE DATE_SUBMITTED IS NOT NULL
ORDER BY DATE_SUBMITTED DESC;
A second scenario filters worksheets by current stage and freeze status, useful for operational monitoring:
SELECT WORKSHEET_NAME,
CURRENT_STAGE_NAME,
FREEZE_FLAG,
GLOBAL_WORKSHEET_FLAG
FROM APPS.PSB_WS_FOLDER_V
WHERE CURRENT_STAGE_NAME = '&stage_name';
Despite its convenience, all access should respect the documented warning: treat this object as an internal forms-support view, avoid persisting dependencies on it, and prefer supported APIs or base tables for production reporting and integration work.
-
VIEW: APPS.PSB_WS_FOLDER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WS_FOLDER_V, object_name:PSB_WS_FOLDER_V, status:VALID,
-
TABLE: IGW.IGW_PROP_CHECKLIST
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_PROP_CHECKLIST, object_name:IGW_PROP_CHECKLIST, status:VALID,
-
VIEW: APPS.PSB_WS_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WS_SUMMARY_V, object_name:PSB_WS_SUMMARY_V, status:VALID,
-
View: PSB_WS_FOLDER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WS_FOLDER_V, object_name:PSB_WS_FOLDER_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_WS_FOLDER_V ,
-
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: PSB_WS_FOLDER_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSBBV_BUDGET_WORKSHEETS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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: PSB_WS_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WS_SUMMARY_V, object_name:PSB_WS_SUMMARY_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_WS_SUMMARY_V ,
-
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: PSB_WS_SUMMARY_V
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.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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.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 ,
-
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
-
PACKAGE BODY: APPS.GHR_EEOC_DYNAMICS_REPORT
12.2.2
-
PACKAGE BODY: APPS.IGS_AS_GRD_ATT_BE_PKG
12.1.1
-
PACKAGE BODY: APPS.GHR_EEOC_STATUS_REPORT
12.2.2
-
PACKAGE BODY: APPS.PSB_WORKSHEET
12.1.1
-
APPS.IGS_AS_GRD_ATT_BE_PKG dependencies on WF_EVENT
12.1.1
-
eTRM - PSB Tables and Views
12.1.1
description: User profiles for a worksheet ,
-
APPS.PSB_WORKSHEET dependencies on FND_API
12.1.1
-
eTRM - IGW Tables and Views
12.1.1
description: Information on proposal subjects ,