Search Results dim_long_name
Overview
APPS.EDW_DIM_VIEW is a lightweight reporting view in the Oracle E-Business Suite enterprise data warehouse (EDW) layer. It exposes a two-column projection drawn from the EDW dimensions metadata, presenting each warehouse dimension as an identifier/value pair. The view is defined in the APPS schema and is intended for consumption by Oracle EBS reporting tools, Discoverer workbooks, and downstream integration extracts that require a flat, human-readable list of dimension definitions rather than the full dimensional metadata structure.
The view is particularly relevant to users searching on the column name dim_long_name, since that attribute is exposed by the view as the VALUE column. Users who query the EDW dimensions metadata directly will find DIM_LONG_NAME in the underlying source, while the view renames it to VALUE for generic list-of-values consumption patterns.
Underlying Base Objects
Per the documented ETRM metadata, APPS.EDW_DIM_VIEW is defined over a single referenced object:
- EDW_DIMENSIONS_MD_V — the EDW dimensions metadata view that supplies both columns projected by EDW_DIM_VIEW.
No private tables, synonyms, or additional joins are documented as base objects for this view. The view text is a straightforward select-list projection:
SELECT dim_id id, dim_long_name value FROM EDW_DIMENSIONS_MD_V
Because EDW_DIM_VIEW introduces no filters, aggregations, or joins, it inherits the row population, security predicates, and any row-level restrictions present in EDW_DIMENSIONS_MD_V. Any change to the underlying metadata view is therefore reflected immediately in EDW_DIM_VIEW without modification.
Key Columns
- ID — maps to
DIM_IDin EDW_DIMENSIONS_MD_V. This is the numeric identifier for the dimension and serves as the primary join key when correlating EDW_DIM_VIEW to other dimensional or fact objects in the warehouse layer. - VALUE — maps to
DIM_LONG_NAMEin EDW_DIMENSIONS_MD_V. This is the descriptive, human-readable long name of the dimension, and is the attribute the user searched for under the name dim_long_name. It is the field typically displayed in list-of-values pickers, report parameter prompts, and extract headers.
The absence of a short name, description, or status column means that consumers needing additional dimension attributes must query EDW_DIMENSIONS_MD_V directly or join back to it on DIM_ID.
Common Use Cases and Queries
The view is commonly used wherever a generic ID/value lookup pattern is required, such as populating a report parameter, driving a Discoverer list of values, or feeding an external extract that expects a uniform two-column shape.
Retrieve all dimension identifiers with their long names:
SELECT id, value FROM apps.edw_dim_view ORDER BY value;
Resolve a specific dimension name from its identifier:
SELECT value FROM apps.edw_dim_view WHERE id = :p_dim_id;
Locate a dimension by its long name:
SELECT id FROM apps.edw_dim_view WHERE value = :p_dim_long_name;
Join back to the full metadata view when additional attributes are required:
SELECT v.id, v.value, m.dim_short_name
FROM apps.edw_dim_view v,
apps.edw_dimensions_md_v m
WHERE v.id = m.dim_id;
Because the view is defined in the APPS schema and the underlying metadata view is not documented as publicly exposed, grants or a covering synonym are typically required for non-APPS users. Query performance is dictated entirely by EDW_DIMENSIONS_MD_V, and no indexes or materializations are introduced by the view itself.
-
VIEW: APPS.EDW_DIM_VIEW
12.1.1
-
VIEW: APPS.EDW_DIMENSIONS_MD_V
12.1.1
-
VIEW: QPR.QPR_DIMENSIONS#
12.2.2
-
VIEW: APPS.QPR_DIMENSIONS_V
12.2.2
-
VIEW: APPS.QPR_DIMENSIONS_V
12.1.1
-
VIEW: APPS.EDW_SEC_DIM_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_SEC_DIM_INFO_V, object_name:EDW_SEC_DIM_INFO_V, status:VALID,
-
TABLE: BIS.EDW_DIMENSIONS_MD
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.EDW_DIMENSIONS_MD, object_name:EDW_DIMENSIONS_MD, status:VALID,
-
VIEW: APPS.EDW_DIMENSIONS_MD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_DIMENSIONS_MD_V, object_name:EDW_DIMENSIONS_MD_V, status:VALID,
-
APPS.EDW_ANALYZE_OBJECT SQL Statements
12.1.1
-
VIEW: QPR.QPR_DIMENSIONS#
12.2.2
owner:QPR, object_type:VIEW, object_name:QPR_DIMENSIONS#, status:VALID,
-
TABLE: BIS.EDW_SEC_DIM_INFO_T
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.EDW_SEC_DIM_INFO_T, object_name:EDW_SEC_DIM_INFO_T, status:VALID,
-
APPS.EDW_SEC_UTIL SQL Statements
12.1.1
-
View: EDW_DIMENSIONS_MD_V
12.2.2
product: BIS - Applications BIS , description: EDW_DIMENSIONS_MD_V , implementation_dba_data: Not implemented in this database ,
-
View: EDW_DIMENSIONS_MD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_DIMENSIONS_MD_V, object_name:EDW_DIMENSIONS_MD_V, status:VALID, product: BIS - Applications BIS , description: EDW_DIMENSIONS_MD_V , implementation_dba_data: APPS.EDW_DIMENSIONS_MD_V ,
-
View: EDW_SEC_DIM_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_SEC_DIM_INFO_V, object_name:EDW_SEC_DIM_INFO_V, status:VALID, product: BIS - Applications BIS , description: EDW_SEC_DIM_INFO_V , implementation_dba_data: APPS.EDW_SEC_DIM_INFO_V ,
-
View: EDW_DIM_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.EDW_DIM_VIEW, object_name:EDW_DIM_VIEW, status:VALID, product: BIS - Applications BIS , description: EDW_DIM_VIEW , implementation_dba_data: APPS.EDW_DIM_VIEW ,
-
View: EDW_SEC_DIM_INFO_V
12.2.2
product: BIS - Applications BIS , description: EDW_SEC_DIM_INFO_V , implementation_dba_data: Not implemented in this database ,
-
View: EDW_DIM_VIEW
12.2.2
product: BIS - Applications BIS , description: EDW_DIM_VIEW , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.QPR_DIMENSIONS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:QPR_DIMENSIONS_V, status:VALID,
-
VIEW: APPS.QPR_DIMENSIONS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:QPR_DIMENSIONS_V, status:VALID,
-
TABLE: QPR.QPR_DIMENSIONS
12.1.1
owner:QPR, object_type:TABLE, object_name:QPR_DIMENSIONS, status:VALID,
-
APPS.EDW_FLEX_PUSH_C SQL Statements
12.1.1
-
TABLE: QPR.QPR_DIMENSIONS
12.2.2
owner:QPR, object_type:TABLE, object_name:QPR_DIMENSIONS, status:VALID,
-
PACKAGE BODY: APPS.EDW_SEC_UTIL
12.1.1
-
APPS.EDW_NAEDW_PUSH SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EDW_ANALYZE_OBJECT
12.1.1
-
PACKAGE BODY: APPS.EDW_FLEX_PUSH_C
12.1.1
-
APPS.QPR_COPY_PRICE_PLAN SQL Statements
12.2.2
-
APPS.QPR_COPY_PRICE_PLAN SQL Statements
12.1.1
-
APPS.EDW_VBH_SETUP SQL Statements
12.1.1
-
APPS.EDW_METADATA_REFRESH SQL Statements
12.1.1
-
APPS.EDW_GL_ACCT_M_C SQL Statements
12.1.1
-
APPS.EDW_ALL_COLLECT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.QPR_COPY_PRICE_PLAN
12.1.1
-
PACKAGE BODY: APPS.QPR_COPY_PRICE_PLAN
12.2.2
-
APPS.EDW_NAEDW_PUSH dependencies on EDW_DIMENSIONS_MD_V
12.1.1
-
PACKAGE BODY: APPS.EDW_NAEDW_PUSH
12.1.1
-
APPS.QPR_COPY_PRICE_PLAN dependencies on QPR_DIMENSIONS
12.1.1
-
APPS.EDW_VBH_SETUP dependencies on EDW_DIMENSIONS_MD_V
12.1.1
-
APPS.QPR_COPY_PRICE_PLAN dependencies on QPR_DIMENSIONS
12.2.2
-
APPS.EDW_GL_ACCT_M_T dependencies on EDW_DIMENSIONS_MD_V
12.1.1
-
PACKAGE BODY: APPS.EDW_VBH_SETUP
12.1.1
-
APPS.EDW_FLEX_PUSH_C dependencies on DBMS_SQL
12.1.1
-
APPS.EDW_GL_ACCT_M_C dependencies on FND_DATE
12.1.1
-
APPS.EDW_GL_ACCT_M_T SQL Statements
12.1.1
-
APPS.EDW_SEC_UTIL dependencies on EDW_SEC_DIM_INFO_V
12.1.1
-
PACKAGE BODY: APPS.EDW_METADATA_REFRESH
12.1.1
-
APPS.EDW_SEC_UTIL dependencies on EDW_SEC_DIM_INFO_T
12.1.1
-
APPS.EDW_NAEDW_PUSH dependencies on EDW_LEVELS_MD_V
12.1.1
-
APPS.EDW_GL_ACCT_M_C dependencies on DBMS_SQL
12.1.1