Search Results rg_dss_dimensions_u3




Overview

RG.RG_DSS_DIMENSIONS is a dimension-definition table within the Oracle E-Business Suite 12.1.1 / 12.2.2 environment, owned by the RG schema. It stores the metadata that describes the analytical dimensions used by the Oracle Financial Analyzer / Decision Support System (DSS) integration layer within Oracle EBS. Each row defines a single dimension — its display name, its internal object name, the prefixes applied to its members, its labeling behavior, and its relationship to an Oracle key flexfield where applicable. The table effectively acts as a master catalog that downstream DSS structures (segments, hierarchies, and variable dimensions) reference when assembling multidimensional analytical models.

From a Data Vault modeling perspective, this object is classified as hub-leaning. The heuristic classification derives from its key structure and foreign-key topology: RG_DSS_DIMENSIONS serves as the parent of several dependent tables, with the DIMENSION_ID column acting as the stable business key referenced by child relationships. In a formal Data Vault design, this pattern maps naturally to a hub, with the descriptive attributes (labels, prefixes, flexfield references) potentially satellite-material.

Key Information Stored

The table contains 36 columns. The most significant are:

Common Use Cases and Queries

Typical use cases include listing all defined dimensions, resolving a dimension by flexfield binding, and joining child structures. For example, to enumerate dimension definitions:

  • SELECT dimension_id, name, object_name, dimension_type, level_code FROM rg.rg_dss_dimensions ORDER BY name;
  • To locate the flexfield-backed dimensions: SELECT name, id_flex_code, id_flex_num FROM rg.rg_dss_dimensions WHERE id_flex_code IS NOT NULL;
  • To inspect the segments belonging to a dimension: SELECT s.* FROM rg.rg_dss_dim_segments s JOIN rg.rg_dss_dimensions d ON s.dimension_id = d.dimension_id;

Reporting scenarios commonly involve reconciling how many hierarchies or variable dimensions attach to each dimension, or validating that the OBJECT_NAME uniqueness constraint was respected before loading into Financial Analyzer. All access should occur through approved Oracle Applications programs, as the object is flagged Oracle Internal Use Only.

Related Objects

The following objects reference RG_DSS_DIMENSIONS through the DIMENSION_ID foreign key:

  • RG.RG_DSS_DIM_SEGMENTS — Segments belonging to each dimension (DIMENSION_ID → RG_DSS_DIMENSIONS.DIMENSION_ID).
  • RG.RG_DSS_HIERARCHIES — Hierarchical rollup structures for each dimension (DIMENSION_ID → RG_DSS_DIMENSIONS.DIMENSION_ID).
  • RG.RG_DSS_VAR_DIMENSIONS — Variable dimension definitions linked to the same key (DIMENSION_ID → RG_DSS_DIMENSIONS.DIMENSION_ID).

Additional related objects include the FND key flexfield definition tables referenced by ID_FLEX_CODE / ID_FLEX_NUM, and standard FND Descriptive Flexfield context tables associated with CONTEXT and ATTRIBUTE columns.