Search Results user_str01
Overview
CZ_EFFECTIVITY_SETS is a configuration management table owned by the CZ (Configurator) schema in Oracle E-Business Suite, present and valid in both release 12.1.1 and 12.2.2. The table stores named, shared effectivity sets that define the date ranges governing when a configurator rule, model node, or rule folder is considered active. Rather than embedding effectivity dates redundantly in every governed record, Oracle Configurator centralizes each reusable effectivity definition in CZ_EFFECTIVITY_SETS and lets other tables reference it through the EFFECTIVITY_SET_ID foreign key.
The primary key, CZ_EFFECTIVITY_SETS_PK, is defined on EFFECTIVITY_SET_ID, a system-generated surrogate identifier. In Data Vault terms, the mined relationship structure classifies this table as hub-leaning: it is a durable, reference-style entity identified by a single surrogate key, with multiple dependent tables pointing to it. From a modeling standpoint, CZ_EFFECTIVITY_SETS behaves as a hub whose child references (CZ_PS_NODES, CZ_RULES, CZ_RULE_FOLDERS, and the import staging tables) act as link or satellite consumers rather than contributors. The table carries 20 documented columns in the 12.2.2 physical schema.
Key Information Stored
The most operationally significant columns include the following:
- EFFECTIVITY_SET_ID — the surrogate primary key and the single join column used by every dependent table.
- NAME — the user-visible label of the named effectivity set. Together with the primary key this forms the practical business-key candidate used in lookups and reports.
- DESCRIPTION and NOTE — free-text attributes describing the purpose and constraints of the effectivity set.
- EFFECTIVE_FROM and EFFECTIVE_UNTIL — the date boundaries defining the active window of the set. These values are propagated to child records that reference the set.
- DELETED_FLAG — logical delete indicator, allowing effectivity sets to be retired without physical removal, preserving referential integrity for existing children.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard Oracle EBS audit and concurrency columns.
- USER_STR01–USER_STR04 and USER_NUM01–USER_NUM04 — eight extensibility (DDF-style) columns reserved for customer-specific attributes.
The unique index CZ_EFFECTIVITY_SETS_PK on EFFECTIVITY_SET_ID is the only documented unique constraint, confirming the surrogate key as the sole enforced business-key candidate at the schema level.
Common Use Cases and Queries
Typical uses include determining which rules or model nodes are currently effective, auditing effectivity changes, and reporting on configuration coverage windows.
- Identify all currently active effectivity sets:
SELECT EFFECTIVITY_SET_ID, NAME, EFFECTIVE_FROM, EFFECTIVE_UNTIL FROM CZ.CZ_EFFECTIVITY_SETS WHERE DELETED_FLAG = 'N' AND SYSDATE BETWEEN EFFECTIVE_FROM AND EFFECTIVE_UNTIL; - Find rules sharing an effectivity set (join via the documented FK):
SELECT r.RULE_ID, e.NAME FROM CZ.CZ_RULES r JOIN CZ.CZ_EFFECTIVITY_SETS e ON r.EFFECTIVITY_SET_ID = e.EFFECTIVITY_SET_ID; - Determine which model nodes are governed by a named set for validation or troubleshooting.
- Audit recently modified effectivity definitions using LAST_UPDATE_DATE and LAST_UPDATED_BY.
- Map customer-defined attributes held in USER_STR01–04 and USER_NUM01–04 for localization or reporting.
Related Objects
The documented foreign-key relationships show the following significant dependents, all of which join on EFFECTIVITY_SET_ID:
- CZ_PS_NODES.EFFECTIVITY_SET_ID — model structure nodes governed by the referenced effectivity set.
- CZ_RULES.EFFECTIVITY_SET_ID — configurator rules whose activation window is inherited.
- CZ_RULE_FOLDERS.EFFECTIVITY_SET_ID — folders grouping rules under shared effectivity.
- CZ_IMP_RULES.EFFECTIVITY_SET_ID — import staging table for rules.
- CZ_IMP_PS_NODES.EFFECTIVITY_SET_ID — import staging table for model nodes.
Because all references flow outward from this hub, CZ_EFFECTIVITY_SETS is a foundational reference table within the Configurator data model and should be treated as master data during any data migration or integration exercise.
-
Table: CZ_EFFECTIVITY_SETS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_EFFECTIVITY_SETS, object_name:CZ_EFFECTIVITY_SETS, status:VALID, product: CZ - Configurator , description: Table lists named/shared effectivities for reference by effectivity-governed tables. , implementation_dba_data: CZ.CZ_EFFECTIVITY_SETS ,
-
Table: CZ_EFFECTIVITY_SETS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_EFFECTIVITY_SETS, object_name:CZ_EFFECTIVITY_SETS, status:VALID, product: CZ - Configurator , description: Table lists named/shared effectivities for reference by effectivity-governed tables. , implementation_dba_data: CZ.CZ_EFFECTIVITY_SETS ,
-
Table: CZ_PRICES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PRICES, object_name:CZ_PRICES, status:VALID, product: CZ - Configurator , description: Oracle SellingPoint list prices used in the Quote module. , implementation_dba_data: CZ.CZ_PRICES ,
-
Table: CZ_PROPERTIES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PROPERTIES, object_name:CZ_PROPERTIES, status:VALID, product: CZ - Configurator , description: Item properties , implementation_dba_data: CZ.CZ_PROPERTIES ,
-
Table: CZ_IMP_ITEM_TYPE
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_TYPE, object_name:CZ_IMP_ITEM_TYPE, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_ITEM_TYPES , implementation_dba_data: CZ.CZ_IMP_ITEM_TYPE ,
-
Table: CZ_ITEM_MASTERS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_ITEM_MASTERS, object_name:CZ_ITEM_MASTERS, status:VALID, product: CZ - Configurator , description: Items used to structure the product , implementation_dba_data: CZ.CZ_ITEM_MASTERS ,
-
Table: CZ_CUSTOMERS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CUSTOMERS, object_name:CZ_CUSTOMERS, status:VALID, product: CZ - Configurator , description: OBSOLETE, customers for MDApp , implementation_dba_data: CZ.CZ_CUSTOMERS ,
-
Table: CZ_ITEM_TYPES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_ITEM_TYPES, object_name:CZ_ITEM_TYPES, status:VALID, product: CZ - Configurator , description: Item types , implementation_dba_data: CZ.CZ_ITEM_TYPES ,
-
Table: CZ_IMP_ITEM_PARENT
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_PARENT, object_name:CZ_IMP_ITEM_PARENT, status:VALID, product: CZ - Configurator , description: NOT USED , implementation_dba_data: CZ.CZ_IMP_ITEM_PARENT ,
-
Table: CZ_ITEM_TYPES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_ITEM_TYPES, object_name:CZ_ITEM_TYPES, status:VALID, product: CZ - Configurator , description: Item types , implementation_dba_data: CZ.CZ_ITEM_TYPES ,
-
Table: CZ_IMP_ITEM_PROPERTY_VALUE
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_PROPERTY_VALUE, object_name:CZ_IMP_ITEM_PROPERTY_VALUE, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_ITEM_PROPERTY_VALUES , implementation_dba_data: CZ.CZ_IMP_ITEM_PROPERTY_VALUE ,
-
Table: CZ_OPPORTUNITY_HDRS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_OPPORTUNITY_HDRS, object_name:CZ_OPPORTUNITY_HDRS, status:VALID, product: CZ - Configurator , description: Opportunity headers for SellingPoint , implementation_dba_data: CZ.CZ_OPPORTUNITY_HDRS ,
-
Table: CZ_IMP_PRICE_GROUP
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_PRICE_GROUP, object_name:CZ_IMP_PRICE_GROUP, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_PRICE_GROUPS , implementation_dba_data: CZ.CZ_IMP_PRICE_GROUP ,
-
Table: CZ_IMP_ITEM_PROPERTY_VALUE
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_PROPERTY_VALUE, object_name:CZ_IMP_ITEM_PROPERTY_VALUE, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_ITEM_PROPERTY_VALUES , implementation_dba_data: CZ.CZ_IMP_ITEM_PROPERTY_VALUE ,
-
Table: CZ_PROPERTIES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PROPERTIES, object_name:CZ_PROPERTIES, status:VALID, product: CZ - Configurator , description: Item properties , implementation_dba_data: CZ.CZ_PROPERTIES ,
-
Table: CZ_IMP_CUSTOMER
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_CUSTOMER, object_name:CZ_IMP_CUSTOMER, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_CUSTOMERS , implementation_dba_data: CZ.CZ_IMP_CUSTOMER ,
-
Table: CZ_IMP_CUSTOMER
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_CUSTOMER, object_name:CZ_IMP_CUSTOMER, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_CUSTOMERS , implementation_dba_data: CZ.CZ_IMP_CUSTOMER ,
-
Table: CZ_IMP_ITEM_PARENT
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_PARENT, object_name:CZ_IMP_ITEM_PARENT, status:VALID, product: CZ - Configurator , description: NOT USED , implementation_dba_data: CZ.CZ_IMP_ITEM_PARENT ,
-
Table: CZ_IMP_ITEM_TYPE_PROPERTY
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_TYPE_PROPERTY, object_name:CZ_IMP_ITEM_TYPE_PROPERTY, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_ITEM_TYPE_PROPERTIES , implementation_dba_data: CZ.CZ_IMP_ITEM_TYPE_PROPERTY ,
-
Table: CZ_IMP_ITEM_TYPE_PROPERTY
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_TYPE_PROPERTY, object_name:CZ_IMP_ITEM_TYPE_PROPERTY, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_ITEM_TYPE_PROPERTIES , implementation_dba_data: CZ.CZ_IMP_ITEM_TYPE_PROPERTY ,
-
Table: CZ_IMP_CONTACT
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_CONTACT, object_name:CZ_IMP_CONTACT, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_CONTACTS , implementation_dba_data: CZ.CZ_IMP_CONTACT ,
-
Table: CZ_PROPOSAL_HDRS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PROPOSAL_HDRS, object_name:CZ_PROPOSAL_HDRS, status:VALID, product: CZ - Configurator , description: Proposals header table , implementation_dba_data: CZ.CZ_PROPOSAL_HDRS ,
-
Table: CZ_CUSTOMERS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CUSTOMERS, object_name:CZ_CUSTOMERS, status:VALID, product: CZ - Configurator , description: OBSOLETE, customers for MDApp , implementation_dba_data: CZ.CZ_CUSTOMERS ,
-
Table: CZ_PROPOSAL_HDRS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PROPOSAL_HDRS, object_name:CZ_PROPOSAL_HDRS, status:VALID, product: CZ - Configurator , description: Proposals header table , implementation_dba_data: CZ.CZ_PROPOSAL_HDRS ,
-
Table: CZ_ITEM_MASTERS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_ITEM_MASTERS, object_name:CZ_ITEM_MASTERS, status:VALID, product: CZ - Configurator , description: Items used to structure the product , implementation_dba_data: CZ.CZ_ITEM_MASTERS ,
-
Table: CZ_PRICE_GROUPS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PRICE_GROUPS, object_name:CZ_PRICE_GROUPS, status:VALID, product: CZ - Configurator , description: Oracle SellingPoint price lists used in the Quote module. Price lists , implementation_dba_data: CZ.CZ_PRICE_GROUPS ,
-
Table: CZ_PRICES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PRICES, object_name:CZ_PRICES, status:VALID, product: CZ - Configurator , description: Oracle SellingPoint list prices used in the Quote module. , implementation_dba_data: CZ.CZ_PRICES ,
-
Table: CZ_PRICE_GROUPS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PRICE_GROUPS, object_name:CZ_PRICE_GROUPS, status:VALID, product: CZ - Configurator , description: Oracle SellingPoint price lists used in the Quote module. Price lists , implementation_dba_data: CZ.CZ_PRICE_GROUPS ,
-
Table: CZ_OPPORTUNITY_HDRS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_OPPORTUNITY_HDRS, object_name:CZ_OPPORTUNITY_HDRS, status:VALID, product: CZ - Configurator , description: Opportunity headers for SellingPoint , implementation_dba_data: CZ.CZ_OPPORTUNITY_HDRS ,
-
Table: CZ_IMP_PRICE_GROUP
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_PRICE_GROUP, object_name:CZ_IMP_PRICE_GROUP, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_PRICE_GROUPS , implementation_dba_data: CZ.CZ_IMP_PRICE_GROUP ,
-
Table: CZ_IMP_ITEM_MASTER
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_MASTER, object_name:CZ_IMP_ITEM_MASTER, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_ITEM_MASTERS , implementation_dba_data: CZ.CZ_IMP_ITEM_MASTER ,
-
Table: CZ_IMP_ITEM_MASTER
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_MASTER, object_name:CZ_IMP_ITEM_MASTER, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_ITEM_MASTERS , implementation_dba_data: CZ.CZ_IMP_ITEM_MASTER ,
-
Table: CZ_END_USERS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_END_USERS, object_name:CZ_END_USERS, status:VALID, product: CZ - Configurator , description: Oracle SellingPoint users , implementation_dba_data: CZ.CZ_END_USERS ,
-
Table: CZ_END_USERS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_END_USERS, object_name:CZ_END_USERS, status:VALID, product: CZ - Configurator , description: Oracle SellingPoint users , implementation_dba_data: CZ.CZ_END_USERS ,
-
Table: CZ_CONTACTS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONTACTS, object_name:CZ_CONTACTS, status:VALID, product: CZ - Configurator , description: OBSOLETE, customer contacts for MDApp , implementation_dba_data: CZ.CZ_CONTACTS ,
-
Table: CZ_CONTACTS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONTACTS, object_name:CZ_CONTACTS, status:VALID, product: CZ - Configurator , description: OBSOLETE, customer contacts for MDApp , implementation_dba_data: CZ.CZ_CONTACTS ,
-
Table: CZ_IMP_ITEM_TYPE
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_ITEM_TYPE, object_name:CZ_IMP_ITEM_TYPE, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_ITEM_TYPES , implementation_dba_data: CZ.CZ_IMP_ITEM_TYPE ,
-
Table: CZ_QUOTE_HDRS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_QUOTE_HDRS, object_name:CZ_QUOTE_HDRS, status:VALID, product: CZ - Configurator , description: Quote header table, obsolete , implementation_dba_data: CZ.CZ_QUOTE_HDRS ,
-
Table: CZ_IMP_PROPERTY
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_PROPERTY, object_name:CZ_IMP_PROPERTY, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_PROPERTIES , implementation_dba_data: CZ.CZ_IMP_PROPERTY ,
-
Table: CZ_IMP_PROPERTY
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_PROPERTY, object_name:CZ_IMP_PROPERTY, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_PROPERTIES , implementation_dba_data: CZ.CZ_IMP_PROPERTY ,
-
Table: CZ_CONFIG_ITEMS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_ITEMS, object_name:CZ_CONFIG_ITEMS, status:VALID, product: CZ - Configurator , description: Items selected for the configuration , implementation_dba_data: CZ.CZ_CONFIG_ITEMS ,
-
Table: CZ_CONFIG_HDRS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_HDRS, object_name:CZ_CONFIG_HDRS, status:VALID, product: CZ - Configurator , description: Configuration header table , implementation_dba_data: CZ.CZ_CONFIG_HDRS ,
-
Table: CZ_MODEL_PUBLICATIONS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_MODEL_PUBLICATIONS, object_name:CZ_MODEL_PUBLICATIONS, status:VALID, product: CZ - Configurator , description: Publications table. Each row is a published TOP model , implementation_dba_data: CZ.CZ_MODEL_PUBLICATIONS ,
-
Table: CZ_IMP_END_USER
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_END_USER, object_name:CZ_IMP_END_USER, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_END_USERS , implementation_dba_data: CZ.CZ_IMP_END_USER ,
-
Table: CZ_IMP_END_USER
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_END_USER, object_name:CZ_IMP_END_USER, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_END_USERS , implementation_dba_data: CZ.CZ_IMP_END_USER ,
-
Table: CZ_QUOTE_HDRS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_QUOTE_HDRS, object_name:CZ_QUOTE_HDRS, status:VALID, product: CZ - Configurator , description: Quote header table, obsolete , implementation_dba_data: CZ.CZ_QUOTE_HDRS ,
-
Table: CZ_IMP_CONTACT
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_CONTACT, object_name:CZ_IMP_CONTACT, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_CONTACTS , implementation_dba_data: CZ.CZ_IMP_CONTACT ,
-
Table: CZ_CONFIG_HDRS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_CONFIG_HDRS, object_name:CZ_CONFIG_HDRS, status:VALID, product: CZ - Configurator , description: Configuration header table , implementation_dba_data: CZ.CZ_CONFIG_HDRS ,
-
Table: CZ_MODEL_PUBLICATIONS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_MODEL_PUBLICATIONS, object_name:CZ_MODEL_PUBLICATIONS, status:VALID, product: CZ - Configurator , description: Publications table. Each row is a published TOP model , implementation_dba_data: CZ.CZ_MODEL_PUBLICATIONS ,
-
Table: CZ_PS_NODES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_PS_NODES, object_name:CZ_PS_NODES, status:VALID, product: CZ - Configurator , description: Project structure nodes , implementation_dba_data: CZ.CZ_PS_NODES ,