Search Results wip_entity_comments_v
Overview
WIP_ENTITY_COMMENTS_V is an APPS-owned view in the Work in Process (WIP) module of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. It exposes attachments that have been associated with WIP entities — discrete jobs and repetitive schedules — by joining Oracle's generic attachment framework (FND) to the Work in Process execution model. The view returns one row per attached document, carrying the WIP entity identifier, the owning organization, the attachment description, and the standard FND descriptive flexfield (DFF) attribute columns and audit fields.
Its primary role is to make WIP shop-floor attachments queryable in a denormalized, WIP-centric form. Because attachments in EBS are stored generically in FND_ATTACHED_DOCUMENTS using a polymorphic entity/PK model, consumers cannot easily determine which job or schedule an attachment belongs to without decoding the key segments. This view performs that decoding and filters to a single document category, WIP_ENTITY_ATTACHMENTS, so that only WIP execution attachments are returned. It is used for reporting, data migration, and integration extracts rather than for transaction entry.
Underlying Base Objects
The view is defined over three referenced objects:
FND_ATTACHED_DOCUMENTS(SYNONYM) — the association table linking a document to a business entity. The view readsENTITY_NAME,PK1_VALUE,PK2_VALUE,PK3_VALUE,DOCUMENT_ID, and the audit/DFF columns.FND_DOCUMENTS_VL(VIEW) — the document definition, joined onDOCUMENT_ID, supplyingDESCRIPTION(aliased asCOMMENT_CODE) andCATEGORY_ID.FND_DOCUMENT_CATEGORIES_VL(VIEW) — the category definition, joined onCATEGORY_ID, used to restrict results toNAME = 'WIP_ENTITY_ATTACHMENTS'.
Joins are mandatory (comma-style inner joins), so only attached documents with a resolvable document and category row are returned. In the documented metadata, FND_ATTACHED_DOCUMENTS appears as a synonym, while the two FND objects are views; no WIP base table is directly referenced, which confirms that the source of truth for these comments is the FND attachment layer keyed by WIP entity name.
Key Columns
WIP_ENTITY_ID— derived asTO_NUMBER(FAD.PK1_VALUE); the WIP entity (discrete job or repetitive schedule) identifier.ORGANIZATION_ID— resolved fromPK3_VALUEforWIP_REPETITIVE_SCHEDULESandPK2_VALUEforWIP_DISCRETE_JOBS.COMMENT_CODE— the attachment description fromFND_DOCUMENTS_VL.DESCRIPTION; this is the column users commonly target when searching for "comment_code".REPETITIVE_SCHEDULE_ID— populated fromPK2_VALUEonly for repetitive schedules; NULL for discrete jobs.- Audit and DFF columns —
LAST_UPDATE_DATE,LAST_UPDATED_BY,CREATION_DATE,CREATED_BY,LAST_UPDATE_LOGIN,ATTRIBUTE_CATEGORY, andATTRIBUTE1throughATTRIBUTE15. APP_SOURCE_VERSION— always NULL in this definition, retained for interface consistency.
Common Use Cases and Queries
Typical scenarios include listing all attachments for a discrete job, auditing attachments by organization, and extracting comment text for integrations or migrations. The COMMENT_CODE column is frequently referenced because it holds the human-readable attachment description.
Attachments for a specific discrete job:
SELECT wip_entity_id, organization_id, comment_code, creation_date FROM apps.wip_entity_comments_v WHERE wip_entity_id = :job_id AND repetitive_schedule_id IS NULL;
All WIP attachments within an organization:
SELECT wip_entity_id, comment_code FROM apps.wip_entity_comments_v WHERE organization_id = :org_id ORDER BY creation_date DESC;
Searching by comment text:
SELECT wip_entity_id, organization_id, comment_code FROM apps.wip_entity_comments_v WHERE comment_code LIKE '%HOLD%';
Because the view is read-only and built on FND attachment objects, queries should be run with APPS or a reporting responsibility, and DFF columns returned should be interpreted according to the WIP_ENTITY_ATTACHMENTS category's flexfield setup.
-
View: WIP_ENTITY_COMMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ENTITY_COMMENTS_V, object_name:WIP_ENTITY_COMMENTS_V, status:VALID, product: WIP - Work in Process , description: Attachments to WIP entities , implementation_dba_data: APPS.WIP_ENTITY_COMMENTS_V ,
-
View: WIP_ENTITY_COMMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ENTITY_COMMENTS_V, object_name:WIP_ENTITY_COMMENTS_V, status:VALID, product: WIP - Work in Process , description: Attachments to WIP entities , implementation_dba_data: APPS.WIP_ENTITY_COMMENTS_V ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.WIP_ENTITY_COMMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ENTITY_COMMENTS_V, object_name:WIP_ENTITY_COMMENTS_V, status:VALID,
-
VIEW: APPS.WIP_ENTITY_COMMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ENTITY_COMMENTS_V, object_name:WIP_ENTITY_COMMENTS_V, status:VALID,
-
VIEW: APPS.FND_DOCUMENT_CATEGORIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_DOCUMENT_CATEGORIES_VL, object_name:FND_DOCUMENT_CATEGORIES_VL, status:VALID,
-
VIEW: APPS.FND_DOCUMENT_CATEGORIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_DOCUMENT_CATEGORIES_VL, object_name:FND_DOCUMENT_CATEGORIES_VL, status:VALID,
-
VIEW: APPS.FND_DOCUMENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_DOCUMENTS_VL, object_name:FND_DOCUMENTS_VL, status:VALID,
-
SYNONYM: APPS.FND_ATTACHED_DOCUMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_ATTACHED_DOCUMENTS, status:VALID,
-
SYNONYM: APPS.FND_ATTACHED_DOCUMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_ATTACHED_DOCUMENTS, status:VALID,
-
VIEW: APPS.FND_DOCUMENTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_DOCUMENTS_VL, object_name:FND_DOCUMENTS_VL, status:VALID,
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - WIP Tables and Views
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - WIP Tables and Views
12.2.2
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,