Search Results psb_ws_submit_comments
Overview
The PSB_WS_SUBMIT_COMMENTS table belongs to the PSB (Public Sector Budgeting) product family within Oracle E-Business Suite. In the ETRM metadata, PSB is flagged as Obsolete, meaning the product is no longer actively shipped or supported in current EBS releases; the table therefore exists as a legacy artifact retained for historical continuity rather than as an actively populated transactional object. Its stated purpose is to "store comments for review groups sent during the Submit Worksheet process" — that is, user-authored narrative text associated with a budget worksheet at the moment the worksheet is routed into the review and approval cycle.
The physical schema documented for ETRM 12.1.1 shows an owner of PSB and only three columns: OPERATION_ID, WORKSHEET_ID, and COMMENTS. The table is defined by the primary key constraint PSB_WS_SUBMIT_COMMENTS_PK, which enforces uniqueness on OPERATION_ID. The metadata explicitly records that the object is "not implemented in this database," a common ETRM annotation indicating that the table is documented from the data model but absent from the specific database instance being profiled. The heuristic Data Vault classification mined from the FK structure is standalone; from a modeling perspective, this suggests treating the object as a self-contained satellite of worksheet submission activity, keyed by a surrogate operation identifier rather than linked through a formal hub-and-link topology.
Key Information Stored
Because the documented physical schema is deliberately narrow, the significant columns are limited to the following:
- OPERATION_ID — the surrogate primary key and the sole column comprising
PSB_WS_SUBMIT_COMMENTS_PK. It uniquely identifies each stored comment record associated with a submit operation. As no unique business index is documented beyond the PK,OPERATION_IDserves as the only guaranteed identifier. - WORKSHEET_ID — the foreign-key-style reference to the budget worksheet to which the comment applies. This is the principal business-key candidate for retrieval and is the column most likely to be joined against worksheet header tables during reporting.
- COMMENTS — free-form narrative text captured at submit time for the benefit of review groups. It holds the substantive content: reviewer notes, justification, or instructions accompanying the worksheet submission.
No audit columns (created-by, creation-date, last-updated-by) are documented for this object, which is consistent with its narrow purpose as a transient comment repository rather than a fully audited transactional entity.
Common Use Cases and Queries
Typical use of the table centers on reconstructing the narrative history attached to a worksheet submission. Reporting queries would retrieve comments by worksheet or review the text captured under a specific operation:
- Listing all submission comments for a given worksheet:
SELECT OPERATION_ID, WORKSHEET_ID, COMMENTS FROM PSB_WS_SUBMIT_COMMENTS WHERE WORKSHEET_ID = :p_worksheet_id; - Locating a specific comment payload by operation key:
SELECT COMMENTS FROM PSB_WS_SUBMIT_COMMENTS WHERE OPERATION_ID = :p_operation_id; - Audit-style extracts joining submission comments to worksheet headers to determine which review groups received narrative input.
Because the object is obsolete and unpopulated in the profiled database, these patterns are chiefly relevant to historical data migration, archival reporting, or reconciliation during an upgrade from a legacy PSB implementation.
Related Objects
In the absence of a mined FK set, the following relationships are inferred from the documented column semantics and PSB worksheet processing flow:
- PSB_WS_SUBMIT_COMMENTS_PK — the primary key constraint enforcing uniqueness on
OPERATION_ID. - Worksheet master tables referenced by
WORKSHEET_ID— the header entity to which each comment is attached. - Worksheet operation/log tables sharing the
OPERATION_IDkey space — companion records produced by the same submit operation. - Review group definition tables — the recipients of the comments during the Submit Worksheet process described in the object definition.
- PSB worksheet submission APIs — the programmatic entry points that insert rows into this table at submit time.
Analysts should confirm actual join columns against the PSB data model of their specific release, since the available metadata documents only the three columns above and no explicit dependencies.
-
Table: PSB_WS_SUBMIT_COMMENTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , description: Stores comments for review groups sent during Submit Worksheet process , implementation_dba_data: Not implemented in this database ,
-
Table: PSB_WS_SUBMIT_COMMENTS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WS_SUBMIT_COMMENTS, object_name:PSB_WS_SUBMIT_COMMENTS, status:VALID, product: PSB - Public Sector Budgeting , description: Stores comments for review groups sent during Submit Worksheet process , implementation_dba_data: PSB.PSB_WS_SUBMIT_COMMENTS ,
-
SYNONYM: APPS.PSB_WS_SUBMIT_COMMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PSB_WS_SUBMIT_COMMENTS, status:VALID,
-
TABLE: PSB.PSB_WS_SUBMIT_COMMENTS
12.1.1
owner:PSB, object_type:TABLE, fnd_design_data:PSB.PSB_WS_SUBMIT_COMMENTS, object_name:PSB_WS_SUBMIT_COMMENTS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PSB_SUBMIT_REVISION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_SUBMIT_REVISION_PVT, status:VALID,
-
PACKAGE BODY: APPS.PSB_SUBMIT_WORKSHEET_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_SUBMIT_WORKSHEET_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.PSB_WS_OPS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_WS_OPS_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.PSB_BUDGET_REVISIONS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_BUDGET_REVISIONS_PVT, status:VALID,
-
APPS.PSB_SUBMIT_REVISION_PVT SQL Statements
12.1.1
-
APPS.PSB_BUDGET_REVISIONS_PVT dependencies on PSB_WS_SUBMIT_COMMENTS
12.1.1
-
APPS.PSB_SUBMIT_WORKSHEET_PVT dependencies on PSB_WS_SUBMIT_COMMENTS
12.1.1
-
APPS.PSB_SUBMIT_REVISION_PVT dependencies on PSB_WS_SUBMIT_COMMENTS
12.1.1
-
APPS.PSB_WS_OPS_PVT dependencies on PSB_WS_SUBMIT_COMMENTS
12.1.1
-
APPS.PSB_SUBMIT_WORKSHEET_PVT SQL Statements
12.1.1
-
APPS.PSB_WS_OPS_PVT dependencies on PSB_PAY_ELEMENT_RATES
12.1.1
-
APPS.PSB_BUDGET_REVISIONS_PVT dependencies on PSB_POSITION_COSTS
12.1.1
-
APPS.PSB_BUDGET_REVISIONS_PVT dependencies on FND_ATTACHED_DOCUMENTS2_PKG
12.1.1
-
APPS.PSB_WS_OPS_PVT SQL Statements
12.1.1
-
eTRM - PSB Tables and Views
12.1.1
description: User profiles for a worksheet ,
-
APPS.PSB_BUDGET_REVISIONS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PSB_SUBMIT_REVISION_PVT
12.1.1
-
PACKAGE BODY: APPS.PSB_SUBMIT_WORKSHEET_PVT
12.1.1
-
APPS.PSB_WS_OPS_PVT dependencies on PSB_WORKSHEETS
12.1.1
-
PACKAGE BODY: APPS.PSB_WS_OPS_PVT
12.1.1
-
APPS.PSB_SUBMIT_WORKSHEET_PVT dependencies on WF_ENGINE
12.1.1
-
APPS.PSB_SUBMIT_REVISION_PVT dependencies on WF_ENGINE
12.1.1
-
PACKAGE BODY: APPS.PSB_BUDGET_REVISIONS_PVT
12.1.1
-
eTRM - PSB Tables and Views
12.1.1
description: User profiles for a worksheet ,
-
12.1.1 DBA Data
12.1.1