Search Results oe_wf_line_assign_v
Overview
OE_WF_LINE_ASSIGN_V is an APPS-owned database view within the Oracle Order Management (ONT) module. Its documented purpose is to display workflow assignments for a line transaction type, and it is referenced directly by the Order Management user interface. In practice, the view exposes the mapping between a specific line transaction type and the workflow process that should be initiated for it, joining the workflow assignment records to the descriptive transaction type name so that the UI and downstream processes can present human-readable information rather than raw identifiers.
Because the object is a view rather than a table, it stores no data of its own. It is a read-only projection over two underlying objects and inherits the security and accessibility profile of the APPS schema. This makes it well suited to reporting, reconciliation, and integration scenarios where an external system or concurrent program must determine which workflow process is active for a given order line transaction type during a particular date range.
Underlying Base Objects
The ETRM metadata documents two referenced base objects. The first is OE_WORKFLOW_ASSIGNMENTS, exposed through a synonym, which holds the core assignment records including the order type, line type, process name, and the item type and attribute columns associated with the workflow configuration. The second is OE_TRANSACTION_TYPES_VL, a view that provides the translated, user-facing name of the transaction type.
The view joins these objects on the condition that WF.LINE_TYPE_ID equals VL.TRANSACTION_TYPE_ID, and it explicitly filters to rows where WF.LINE_TYPE_ID IS NOT NULL. Consequently, assignments that are defined without a specific line type are excluded from this view. This join and filter combination is what scopes the view to line-level workflow assignments as opposed to the broader set of assignments that may exist at other levels.
Key Columns
- ASSIGNMENT_ID — the unique identifier for the workflow assignment record.
- ORDER_TYPE_ID — the order type to which the assignment belongs.
- LINE_TYPE_ID — the line transaction type identifier used in the join.
- LINE_TYPE — the descriptive transaction type name sourced from OE_TRANSACTION_TYPES_VL.NAME.
- PROCESS_NAME — the workflow process assigned to the line transaction type.
- START_DATE_ACTIVE / END_DATE_ACTIVE — the effective date range during which the assignment is active.
- ITEM_TYPE_CODE / WF_ITEM_TYPE — the workflow item type associated with the assignment.
- CONTEXT and ATTRIBUTE1 through ATTRIBUTE15 — descriptive flexfield context and attribute values carried through from the assignment record.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, PROGRAM_APPLICATION_ID, PROGRAM_ID, and REQUEST_ID provide standard EBS who-column and concurrent request tracking.
Common Use Cases and Queries
A frequent use case is identifying which workflow process is currently assigned to a given line transaction type, respecting the active date window. A sample query follows:
SELECT assignment_id, line_type_id, line_type, process_name FROM oe_wf_line_assign_v WHERE line_type_id = :p_line_type_id AND TRUNC(SYSDATE) BETWEEN NVL(start_date_active, TRUNC(SYSDATE)) AND NVL(end_date_active, TRUNC(SYSDATE));
Another common scenario is auditing the complete set of configured assignments for reporting purposes, for example listing all active assignments with their process names ordered by transaction type. The view is also useful when troubleshooting why a particular workflow did not launch, since comparing the line type against the assignment records quickly reveals whether an active assignment exists and which process it points to. Given the presence of the ATTRIBUTE1 through ATTRIBUTE15 columns, the view additionally supports queries that inspect flexfield configuration for specific assignments.
-
View: OE_WF_LINE_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_WF_LINE_ASSIGN_V, object_name:OE_WF_LINE_ASSIGN_V, status:VALID, product: ONT - Order Management , description: View to show workflow assignments for a line transaction type and is used by UI. , implementation_dba_data: APPS.OE_WF_LINE_ASSIGN_V ,
-
View: OE_WF_LINE_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_WF_LINE_ASSIGN_V, object_name:OE_WF_LINE_ASSIGN_V, status:VALID, product: ONT - Order Management , description: View to show workflow assignments for a line transaction type and is used by UI. , implementation_dba_data: APPS.OE_WF_LINE_ASSIGN_V ,
-
SYNONYM: APPS.OE_WORKFLOW_ASSIGNMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_WORKFLOW_ASSIGNMENTS, status:VALID,
-
PACKAGE BODY: APPS.ASO_TRADEIN_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_TRADEIN_PVT, status:VALID,
-
PACKAGE BODY: APPS.ASO_TRADEIN_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_TRADEIN_PVT, status:VALID,
-
SYNONYM: APPS.OE_WORKFLOW_ASSIGNMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_WORKFLOW_ASSIGNMENTS, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_RCTLA_TRIGGER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_RCTLA_TRIGGER_PKG, status:VALID,
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_VALIDATE_PVT, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_RCTLA_TRIGGER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_RCTLA_TRIGGER_PKG, status:VALID,
-
PACKAGE BODY: APPS.JAI_AR_IMPORT_POPU_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_AR_IMPORT_POPU_PKG, status:VALID,
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_VALIDATE_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.OE_WF_LINE_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_WF_LINE_ASSIGN_V, object_name:OE_WF_LINE_ASSIGN_V, status:VALID,
-
VIEW: APPS.OE_WF_LINE_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_WF_LINE_ASSIGN_V, object_name:OE_WF_LINE_ASSIGN_V, status:VALID,
-
APPS.ASO_TRADEIN_PVT SQL Statements
12.2.2
-
VIEW: APPS.OE_TRANSACTION_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_VL, object_name:OE_TRANSACTION_TYPES_VL, status:VALID,
-
APPS.ASO_TRADEIN_PVT SQL Statements
12.1.1
-
VIEW: APPS.OE_TRANSACTION_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_VL, object_name:OE_TRANSACTION_TYPES_VL, status:VALID,
-
APPS.JAI_AR_IMPORT_POPU_PKG dependencies on OE_WF_LINE_ASSIGN_V
12.2.2
-
APPS.ASO_VALIDATE_PVT dependencies on OE_WF_LINE_ASSIGN_V
12.1.1
-
APPS.JAI_AR_RCTLA_TRIGGER_PKG dependencies on OE_WF_LINE_ASSIGN_V
12.1.1
-
APPS.ASO_TRADEIN_PVT dependencies on OE_WF_LINE_ASSIGN_V
12.2.2
-
APPS.ASO_VALIDATE_PVT dependencies on OE_WF_LINE_ASSIGN_V
12.2.2
-
APPS.ASO_TRADEIN_PVT dependencies on OE_WF_LINE_ASSIGN_V
12.1.1
-
APPS.JAI_AR_RCTLA_TRIGGER_PKG dependencies on OE_WF_LINE_ASSIGN_V
12.2.2
-
APPS.JAI_AR_IMPORT_POPU_PKG SQL Statements
12.2.2
-
APPS.ASO_VALIDATE_PVT SQL Statements
12.2.2
-
APPS.ASO_VALIDATE_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.ASO_TRADEIN_PVT
12.1.1
-
PACKAGE BODY: APPS.ASO_TRADEIN_PVT
12.2.2
-
APPS.JAI_AR_RCTLA_TRIGGER_PKG SQL Statements
12.2.2
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
APPS.JAI_AR_RCTLA_TRIGGER_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JAI_AR_IMPORT_POPU_PKG
12.2.2
-
PACKAGE BODY: APPS.JAI_AR_RCTLA_TRIGGER_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.JAI_AR_RCTLA_TRIGGER_PKG
12.1.1
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.1.1
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.2.2
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,