Search Results iex_strategy_temp_groups_u1




Overview

IEX.IEX_STRATEGY_TEMPLATE_GROUPS is a seed-data configuration table within the Oracle E-Business Suite Collections (Advanced Collections / IEX) module. It stores the grouping definitions and group-level attributes that govern how collection strategy templates are organized and executed. Each row associates a strategy template with a strategy group, capturing ranking, enablement, filtering, and scoring parameters that drive automated collections processing. The table resides in the APPS_TS_SEED tablespace, reflecting its role as setup and reference data rather than high-volume transactional data.

From a Data Vault modeling perspective, the metadata's heuristic classification is standalone. This suggests the table is best treated as a standalone reference or configuration entity, rather than a strict hub, link, or satellite. It has minimal foreign-key dependencies and largely carries its own business attributes, making it a candidate for a reference table in an analytic model.

Oracle flags this object as Internal Use Only; direct DML should be avoided, and access should flow through standard Oracle Applications programs and concurrent processes.

Key Information Stored

The table is defined with 29 documented columns. The most significant include:

The surrogate primary key is documented as ISP_PK on GROUP_ID, while the unique index IEX_STRATEGY_TEMP_GROUPS_U1 on (GROUP_ID, ZD_EDITION_NAME) serves as the business-key candidate.

Common Use Cases and Queries

Typical reporting scenarios include listing active groups for a given strategy template, auditing effective-dated configuration, and reconciling object filters to scoring rules. A representative query:

SELECT g.strategy_group_id, g.strategy_group_name, g.strategy_rank, g.enabled_flag, g.valid_from_dt, g.valid_to_dt FROM iex.iex_strategy_template_groups g WHERE g.strategy_temp_id = :template_id AND g.enabled_flag = 'Y' ORDER BY g.strategy_rank;

Because the table is editioned, queries in 12.2.x must account for ZD_EDITION_NAME when joining or filtering across versions. Analysts commonly join to IEX_OBJECT_FILTERS to determine filter scope and to template tables to trace full strategy composition.

Related Objects