Search Results ieu_action_object_code
Overview
IEU_UWQ_TASKS_V is a reporting and integration view owned by the APPS schema within the IEU (Universal Work Queue) product family. Its documented purpose is to serve the UWQ selector SpreadTable, the tabular component that renders task records in the Universal Work Queue agent interface. The view is delivered with a status of VALID in Oracle EBS 12.1.1 and 12.2.2.
Functionally, the view flattens and decorates task information sourced from the underlying UWQ task view so that it can be consumed directly by the UWQ presentation layer and by any custom reporting or integration that needs a queue-ready projection of tasks. It appends selector-oriented metadata—object function, object parameters, primary key column and value identifiers, media type, and action object code—alongside the standard task attributes such as task number, status, priority, dates, owner, and customer details. Because it exposes SOURCE_OBJECT_TYPE and SOURCE_OBJECT_TYPE_CODE, it is particularly relevant to integrations that must resolve the business object a task is anchored to, for example a service request, a lead, or a campaign.
Underlying Base Objects
The documented base objects referenced by IEU_UWQ_TASKS_V are:
- JTF_TASK_UWQ_V (VIEW) — the primary task source, aliased as A in the view text. All task columns, including SOURCE_OBJECT_TYPE_CODE, are projected from this view.
- FND_LOOKUP_VALUES_VL (VIEW) — joined to translate the OWNED_FLAG into a display label. The join is constrained to LOOKUP_TYPE = 'IEU_NODE_LABELS' and VIEW_APPLICATION_ID = 696, with LOOKUP_CODE = A.OWNED_FLAG.
- JTF_TASK_UTL (PACKAGE) — the task utility package that underlies the UWQ task view and supplies supporting task logic.
The definition is therefore a two-view join: a broad projection of JTF_TASK_UWQ_V enriched by a single lookup-derived label column, OWN_ASSIGN_LABEL.
Key Columns
- IEU_OBJECT_FUNCTION, IEU_OBJECT_PARAMETERS — selector metadata copied from the source view, driving SpreadTable action behaviour.
- IEU_PARAM_PK_COL, IEU_PARAM_PK_VALUE — the primary key column name ('SOURCE_OBJECT_ID') and its character-converted value, used to identify the selected row.
- IEU_ACTION_OBJECT_CODE — aliased from A.SOURCE_OBJECT_TYPE_CODE, identifying the object type acted upon by the selector.
- SOURCE_OBJECT_TYPE, SOURCE_OBJECT_TYPE_CODE, SOURCE_OBJECT_ID — the type and identifier of the business object to which the task relates.
- TASK_ID, TASK_NUMBER, TASK_NAME, TASK_TYPE, TASK_STATUS, TASK_PRIORITY — core task identity and classification attributes.
- PLANNED_START_DATE, PLANNED_END_DATE, SCHEDULED_START_DATE, SCHEDULED_END_DATE, ACTUAL_START_DATE, ACTUAL_END_DATE — the task's planned, scheduled, and actual date envelope.
- OWNER_ID, OWNER_TYPE_CODE, OWNER, OWNED_FLAG, OWN_ASSIGN_LABEL, ASSIGNEE_ROLE — ownership and assignment attributes; OWN_ASSIGN_LABEL is the lookup-derived display value.
- CUSTOMER_NAME, CUST_ACCOUNT_NUMBER, ESCALATION_LEVEL, ESCALATION_OWNER, DURATION, DURATION_UOM, CLOSED_FLAG — customer, escalation, and closure context.
- GLOBAL_TIMEZONE_NAME, GMT_DEVIATION_HOURS — timezone normalisation for date display.
Common Use Cases and Queries
Typical scenarios include building custom UWQ-style task listings, extracting queue metrics by object type, and integrating task data into external dashboards. A representative query filters open tasks by source object type code:
SELECT TASK_ID, TASK_NUMBER, TASK_NAME, TASK_STATUS, SOURCE_OBJECT_TYPE, SOURCE_OBJECT_TYPE_CODE, SOURCE_OBJECT_ID, OWNER, OWN_ASSIGN_LABEL FROM APPS.IEU_UWQ_TASKS_V WHERE CLOSED_FLAG = 'N' AND SOURCE_OBJECT_TYPE_CODE = :p_code;SELECT SOURCE_OBJECT_TYPE_CODE, COUNT(*) FROM APPS.IEU_UWQ_TASKS_V GROUP BY SOURCE_OBJECT_TYPE_CODE;SELECT TASK_NUMBER, OWNER, OWN_ASSIGN_LABEL, CUSTOMER_NAME, PLANNED_END_DATE FROM APPS.IEU_UWQ_TASKS_V WHERE OWNED_FLAG = 'Y' ORDER BY PLANNED_END_DATE;
Because the view is a selector artefact and provides no row-level security of its own, callers should apply the appropriate organisation and responsibility filters required by their integration.
-
View: IEU_UWQ_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_V, object_name:IEU_UWQ_TASKS_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_TASKS_V ,
-
View: IEU_UWQ_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_V, object_name:IEU_UWQ_TASKS_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_TASKS_V ,
-
View: IEU_UWQM_WORKLIST_V
12.1.1
product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: Not implemented in this database ,
-
View: IEU_UWQ_TASKS_GA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_GA_V, object_name:IEU_UWQ_TASKS_GA_V, status:VALID, product: IEU - Universal Work Queue , description: This view contains details of Group Assigned tasks. , implementation_dba_data: APPS.IEU_UWQ_TASKS_GA_V ,
-
View: IEU_UWQ_TASKS_GO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_GO_V, object_name:IEU_UWQ_TASKS_GO_V, status:VALID, product: IEU - Universal Work Queue , description: This view contains details of Groupl Owned tasks. , implementation_dba_data: APPS.IEU_UWQ_TASKS_GO_V ,
-
View: IEU_UWQ_TASKS_IA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_IA_V, object_name:IEU_UWQ_TASKS_IA_V, status:VALID, product: IEU - Universal Work Queue , description: This view contains details of Individual Assigned tasks. , implementation_dba_data: APPS.IEU_UWQ_TASKS_IA_V ,
-
View: IEU_UWQ_TASKS_GO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_GO_V, object_name:IEU_UWQ_TASKS_GO_V, status:VALID, product: IEU - Universal Work Queue , description: This view contains details of Groupl Owned tasks. , implementation_dba_data: APPS.IEU_UWQ_TASKS_GO_V ,
-
View: IEU_UWQ_TASKS_GA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_GA_V, object_name:IEU_UWQ_TASKS_GA_V, status:VALID, product: IEU - Universal Work Queue , description: This view contains details of Group Assigned tasks. , implementation_dba_data: APPS.IEU_UWQ_TASKS_GA_V ,
-
View: IEU_UWQ_TASKS_TA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_TA_V, object_name:IEU_UWQ_TASKS_TA_V, status:VALID, product: IEU - Universal Work Queue , description: This View contains details of Team Assigned Tasks , implementation_dba_data: APPS.IEU_UWQ_TASKS_TA_V ,
-
View: IEU_UWQ_TASKS_IO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_IO_V, object_name:IEU_UWQ_TASKS_IO_V, status:VALID, product: IEU - Universal Work Queue , description: This view contains details of Individual Owned tasks. , implementation_dba_data: APPS.IEU_UWQ_TASKS_IO_V ,
-
View: IEU_UWQM_WORKLIST_V
12.2.2
product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: Not implemented in this database ,
-
View: IEU_UWQ_TASKS_TA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_TA_V, object_name:IEU_UWQ_TASKS_TA_V, status:VALID, product: IEU - Universal Work Queue , description: This View contains details of Team Assigned Tasks , implementation_dba_data: APPS.IEU_UWQ_TASKS_TA_V ,
-
View: IEU_UWQ_TASKS_TO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_TO_V, object_name:IEU_UWQ_TASKS_TO_V, status:VALID, product: IEU - Universal Work Queue , description: Display details for Team Owned Tasks , implementation_dba_data: APPS.IEU_UWQ_TASKS_TO_V ,
-
View: IEU_UWQ_TASKS_IO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_IO_V, object_name:IEU_UWQ_TASKS_IO_V, status:VALID, product: IEU - Universal Work Queue , description: This view contains details of Individual Owned tasks. , implementation_dba_data: APPS.IEU_UWQ_TASKS_IO_V ,
-
View: IEU_UWQ_TASKS_TO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_TO_V, object_name:IEU_UWQ_TASKS_TO_V, status:VALID, product: IEU - Universal Work Queue , description: Display details for Team Owned Tasks , implementation_dba_data: APPS.IEU_UWQ_TASKS_TO_V ,
-
View: IEU_UWQ_TASKS_IA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_IA_V, object_name:IEU_UWQ_TASKS_IA_V, status:VALID, product: IEU - Universal Work Queue , description: This view contains details of Individual Assigned tasks. , implementation_dba_data: APPS.IEU_UWQ_TASKS_IA_V ,
-
View: IEU_UWQ_TASKS_MYOWN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_MYOWN_V, object_name:IEU_UWQ_TASKS_MYOWN_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_TASKS_MYOWN_V ,
-
View: IEU_UWQ_TASKS_MYOWN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_MYOWN_V, object_name:IEU_UWQ_TASKS_MYOWN_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_TASKS_MYOWN_V ,