Search Results cz_imp_end_user_group
Overview
CZ_IMP_END_USER_GROUP is a staging table in the Oracle E-Business Suite Configurator (CZ) module, owned by the CZ schema. It serves as an interim landing area for records destined for the production association table CZ_END_USER_GROUPS. Rows loaded into this table originate from bulk import routines, data migration scripts, or interface programs, and are subsequently validated, accepted, or rejected before being promoted into the operational end-user group assignments. Because Configurator models complex product structures and the users authorized to configure them, the integrity of end-user-to-group mappings is critical; this staging table isolates raw import data from the live configuration metadata.
The table is classified as VALID in the ETRM catalog and contains 23 documented physical columns in 12.2.2. Its heuristic Data Vault classification, mined from foreign-key structure, is standalone. As a modeling suggestion, this reflects the fact that the table’s foreign-key footprint is narrow (a single documented reference). Rather than functioning as a classic hub or satellite, it behaves as a transient load buffer, so treating it as a staging standalone entity — rather than a durable Data Vault component — is the appropriate analytical stance.
Key Information Stored
The most significant columns fall into identity, lineage, and processing-control categories:
- END_USER_ID — the end-user reference; the sole documented foreign key, pointing to
CZ_END_USERS, establishing which user the group assignment applies to. This is the principal business-key candidate. - USER_GROUP_ID — the target group identifier, forming the second half of the natural association key with
END_USER_ID. - GROUP_PRIORITY — ordering or precedence value applied when a user belongs to multiple groups.
- RUN_ID — identifier of the import batch, enabling rows to be traced to a specific load execution.
- REC_NBR — sequence number of the record within the run.
- REC_STATUS and DISPOSITION — processing outcome flags indicating whether the row was accepted, rejected, or pending validation.
- DATE_ADDED_USER, USER_ADDEDBY, CHECKOUT_USER — audit and ownership attributes for the assignment.
- EFF_FROM, EFF_TO, EFF_MASK — date-effectivity structures governing which version of the mapping is valid at a point in time.
- DELETED_FLAG and SECURITY_MASK — logical deletion and access-control indicators.
- FSK_ENDUSER_1_1, FSK_ENDUSER_1_EXT, FSK_USERGROUP_2_1, FSK_USERGROUP_2_EXT — denormalized foreign surrogate key columns retained from the source model for matching and reconciliation.
- CREATION_DATE, LAST_UPDATE_DATE, CREATED_BY, LAST_UPDATED_BY — standard EBS who-columns.
No dedicated surrogate primary key column is documented; identity is effectively composite, anchored on END_USER_ID plus USER_GROUP_ID within a given RUN_ID.
Common Use Cases and Queries
Typical scenarios include monitoring the status of import batches, diagnosing rejected rows before they reach the production table, and auditing historical group assignments. A frequently used pattern inspects unresolved records for a run:
SELECT REC_NBR, END_USER_ID, USER_GROUP_ID, REC_STATUS, DISPOSITION FROM CZ_IMP_END_USER_GROUP WHERE RUN_ID = :run_id AND REC_STATUS <> 'ACCEPTED' ORDER BY REC_NBR;- Reconciling staged rows against live assignments:
SELECT i.END_USER_ID, i.USER_GROUP_ID FROM CZ_IMP_END_USER_GROUP i WHERE NOT EXISTS (SELECT 1 FROM CZ_END_USER_GROUPS g WHERE g.END_USER_ID = i.END_USER_ID AND g.USER_GROUP_ID = i.USER_GROUP_ID); - Reporting by load window using
CREATION_DATEandRUN_IDto track import volume over time.
Reporting extracts generally join to CZ_END_USERS to translate identifiers into recognizable user names.
Related Objects
- CZ_END_USER_GROUPS — the target table for promoted rows; the primary downstream dependency.
- CZ_END_USERS — referenced via
END_USER_ID; supplies user identity and descriptive attributes. - CZ_USER_GROUPS — supplies group definitions for the
USER_GROUP_IDvalue. - CZ_IMP_* interface tables — companion staging tables loaded by the same Configurator import programs and sharing
RUN_IDsemantics. - CZ_END_USER_GROUP import/concurrent programs — the executables that read this staging table and write to
CZ_END_USER_GROUPS, settingREC_STATUSandDISPOSITION.
Because the table is classified as standalone, its dependency web is shallow: the dominant joins are to CZ_END_USERS and the production CZ_END_USER_GROUPS table.
-
Table: CZ_IMP_END_USER_GROUP
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_END_USER_GROUP, object_name:CZ_IMP_END_USER_GROUP, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_END_USER_GROUPS , implementation_dba_data: CZ.CZ_IMP_END_USER_GROUP ,
-
Table: CZ_IMP_END_USER_GROUP
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_END_USER_GROUP, object_name:CZ_IMP_END_USER_GROUP, status:VALID, product: CZ - Configurator , description: Data to be imported (or rejected) into CZ_END_USER_GROUPS , implementation_dba_data: CZ.CZ_IMP_END_USER_GROUP ,
-
SYNONYM: APPS.CZ_IMP_END_USER_GROUP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_IMP_END_USER_GROUP, status:VALID,
-
SYNONYM: APPS.CZ_IMP_END_USER_GROUP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_IMP_END_USER_GROUP, status:VALID,
-
VIEW: CZ.CZ_IMP_END_USER_GROUP#
12.2.2
owner:CZ, object_type:VIEW, object_name:CZ_IMP_END_USER_GROUP#, status:VALID,
-
VIEW: CZ.CZ_IMP_END_USER_GROUP#
12.2.2
-
PACKAGE BODY: APPS.CZ_IMP_AC_MAIN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IMP_AC_MAIN, status:VALID,
-
PACKAGE BODY: APPS.CZ_IMP_AC_XFR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IMP_AC_XFR, status:VALID,
-
PACKAGE BODY: APPS.CZ_IMP_AC_XFR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IMP_AC_XFR, status:VALID,
-
PACKAGE BODY: APPS.CZ_IMP_AC_MAIN
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IMP_AC_MAIN, status:VALID,
-
PACKAGE BODY: APPS.CZ_IMP_AC_KRS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IMP_AC_KRS, status:VALID,
-
PACKAGE BODY: APPS.CZ_IMP_AC_KRS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_IMP_AC_KRS, status:VALID,
-
TABLE: CZ.CZ_IMP_END_USER_GROUP
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_END_USER_GROUP, object_name:CZ_IMP_END_USER_GROUP, status:VALID,
-
TABLE: CZ.CZ_IMP_END_USER_GROUP
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_IMP_END_USER_GROUP, object_name:CZ_IMP_END_USER_GROUP, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CZ_IMP_AC_MAIN SQL Statements
12.1.1
-
APPS.CZ_IMP_AC_XFR SQL Statements
12.2.2
-
APPS.CZ_IMP_AC_MAIN SQL Statements
12.2.2
-
APPS.CZ_IMP_AC_KRS SQL Statements
12.2.2
-
APPS.CZ_IMP_AC_KRS SQL Statements
12.1.1
-
APPS.CZ_IMP_AC_XFR SQL Statements
12.1.1
-
APPS.CZ_IMP_AC_XFR dependencies on CZ_IMP_END_USER_GROUP
12.2.2
-
PACKAGE BODY: APPS.CZ_IMP_AC_XFR
12.1.1
-
PACKAGE BODY: APPS.CZ_IMP_AC_XFR
12.2.2
-
APPS.CZ_IMP_AC_KRS dependencies on CZ_IMP_END_USER_GROUP
12.1.1
-
APPS.CZ_IMP_AC_KRS dependencies on CZ_IMP_END_USER_GROUP
12.2.2
-
APPS.CZ_IMP_AC_MAIN dependencies on CZ_IMP_END_USER_GROUP
12.2.2
-
APPS.CZ_IMP_AC_XFR dependencies on CZ_IMP_END_USER_GROUP
12.1.1
-
APPS.CZ_IMP_AC_MAIN dependencies on CZ_IMP_END_USER_GROUP
12.1.1
-
APPS.CZ_IMP_AC_XFR dependencies on CZ_IMP_END_USER
12.1.1
-
APPS.CZ_IMP_AC_MAIN dependencies on CZ_IMP_END_USER
12.2.2
-
APPS.CZ_IMP_AC_XFR dependencies on CZ_IMP_END_USER
12.2.2
-
APPS.CZ_IMP_AC_MAIN dependencies on CZ_IMP_END_USER
12.1.1
-
PACKAGE BODY: APPS.CZ_IMP_AC_MAIN
12.2.2
-
PACKAGE BODY: APPS.CZ_IMP_AC_MAIN
12.1.1
-
APPS.CZ_IMP_AC_KRS dependencies on CZ_IMP_END_USER
12.2.2
-
PACKAGE BODY: APPS.CZ_IMP_AC_KRS
12.1.1
-
APPS.CZ_IMP_AC_KRS dependencies on CZ_IMP_END_USER
12.1.1
-
PACKAGE BODY: APPS.CZ_IMP_AC_KRS
12.2.2
-
eTRM - CZ Tables and Views
12.2.2
description: Import control table responsible for NOUPDATE flags ,
-
eTRM - CZ Tables and Views
12.1.1
description: Import control table responsible for NOUPDATE flags ,