Search Results isui_pk
Overview
The IEX.IEX_STRATEGY_USER_ITEMS table is a Collections (IEX) module object in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores custom work item templates that have been added to a particular strategy defined in IEX_STRATEGIES. In the Advanced Collections workflow model, a strategy is an ordered sequence of collection actions; templates define the individual work items that drive those actions. While Oracle ships seeded work item templates, the IEX_STRATEGY_USER_ITEMS table records the user-defined or custom templates that a collector or administrator associates with a strategy, together with ordering information, execution wait and escalation rules, and optional notification behavior.
The table is owned by the IEX schema, has a status of VALID, and is documented in ETRM 12.2.2 with 31 columns. The primary key constraint is ISUI_PK on STRATEGY_USER_ITEM_ID, mirrored by the unique index IEX_STRATEGY_USER_ITEMS_U1 on the same column. The metadata classifies the object as standalone under the heuristic Data Vault classification, meaning it is best modeled as its own hub-like entity rather than as a dependent satellite or link. In practice this reflects that the table is an independently keyed configuration entity keyed by a surrogate ID, with foreign key references outward rather than a strict parent/child dependency chain within IEX.
Key Information Stored
The most business-relevant columns fall into several functional groups:
- Identity:
STRATEGY_USER_ITEM_IDis the surrogate primary key and unique-index column.STRATEGY_IDidentifies the parent strategy, andWORK_ITEM_TEMP_IDidentifies the underlying work item template being added.STRATEGY_TEMPLATE_IDassociates the record with a strategy template context. - Sequencing:
WORK_ITEM_ORDERcontrols the position of the item within the strategy's ordered execution flow. - Execution timing:
PRE_EXECUTION_WAIT,PRE_EXECUTION_TIME_UOM,POST_EXECUTION_WAIT, andEXECUTION_TIME_UOMdefine delays before and after the item runs and their units of measure. - Optional handling:
OPTIONAL_YN,OPTIONAL_WAIT_TIME, andOPTIONAL_WAIT_TIME_UOMgovern items that may be skipped or conditionally delayed. - Escalation and notification:
NOTIFY_YN,ESCALATE_YN,ESCALATE_WAIT_TIME, andESCALATE_WAIT_TIME_UOMdetermine whether the item generates notifications and whether it escalates after a defined interval. - Resource and workflow:
RESOURCE_ID,CUSTOM_WORKFLOW_TYPE, andXDO_TEMP_IDtie the item to a resource, a custom workflow type, and an XML Publisher (XDO) template. - Audit and concurrency: the standard
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN,OBJECT_VERSION_NUMBER, and thePROGRAM_*/REQUEST_IDcolumns support auditing and the concurrent request that touched the row.
The business-key candidate is STRATEGY_USER_ITEM_ID, established by the unique index IEX_STRATEGY_USER_ITEMS_U1. The table also carries SECURITY_GROUP_ID, which references FND_SECURITY_GROUPS and supports multi-org or security-group partitioning.
Common Use Cases and Queries
Typical uses include reviewing which custom items are attached to a strategy, validating ordering and timing configuration before deployment, and auditing escalation and notification rules. A common reporting query lists items for a given strategy in execution order:
SELECT strategy_user_item_id, work_item_order, work_item_temp_id, notify_yn, escalate_yn FROM iex.iex_strategy_user_items WHERE strategy_id = :p_strategy_id ORDER BY work_item_order;- Join to
FND_SECURITY_GROUPSonsecurity_group_idto report items by security group. - Filter on
escalate_yn = 'Y'to identify items with escalation behavior, or onnotify_yn = 'Y'for notification-bearing items when tuning collector workloads. - Reconcile with
OBJECT_VERSION_NUMBERwhen diagnosing concurrent update conflicts on strategy configuration.
Related Objects
FND_SECURITY_GROUPS— referenced viaIEX_STRATEGY_USER_ITEMS.SECURITY_GROUP_ID.IEX_STRATEGIES— parent strategy referenced throughSTRATEGY_ID.IEX_WORK_ITEM_TEMPLATES(and related template tables) — source forWORK_ITEM_TEMP_ID.- XML Publisher (
XDO) template objects — resolved throughXDO_TEMP_ID. - Concurrent program and request metadata (
FND_CONCURRENT_REQUESTS) — linked viaREQUEST_IDand thePROGRAM_*columns.
-
Table: IEX_STRATEGY_USER_ITEMS
12.2.2
owner:IEX, object_type:TABLE, fnd_design_data:IEX.IEX_STRATEGY_USER_ITEMS, object_name:IEX_STRATEGY_USER_ITEMS, status:VALID, product: IEX - Collections , description: Custom work item templates added to a particular strategy IEX_STRATEGY , implementation_dba_data: IEX.IEX_STRATEGY_USER_ITEMS ,
-
eTRM - IEX Tables and Views
12.2.2
description: xdo requested history for Collections ,
-
eTRM - IEX Tables and Views
12.2.2
description: xdo requested history for Collections ,