Search Results eng_list
Overview
APPS.WF_ENG_LIST_ROLES is a reporting view in the Oracle E-Business Suite that exposes Engineering Change Order (ECO) approval list definitions in a format compatible with the Oracle Workflow directory services model. The view name suggests a mapping between Workflow role/approver resolution and the Engineering Change Management approval lists stored in ENG_ECN_APPROVAL_LISTS. Rather than functioning as a transactional entity, it acts as an integration and reporting surface, allowing the Workflow engine — or custom reporting code — to enumerate the approval lists defined for engineering changes as though they were directory roles.
The view is owned by APPS and is available in both EBS 12.1.1 and 12.2.2. Its defining query returns a single row per engineering approval list, projecting list identity, description, and a set of literal and NULL placeholders that conform to the column shape expected by the Workflow directory/role-listing interface. This design makes it a bridge between the Engineering module's approval configuration and Workflow's role resolution facility.
Underlying Base Objects
The metadata documents exactly one referenced base object: the synonym ENG_ECN_APPROVAL_LISTS, which resolves to the Engineering Change Management approval list table owned by the Engineering schema. The view is defined with a simple, non-joining SELECT — there are no outer joins, aggregations, or additional lookups in the documented view text. Consequently, the relationship is strictly one-to-one: every row in ENG_ECN_APPROVAL_LISTS produces exactly one row in WF_ENG_LIST_ROLES.
Because the dependency is limited to a single table, the view is lightweight and its performance characteristics are governed almost entirely by the selectivity of the underlying approval list table, which is typically small to moderate in volume.
Key Columns
- Role identifier (column 1): A concatenation of the literal
'ENG_LIST', a colon, andapproval_list_id. This produces a namespaced key such asENG_LIST:1234that uniquely identifies the approval list within the Workflow role namespace and separates engineering lists from other role sources. - Name (column 2):
approval_list_namefrom the base table — the display name of the approval list. - Description (column 3):
descriptionfrom the base table — optional descriptive text for the list. - Type discriminator (column 4): The literal
'QUERY', indicating the role resolution mechanism is query-based rather than explicitly enumerated. - Null placeholders (columns 5–8): Returned as NULL, occupying positional slots required by the consuming Workflow interface.
- Source tag (column 9): The literal
'ENG_LIST', echoing the source system classification. - Identifier (column 10):
approval_list_id, the numeric primary key of the underlying list. - Date and status columns (columns 11–14): Date values are returned as NULL via
TO_DATE(NULL), and the status column carries the literal'ACTIVE', marking every list as available for use. - Flag and ordinal columns (columns 15–16): A literal
'N'and a constant7, which serve as interface control values and sort/type ordinals respectively.
Common Use Cases and Queries
Typical applications include validating approval list availability before submitting an ECO, driving reports of configured engineering approvers, and supporting Workflow integrations that need to present engineering lists as resolvable roles.
- List all active engineering approval lists:
SELECT role_id, name FROM apps.wf_eng_list_roles ORDER BY name; - Retrieve a specific list by its key or identifier:
SELECT * FROM apps.wf_eng_list_roles WHERE role_id = 'ENG_LIST:1234';orWHERE approval_list_id = 1234; - Search by name fragment for reporting:
SELECT approval_list_id, name, description FROM apps.wf_eng_list_roles WHERE UPPER(name) LIKE '%CHANGE%';
Because the view performs no joins, these queries execute efficiently and can be embedded safely in concurrent programs, BI Publisher data models, and custom Workflow role-resolution routines.
-
VIEW: APPS.WF_ENG_LIST_ROLES
12.1.1
-
VIEW: APPS.WF_ENG_LIST_UR
12.1.1
-
VIEW: APPS.ENG_LIST_ROLES_V
12.1.1
-
VIEW: APPS.ENG_LIST_ROLES_V
12.2.2
-
View: WF_ENG_LIST_UR
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ENG_LIST_UR, object_name:WF_ENG_LIST_UR, status:VALID, product: FND - Application Object Library , description: Bulk Sync Directory Service User Role View for Role Orig System ENG_LIST , implementation_dba_data: APPS.WF_ENG_LIST_UR ,
-
VIEW: APPS.WF_ENG_LIST_ROLES
12.2.2
-
View: WF_ENG_LIST_ROLES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ENG_LIST_ROLES, object_name:WF_ENG_LIST_ROLES, status:VALID, product: FND - Application Object Library , description: Bulk Sync Directory Service Role View for Orig System ENG_LIST , implementation_dba_data: APPS.WF_ENG_LIST_ROLES ,
-
View: WF_ENG_LIST_ROLES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ENG_LIST_ROLES, object_name:WF_ENG_LIST_ROLES, status:VALID, product: FND - Application Object Library , description: Bulk Sync Directory Service Role View for Orig System ENG_LIST , implementation_dba_data: APPS.WF_ENG_LIST_ROLES ,
-
VIEW: APPS.WF_ENG_LIST_UR
12.2.2
-
View: WF_ENG_LIST_UR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ENG_LIST_UR, object_name:WF_ENG_LIST_UR, status:VALID, product: FND - Application Object Library , description: Bulk Sync Directory Service User Role View for Role Orig System ENG_LIST , implementation_dba_data: APPS.WF_ENG_LIST_UR ,
-
APPS.WFA_HTML_JSP SQL Statements
12.1.1
-
APPS.PO_NOTIFICATIONS_SV3 SQL Statements
12.1.1
-
APPS.WFA_HTML_JSP SQL Statements
12.2.2
-
View: WF_ROLES_OLD
12.1.1
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
APPS.ENG_ECN_APPROVAL_LISTS_PKG SQL Statements
12.2.2
-
APPS.PO_NOTIFICATIONS_SV3 SQL Statements
12.2.2
-
View: WF_ROLES_OLD
12.2.2
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
APPS.ENG_ECN_APPROVAL_LISTS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.ENG_ECN_APPROVERS_PKG
12.1.1
-
Lookup Type: FND_WF_ORIG_SYSTEMS
12.1.1
product: FND - Application Object Library , meaning: FND WF ORIG SYSTEMS , description: Valid Workflow Origination Systems ,
-
PACKAGE BODY: APPS.ENG_ECN_APPROVERS_PKG
12.2.2
-
PACKAGE BODY: APPS.ENG_ECN_APPROVAL_LISTS_PKG
12.1.1
-
Lookup Type: FND_WF_ORIG_SYSTEMS
12.2.2
product: FND - Application Object Library , meaning: FND WF ORIG SYSTEMS , description: Valid Workflow Origination Systems ,
-
APPS.POR_NOTIFICATION_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.ENG_ECN_APPROVAL_LISTS_PKG
12.2.2
-
APPS.WF_DIRECTORY_PART_UTIL SQL Statements
12.2.2
-
APPS.POR_NOTIFICATION_PKG SQL Statements
12.1.1
-
APPS.WF_DIRECTORY_PART_UTIL SQL Statements
12.1.1
-
View: WF_USER_ROLES_OLD
12.2.2
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WF_ENG_LIST_UR
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ENG_LIST_UR, object_name:WF_ENG_LIST_UR, status:VALID,
-
VIEW: APPS.WF_ENG_LIST_ROLES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ENG_LIST_ROLES, object_name:WF_ENG_LIST_ROLES, status:VALID,
-
PACKAGE BODY: APPS.WFA_HTML_JSP
12.2.2
-
PACKAGE BODY: APPS.WFA_HTML_JSP
12.1.1
-
VIEW: APPS.WF_ENG_LIST_UR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ENG_LIST_UR, object_name:WF_ENG_LIST_UR, status:VALID,
-
APPS.PO_SECURITY_CHECK_SV SQL Statements
12.2.2
-
View: WF_USER_ROLES_OLD
12.1.1
product: FND - Application Object Library , implementation_dba_data: Not implemented in this database ,
-
APPS.WFA_HTML SQL Statements
12.2.2
-
TABLE PARTITION: APPLSYS.WF_LOCAL_USER_ROLES
12.2.2
owner:APPLSYS, object_type:TABLE PARTITION, object_name:WF_LOCAL_USER_ROLES, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_USER_ROLE_ASSIGNMENTS_N1
12.2.2
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_USER_ROLE_ASSIGNMENTS_N1, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
TABLE PARTITION: APPLSYS.WF_USER_ROLE_ASSIGNMENTS
12.2.2
owner:APPLSYS, object_type:TABLE PARTITION, object_name:WF_USER_ROLE_ASSIGNMENTS, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
TABLE PARTITION: APPLSYS.WF_LOCAL_ROLES
12.1.1
owner:APPLSYS, object_type:TABLE PARTITION, object_name:WF_LOCAL_ROLES, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_USER_ROLE_ASSIGNMENTS_N2
12.2.2
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_USER_ROLE_ASSIGNMENTS_N2, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_LOCAL_USER_ROLES_N4
12.1.1
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_USER_ROLES_N4, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_LOCAL_ROLES_N2
12.1.1
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_ROLES_N2, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_LOCAL_ROLES_N5
12.1.1
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_ROLES_N5, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_LOCAL_USER_ROLES_N7
12.2.2
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_USER_ROLES_N7, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_USER_ROLE_ASSIGNMENTS_N4
12.2.2
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_USER_ROLE_ASSIGNMENTS_N4, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_USER_ROLE_ASSIGNMENTS_N3
12.2.2
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_USER_ROLE_ASSIGNMENTS_N3, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_LOCAL_ROLES_TL_F1
12.1.1
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_ROLES_TL_F1, subobject_name:WF_LOCAL_ROLES, status:VALID,
-
INDEX PARTITION: APPLSYS.WF_LOCAL_USER_ROLES_N6
12.1.1
owner:APPLSYS, object_type:INDEX PARTITION, object_name:WF_LOCAL_USER_ROLES_N6, subobject_name:WF_LOCAL_ROLES, status:VALID,