Search Results ego_obj_attr_grp_assocs_v
Overview
EGO_OBJ_ATTR_GRP_ASSOCS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the EGO — Advanced Product Catalog product family. Its documented purpose is to expose the association between attribute groups and objects, providing a denormalized, human-readable representation of the underlying object-to-attribute-group mapping records. In the ETRM metadata for both 12.1.1 and 12.2.2 the object is registered as a VALID VIEW under the APPS schema.
Because the physical association data is stored in a base table (EGO_OBJ_AG_ASSOCS_B) that carries only surrogate identifiers, the view exists to resolve those identifiers into meaningful names. It joins the base association records to object definitions, data level definitions, descriptive flexfield context extensions, and translatable context name/description rows, so that consumers receive display-ready values such as the object name, attribute group display name, and data level name. This makes the view a natural integration and reporting surface for anyone building extracts, BI queries, or interfaces that must interpret attribute group assignments without performing the translation and lookup joins manually.
Underlying Base Objects
The ETRM metadata documents the following referenced base objects:
- EGO_OBJ_AG_ASSOCS_B (synonym) — the base association table that drives the view; supplies ASSOCIATION_ID, OBJECT_ID, ATTR_GROUP_ID, CLASSIFICATION_CODE, ENABLED_FLAG, DATA_LEVEL_ID, and VARIANT.
- FND_OBJECTS (synonym) — the object registry; joined on OBJECT_ID to resolve OBJ_NAME as OBJECT_NAME.
- EGO_FND_DSC_FLX_CTX_EXT (synonym) — the descriptive flexfield context extension; supplies APPLICATION_ID, DESCRIPTIVE_FLEXFIELD_NAME (exposed as ATTR_GROUP_TYPE), and DESCRIPTIVE_FLEX_CONTEXT_CODE (exposed as ATTR_GROUP_NAME).
- FND_DESCR_FLEX_CONTEXTS_TL (synonym) — the translatable context table; supplies DESCRIPTIVE_FLEX_CONTEXT_NAME and DESCRIPTION, joined on APPLICATION_ID, flexfield name, and context code, filtered by TL.LANGUAGE = USERENV('LANG').
- EGO_DATA_LEVEL_VL (view) — the data level view; joined on DATA_LEVEL_ID to resolve DATA_LEVEL and DATA_LEVEL_INT_NAME.
Key Columns
- ASSOCIATION_ID — primary identifier of the object-to-attribute-group association record.
- OBJECT_ID / OBJECT_NAME — the associated object and its resolved name from FND_OBJECTS.
- CLASSIFICATION_CODE — classification context carried on the association.
- ATTR_GROUP_ID — surrogate identifier of the attribute group.
- APPLICATION_ID, ATTR_GROUP_TYPE, ATTR_GROUP_NAME — the owning application, descriptive flexfield name, and flexfield context code defining the attribute group.
- ATTR_GROUP_DISP_NAME, ATTR_GROUP_DESCRIPTION — translated display name and description of the attribute group.
- DATA_LEVEL, DATA_LEVEL_INT_NAME, DATA_LEVEL_ID — the data level at which the association applies, with both display and internal naming.
- ENABLED_CODE, VARIANT — the enabled flag and variant indicator controlling association applicability.
Common Use Cases and Queries
Typical scenarios include auditing attribute group assignments per object, validating which groups are enabled at a given data level, and feeding downstream catalog or integration processes with resolved group names. A representative query filtering to enabled associations for a specific object follows:
SELECT association_id,
object_name,
attr_group_type,
attr_group_name,
attr_group_disp_name,
data_level,
enabled_code
FROM apps.ego_obj_attr_grp_assocs_v
WHERE object_id = :p_object_id
AND enabled_code = 'Y'
ORDER BY attr_group_disp_name;
Because the view applies the language filter USERENV('LANG'), results are returned in the session's current language, making it suitable for localized reporting. Joins to EGO_DATA_LEVEL_VL allow grouping by data level, and joins to FND_OBJECTS-derived columns support reporting across the object registry. As with any APPS-owned view, queries should be executed from an application responsibility or with appropriate APPS schema access.
-
View: EGO_OBJ_ATTR_GRP_ASSOCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_OBJ_ATTR_GRP_ASSOCS_V, object_name:EGO_OBJ_ATTR_GRP_ASSOCS_V, status:VALID, product: EGO - Advanced Product Catalog , description: View contains Attribute Group to Object Association , implementation_dba_data: APPS.EGO_OBJ_ATTR_GRP_ASSOCS_V ,
-
View: EGO_OBJ_ATTR_GRP_ASSOCS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_OBJ_ATTR_GRP_ASSOCS_V, object_name:EGO_OBJ_ATTR_GRP_ASSOCS_V, status:VALID, product: EGO - Advanced Product Catalog , description: View contains Attribute Group to Object Association , implementation_dba_data: APPS.EGO_OBJ_ATTR_GRP_ASSOCS_V ,
-
VIEW: APPS.BOM_STRUCT_ATTR_GRP_ASSOCS_V
12.2.2
-
VIEW: APPS.BOM_STRUCT_ATTR_GRP_ASSOCS_V
12.1.1
-
VIEW: APPS.EGO_PAGE_ENTRIES_V
12.1.1
-
VIEW: APPS.EGO_PAGE_ENTRIES_V
12.2.2
-
VIEW: APPS.PA_EXT_MAINT_AG_RESULTS_V
12.2.2
-
VIEW: APPS.PA_EXT_MAINT_AG_RESULTS_V
12.1.1
-
View: BOM_STRUCT_ATTR_GRP_ASSOCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STRUCT_ATTR_GRP_ASSOCS_V, object_name:BOM_STRUCT_ATTR_GRP_ASSOCS_V, status:VALID, product: BOM - Bills of Material , description: Displays BOM structure attribute group associations , implementation_dba_data: APPS.BOM_STRUCT_ATTR_GRP_ASSOCS_V ,
-
View: BOM_STRUCT_ATTR_GRP_ASSOCS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STRUCT_ATTR_GRP_ASSOCS_V, object_name:BOM_STRUCT_ATTR_GRP_ASSOCS_V, status:VALID, product: BOM - Bills of Material , description: Displays BOM structure attribute group associations , implementation_dba_data: APPS.BOM_STRUCT_ATTR_GRP_ASSOCS_V ,
-
PACKAGE BODY: APPS.PA_EXT_ATTRIBUTE_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_EXT_ATTRIBUTE_UTILS, status:VALID,
-
PACKAGE BODY: APPS.PA_EXT_ATTRIBUTE_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_EXT_ATTRIBUTE_UTILS, status:VALID,
-
APPS.EGO_COM_ATTR_VALIDATION SQL Statements
12.2.2
-
PACKAGE BODY: APPS.EGO_COM_ATTR_VALIDATION
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_COM_ATTR_VALIDATION, status:VALID,
-
PACKAGE BODY: APPS.EGO_RULE_SETS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_RULE_SETS_PKG, status:VALID,
-
SYNONYM: APPS.FND_DESCR_FLEX_CONTEXTS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_DESCR_FLEX_CONTEXTS_TL, status:VALID,
-
SYNONYM: APPS.EGO_OBJ_AG_ASSOCS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EGO_OBJ_AG_ASSOCS_B, status:VALID,
-
PACKAGE BODY: APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_EXTRACT_EXT_ATTRI_BO_PVT, status:VALID,
-
PACKAGE BODY: APPS.POS_SUPPLIER_UDA_BO_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:POS_SUPPLIER_UDA_BO_PKG, status:VALID,
-
PACKAGE BODY: APPS.EGO_TRANSACTION_ATTRS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_TRANSACTION_ATTRS_PVT, status:VALID,
-
PACKAGE BODY: APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_EXTRACT_EXT_ATTRI_BO_PVT, status:VALID,
-
View: EGO_PAGE_ENTRIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PAGE_ENTRIES_V, object_name:EGO_PAGE_ENTRIES_V, status:VALID, product: EGO - Advanced Product Catalog , description: View contains the entries for User-Defined Pages , implementation_dba_data: APPS.EGO_PAGE_ENTRIES_V ,
-
View: EGO_PAGE_ENTRIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PAGE_ENTRIES_V, object_name:EGO_PAGE_ENTRIES_V, status:VALID, product: EGO - Advanced Product Catalog , description: View contains the entries for User-Defined Pages , implementation_dba_data: APPS.EGO_PAGE_ENTRIES_V ,
-
PACKAGE BODY: APPS.EGO_CHANGE_USER_ATTRS_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_CHANGE_USER_ATTRS_PUB, status:VALID,
-
PACKAGE BODY: APPS.EGO_CHANGE_USER_ATTRS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_CHANGE_USER_ATTRS_PUB, status:VALID,
-
PACKAGE BODY: APPS.EGO_PAGES_BULKLOAD_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_PAGES_BULKLOAD_PVT, status:VALID,
-
PACKAGE BODY: APPS.EGO_TA_BULKLOAD_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_TA_BULKLOAD_PVT, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.RRS_SITE_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_SITE_UTILS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.EGO_ITEM_CATALOG_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_ITEM_CATALOG_PUB, status:VALID,
-
PACKAGE BODY: APPS.EGO_INV_ITEM_CATALOG_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_INV_ITEM_CATALOG_PVT, status:VALID,
-
PACKAGE BODY: APPS.EGO_ITEM_CATALOG_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_ITEM_CATALOG_PUB, status:VALID,
-
View: PA_EXT_MAINT_AG_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXT_MAINT_AG_RESULTS_V, object_name:PA_EXT_MAINT_AG_RESULTS_V, status:VALID, product: PA - Projects , description: Extensible drivers with associated attribute groups , implementation_dba_data: APPS.PA_EXT_MAINT_AG_RESULTS_V ,
-
SYNONYM: APPS.FND_DESCR_FLEX_CONTEXTS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_DESCR_FLEX_CONTEXTS_TL, status:VALID,
-
View: PA_EXT_MAINT_AG_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXT_MAINT_AG_RESULTS_V, object_name:PA_EXT_MAINT_AG_RESULTS_V, status:VALID, product: PA - Projects , description: Extensible drivers with associated attribute groups , implementation_dba_data: APPS.PA_EXT_MAINT_AG_RESULTS_V ,
-
APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EGO_INV_ITEM_CATALOG_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_INV_ITEM_CATALOG_PVT, status:VALID,
-
APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.EGO_FND_DSC_FLX_CTX_EXT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EGO_FND_DSC_FLX_CTX_EXT, status:VALID,
-
PACKAGE BODY: APPS.PO_FED_FIELD_FUNCTIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PO_FED_FIELD_FUNCTIONS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.EGO_OBJ_AG_ASSOCS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:EGO_OBJ_AG_ASSOCS_B, status:VALID,
-
VIEW: APPS.PA_EXT_MAINT_AG_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXT_MAINT_AG_RESULTS_V, object_name:PA_EXT_MAINT_AG_RESULTS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.PA_EXT_MAINT_AG_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXT_MAINT_AG_RESULTS_V, object_name:PA_EXT_MAINT_AG_RESULTS_V, status:VALID,
-
PACKAGE BODY: APPS.POS_MERGE_SUPPLIER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:POS_MERGE_SUPPLIER_PKG, status:VALID,
-
PACKAGE BODY: APPS.INV_EGO_REVISION_VALIDATE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INV_EGO_REVISION_VALIDATE, status:VALID,
-
VIEW: APPS.BOM_STRUCT_ATTR_GRP_ASSOCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STRUCT_ATTR_GRP_ASSOCS_V, object_name:BOM_STRUCT_ATTR_GRP_ASSOCS_V, status:VALID,
-
APPS.POS_SUPPLIER_UDA_BO_PKG SQL Statements
12.2.2