Search Results escalation_status
Overview
The view APPS.IEU_UWQ_ESC_MYOWN_V is a component of the Oracle E-Business Suite Universal Work Queue (UWQ), a module within the Interaction & Escalation (IEU) product family. Its documented purpose is to serve as a data source for the UWQ selector SpreadTable, which presents escalations to agents in a tabular work queue format. The view exposes a business-user-oriented projection of escalation records combined with the object-function metadata required by the UWQ runtime to render and route work items correctly.
In Oracle EBS 12.1.1 and 12.2.2 the object resides in the APPS schema with a status of VALID. Because it presents a denormalised, display-ready row set, it is typically consumed by UWQ selector configuration rather than by direct end-user reporting. Users searching for cust_account_number encounter this view because it projects the CUST_ACCOUNT_NUMBER column, linking each escalation to the customer account associated with the underlying business object. This makes the view a natural retrieval point for escalation-to-customer traceability in service and collections scenarios.
Underlying Base Objects
The documented definition joins JTF_ESC_UWQ_V (alias A) to JTF_OBJECTS_B (alias B), restricted by B.OBJECT_CODE = 'ESC'. JTF_ESC_UWQ_V is itself a UWQ-specific escalation view that supplies the escalation attributes, while JTF_OBJECTS_B supplies the object-function and object-parameter metadata used by the UWQ framework. Both are accessed through synonyms in the APPS schema. The documented base-object lineage also references FND_GLOBAL and JTF_EC_UTIL and JTF_TASK_UTL packages, which support security context and task/escalation utility processing beneath the view stack. Because JTF_ESC_UWQ_V carries the substantive escalation data, the effective row grain of IEU_UWQ_ESC_MYOWN_V is one row per escalation, enriched with object metadata from JTF_OBJECTS_B.
Key Columns
ESCALATION_ID,ESCALATION_NUMBER,ESCALATION_NAME,ESCALATION_STATUS— core escalation identifiers and lifecycle state.CUST_ACCOUNT_NUMBER,CUSTOMER_NAME— customer account and party name associated with the escalation; the column surfaced when users search oncust_account_number.OWNER_TYPE_CODE,OWNER_ID,OWNER— the current assignee of the escalation.OPEN_DATE,TARGET_DATE— creation and due dates used for ageing and SLA reporting.ESCALATION_LEVEL,ESCALATION_LEVEL_NAME,REQUESTER_NAME— escalation severity and originator detail.IEU_OBJECT_FUNCTION,IEU_OBJECT_PARAMETERS,IEU_PARAM_PK_COL,IEU_PARAM_PK_VALUE— UWQ navigation metadata; the primary key column is hard-coded toESCALATION_IDand its value is derived viaTO_CHAR.OBJECT_NAME,OBJECT_CODE,REF_DOC_ID,REF_DOC_NUMBER— the referenced business object and source document.
Common Use Cases and Queries
Typical usage includes locating an escalation by customer account, producing work-queue extracts for an owning resource, and monitoring open escalations against target dates. The following sample retrieves open escalations for a specific customer account:
SELECT escalation_number, escalation_name, cust_account_number, owner, target_date FROM apps.ieu_uwq_esc_myown_v WHERE cust_account_number = :p_account AND escalation_status = 'OPEN' ORDER BY target_date;SELECT escalation_id, escalation_name, cust_account_number, escalation_level_name, owner FROM apps.ieu_uwq_esc_myown_v WHERE owner_id = :p_resource_id;- Ageing extract:
SELECT cust_account_number, TRUNC(SYSDATE) - TRUNC(open_date) age_days, escalation_status FROM apps.ieu_uwq_esc_myown_v WHERE escalation_status NOT IN ('CLOSED','CANCELLED');
Because the view is subject to UWQ security and join semantics rather than being a pure reporting object, it should be queried with appropriate bind filters and, where volume is significant, restricted by owner or status to avoid full scans against the underlying escalation views.
-
View: IEU_UWQ_ESC_MYOWN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_ESC_MYOWN_V, object_name:IEU_UWQ_ESC_MYOWN_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_ESC_MYOWN_V ,
-
View: IEU_UWQ_ESC_MYOWN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_ESC_MYOWN_V, object_name:IEU_UWQ_ESC_MYOWN_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_ESC_MYOWN_V ,
-
VIEW: APPS.IEU_UWQ_ESC_MYOWN_V
12.2.2
-
VIEW: APPS.IEU_UWQ_ESC_MYOWN_V
12.1.1
-
VIEW: APPS.JTF_ESC_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_ESC_UWQ_V, object_name:JTF_ESC_UWQ_V, status:VALID,
-
VIEW: APPS.JTF_ESC_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_ESC_UWQ_V, object_name:JTF_ESC_UWQ_V, status:VALID,
-
VIEW: APPS.IEU_UWQ_ESC_MYOWN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_ESC_MYOWN_V, object_name:IEU_UWQ_ESC_MYOWN_V, status:VALID,
-
VIEW: APPS.IEU_UWQ_ESC_MYOWN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_ESC_MYOWN_V, object_name:IEU_UWQ_ESC_MYOWN_V, status:VALID,
-
View: JTF_ESC_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_ESC_UWQ_V, object_name:JTF_ESC_UWQ_V, status:VALID, product: JTF - CRM Foundation , description: This view contains escalation details to be displayed in Universal Work Queue. , implementation_dba_data: APPS.JTF_ESC_UWQ_V ,
-
View: JTF_ESC_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_ESC_UWQ_V, object_name:JTF_ESC_UWQ_V, status:VALID, product: JTF - CRM Foundation , description: This view contains escalation details to be displayed in Universal Work Queue. , implementation_dba_data: APPS.JTF_ESC_UWQ_V ,
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,