Search Results ego_pages_v
Overview
EGO_PAGES_V is a reporting and integration view owned by the APPS schema within the EGO – Advanced Product Catalog product module. Its status is VALID in both Oracle E-Business Suite 12.1.1 and 12.2.2. The view exposes the set of user-defined pages configured against objects registered in the catalog framework, combining each page's technical identity, its owning object, its classification and data-level assignments, and its language-specific display attributes into a single denormalized result set.
The view abstracts the base/translation table split that characterizes the EGO schema's multilingual design. Consumers query one object without needing to join the base table (EGO_PAGES_B), the translation table (EGO_PAGES_TL), the data-level lookup, and FND_OBJECTS manually. It therefore functions as the canonical read interface for page definitions used by concurrent programs, custom reports, and integration extracts that need to enumerate pages or resolve a page's display name in the session language.
Because the view resolves display text through USERENV('LANG'), its output is session-dependent. Any consumer requiring deterministic, language-independent output must account for this behavior or join the underlying translation table directly.
Underlying Base Objects
The documented base objects referenced by EGO_PAGES_V are EGO_PAGES_B and EGO_PAGES_TL (both exposed as synonyms in the APPS schema), EGO_DATA_LEVEL_VL, and FND_OBJECTS. Structurally, EGO_PAGES_B supplies the primary page record: page identifier, owning object, classification code, data level, internal name, and sequence. EGO_PAGES_TL supplies language-specific display name and description, joined on PAGE_ID and filtered to the session language.
FND_OBJECTS is joined on OBJECT_ID to resolve the object's internal name (OBJ_NAME) into the OBJECT_NAME column. The inline distinct query over EGO_DATA_LEVEL_VL maps the stored data level name to its user-facing name, yielding DATA_LEVEL_DISP_NAME. The view therefore has a many-to-one relationship with FND_OBJECTS and a one-to-one relationship with the translation row for the active language.
Key Columns
- PAGE_ID – Primary identifier of the user-defined page, sourced from EGO_PAGES_B.
- OBJECT_ID – Identifier of the catalog object to which the page belongs.
- OBJECT_NAME – Internal name of that object, resolved through FND_OBJECTS.
- CLASSIFICATION_CODE – Classification assigned to the page, used to group or categorize page definitions.
- DATA_LEVEL_INT_NAME – Internal data-level name as stored on the page record.
- DATA_LEVEL_DISP_NAME – User-facing data-level name derived from EGO_DATA_LEVEL_VL.
- INTERNAL_NAME – Developer-facing page name.
- DISPLAY_NAME – Translated page name for the session language.
- DESCRIPTION – Translated page description.
- SEQUENCE – Ordering value controlling page presentation.
Common Use Cases and Queries
Typical scenarios include auditing which pages exist for a given object, validating that translations are populated for all required languages, and feeding page metadata into custom catalog or integration processes.
List all pages for a specific object:
SELECT page_id, internal_name, display_name, sequence FROM apps.ego_pages_v WHERE object_name = :object_name ORDER BY sequence;
Locate the display name for a known page identifier:
SELECT display_name, description FROM apps.ego_pages_v WHERE page_id = :page_id;
Audit pages by classification and data level:
SELECT object_name, classification_code, data_level_disp_name, COUNT(*) FROM apps.ego_pages_v GROUP BY object_name, classification_code, data_level_disp_name;
Detect pages lacking a translation in the current session language:
SELECT b.page_id FROM apps.ego_pages_b b WHERE NOT EXISTS (SELECT 1 FROM apps.ego_pages_v v WHERE v.page_id = b.page_id);
-
View: EGO_PAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PAGES_V, object_name:EGO_PAGES_V, status:VALID, product: EGO - Advanced Product Catalog , description: View contains the User-Defined Pages , implementation_dba_data: APPS.EGO_PAGES_V ,
-
View: EGO_PAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PAGES_V, object_name:EGO_PAGES_V, status:VALID, product: EGO - Advanced Product Catalog , description: View contains the User-Defined Pages , implementation_dba_data: APPS.EGO_PAGES_V ,
-
VIEW: APPS.PA_PROJ_PAGE_REGIONS_V
12.2.2
-
APPS.PA_EXT_ATTRIBUTE_UTILS SQL Statements
12.1.1
-
APPS.PA_EXT_ATTRIBUTE_UTILS SQL Statements
12.2.2
-
VIEW: APPS.PA_PROJ_PAGE_REGIONS_V
12.1.1
-
View: PA_PROJ_PAGE_REGIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PAGE_REGIONS_V, object_name:PA_PROJ_PAGE_REGIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_PAGE_REGIONS_V ,
-
View: PA_PROJ_PAGE_REGIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PAGE_REGIONS_V, object_name:PA_PROJ_PAGE_REGIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_PAGE_REGIONS_V ,
-
VIEW: APPS.EGO_PAGE_ENTRIES_V
12.2.2
-
PACKAGE BODY: APPS.PA_EXT_ATTRIBUTE_UTILS
12.1.1
-
VIEW: APPS.PA_EXT_MAINT_AG_RESULTS_V
12.1.1
-
VIEW: APPS.EGO_PAGE_ENTRIES_V
12.1.1
-
PACKAGE BODY: APPS.PA_EXT_ATTRIBUTE_UTILS
12.2.2
-
VIEW: APPS.PA_EXT_MAINT_AG_RESULTS_V
12.2.2
-
SYNONYM: APPS.EGO_PAGES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EGO_PAGES_TL, status:VALID,
-
SYNONYM: APPS.EGO_PAGES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:EGO_PAGES_TL, status:VALID,
-
SYNONYM: APPS.EGO_PAGES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EGO_PAGES_B, status:VALID,
-
PACKAGE BODY: APPS.PA_EXT_ATTRIBUTE_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_EXT_ATTRIBUTE_UTILS, status:VALID,
-
SYNONYM: APPS.EGO_PAGES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:EGO_PAGES_B, status:VALID,
-
VIEW: APPS.PA_PAGE_REGIONS_V
12.1.1
-
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_PAGES_BULKLOAD_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_PAGES_BULKLOAD_PVT, status:VALID,
-
VIEW: APPS.PA_PAGE_REGIONS_V
12.2.2
-
PACKAGE BODY: APPS.PA_EXT_ATTRIBUTE_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_EXT_ATTRIBUTE_UTILS, status:VALID,
-
PACKAGE BODY: APPS.RRS_ATTR_PANE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_ATTR_PANE, status:VALID,
-
PACKAGE BODY: APPS.OKC_UDA_TEMPLATES_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_UDA_TEMPLATES_UTIL, 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 ,
-
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 ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
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 ,
-
PACKAGE BODY: APPS.RRS_HIERARCHY_INFO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_HIERARCHY_INFO, status:VALID,
-
VIEW: APPS.PA_PROJ_PAGE_REGIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PAGE_REGIONS_V, object_name:PA_PROJ_PAGE_REGIONS_V, status:VALID,
-
PACKAGE BODY: APPS.EGO_GTIN_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_GTIN_PVT, status:VALID,
-
PACKAGE BODY: APPS.EGO_GTIN_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_GTIN_PVT, status:VALID,
-
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,
-
12.2.2 DBA Data
12.2.2
-
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,
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_SITE_INFO, status:VALID,
-
VIEW: APPS.PA_PROJ_PAGE_REGIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PAGE_REGIONS_V, object_name:PA_PROJ_PAGE_REGIONS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.PA_PAGE_REGIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PAGE_REGIONS_V, object_name:PA_PAGE_REGIONS_V, status:VALID,
-
VIEW: APPS.PA_PAGE_REGIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PAGE_REGIONS_V, object_name:PA_PAGE_REGIONS_V, status:VALID,
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_SITE_INFO, status:VALID,
-
PACKAGE BODY: APPS.EGO_EXT_FWK_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_EXT_FWK_PUB, status:VALID,
-
View: PA_PAGE_REGIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PAGE_REGIONS_V, object_name:PA_PAGE_REGIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PAGE_REGIONS_V ,
-
VIEW: APPS.EGO_PAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PAGES_V, object_name:EGO_PAGES_V, status:VALID,
-
View: PA_PAGE_REGIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PAGE_REGIONS_V, object_name:PA_PAGE_REGIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PAGE_REGIONS_V ,
-
PACKAGE BODY: APPS.EGO_EXT_FWK_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_EXT_FWK_PUB, status:VALID,
-
VIEW: APPS.EGO_PAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_PAGES_V, object_name:EGO_PAGES_V, status:VALID,