Search Results rg_dss_variables
Overview
RG.RG_DSS_VARIABLES is a VALID base table in the Oracle E-Business Suite Release 12.1.1 and 12.2.2 database, owned by the RG schema and belonging to the Application Report Generator product family (RG). The table stores Financial Analyzer financial data items — that is, the definitions of the financial variables that drive Financial Analyzer and related General Ledger reporting structures. Each row represents a single named financial data item that can be referenced by reports, dimensions, selections, templates, and system variables within the RG reporting framework.
The documented physical schema comprises 66 columns. Three unique indexes are defined — RG_DSS_VARIABLES_U1 (VARIABLE_ID), RG_DSS_VARIABLES_U2 (NAME), and RG_DSS_VARIABLES_U3 (OBJECT_NAME) — alongside a primary key constraint, RG_DSS_VARIABLES_PK (VARIABLE_ID). From a Data Vault modeling perspective, the mined foreign-key structure classifies this table as satellite-leaning: it is a descriptive, attribute-heavy structure anchored on a single surrogate key, with subordinate tables hanging off VARIABLE_ID rather than participating in many-to-many link relationships. This classification is a heuristic suggestion rather than a formal EBS designation.
Key Information Stored
The surrogate primary key is VARIABLE_ID, which also serves as a business-key candidate via RG_DSS_VARIABLES_U1. Two further business-key candidates exist: NAME (unique index U2) and OBJECT_NAME (unique index U3). The remaining columns hold the descriptive and configuration attributes of the financial data item:
LEDGER_ID— the set of books / ledger the variable is scoped to; foreign key toGL_SETS_OF_BOOKS_11I.CURRENCY_CODE— currency context for the item; foreign key toFND_CURRENCIES.BUDGET_VERSION_ID— associated budget version; foreign key toGL_BUDGET_VERSIONS.ENCUMBRANCE_TYPE_ID— encumbrance type applied to the item; foreign key toGL_ENCUMBRANCE_TYPES.BALANCE_TYPEandCURRENCY_TYPE— control how balances and currency amounts are resolved.LEVEL_CODEandSTATUS_CODE— control flags governing the variable's scope and active state.COLUMN_LABEL— the display label used when the variable is rendered in reporting output.ID_FLEX_CODEandID_FLEX_NUM— link the item to the key flexfield and structure it draws segments from.SEGMENT1_TYPEthroughSEGMENT30_TYPE— per-segment typing that governs how each accounting flexfield segment is interpreted for the variable.CONTEXTplusATTRIBUTE1throughATTRIBUTE15— the standard EBS descriptive flexfield extension block.- Standard audit columns:
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN.
Common Use Cases and Queries
The table is primarily consumed to resolve variable definitions for Financial Analyzer content and to validate that report definitions point at valid, active financial data items. Typical queries join the variable to its ledger, currency, budget version, and encumbrance context to reproduce the filters a Financial Analyzer run would apply.
- Retrieve all active variables with their ledger and currency context:
SELECT v.variable_id, v.name, v.object_name, v.column_label, b.name ledger_name, v.currency_code FROM rg_dss_variables v, gl_sets_of_books_11i b WHERE v.ledger_id = b.set_of_books_id AND v.status_code = 'A'; - Look up a variable by its unique name or object name (both are enforced by unique indexes):
SELECT * FROM rg_dss_variables WHERE name = :name; - Inspect segment typing configuration for a given variable:
SELECT variable_id, segment1_type, segment2_type, ... segment30_type FROM rg_dss_variables WHERE variable_id = :id; - Find variables bound to a specific budget version or encumbrance type for reconciliation reporting: join on
budget_version_idorencumbrance_type_id. - Discover which system variables, dimensions, selections, or templates reference a definition by driving from those child tables back to
rg_dss_variablesonvariable_id.
Related Objects
The table participates in a network of dependent RG objects and GL reference objects. The most significant relationships, per the documented FK structure, are:
GL_SETS_OF_BOOKS_11I— referenced viaRG_DSS_VARIABLES.LEDGER_ID, supplying the ledger context.FND_CURRENCIES— referenced viaRG_DSS_VARIABLES.CURRENCY_CODE, supplying currency validation.GL_BUDGET_VERSIONS— referenced viaRG_DSS_VARIABLES.BUDGET_VERSION_ID.GL_ENCUMBRANCE_TYPES— referenced viaRG_DSS_VARIABLES.ENCUMBRANCE_TYPE_ID.RG_DSS_SYSTEM_VARIABLES— child table joined onVARIABLE_ID.RG_DSS_VAR_DIMENSIONS— child table joined onVARIABLE_ID, holding dimension assignments.RG_DSS_VAR_SELECTIONS— child table joined onVARIABLE_ID, holding selection criteria.RG_DSS_VAR_TEMPLATES— child table joined onVARIABLE_ID, holding template associations.BSC_TMP_BIG_IN_COND— a temporary/staging table that referencesVARIABLE_ID.
-
Table: RG_DSS_VARIABLES
12.2.2
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_VARIABLES, object_name:RG_DSS_VARIABLES, status:VALID, product: RG - Application Report Generator , description: Financial Analyzer financial data items , implementation_dba_data: RG.RG_DSS_VARIABLES ,
-
Table: RG_DSS_VARIABLES
12.1.1
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_VARIABLES, object_name:RG_DSS_VARIABLES, status:VALID, product: RG - Application Report Generator , description: Financial Analyzer financial data items , implementation_dba_data: RG.RG_DSS_VARIABLES ,
-
VIEW: APPS.RG_SRS_DSS_BUD_ENC_V
12.1.1
-
VIEW: APPS.RG_SRS_DSS_BUD_ENC_V
12.2.2
-
VIEW: APPS.RG_DSS_SYSTEM_VARIABLES_V
12.1.1
-
SYNONYM: APPS.RG_DSS_VARIABLES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RG_DSS_VARIABLES, status:VALID,
-
SYNONYM: APPS.RG_DSS_VARIABLES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RG_DSS_VARIABLES, status:VALID,
-
VIEW: APPS.RG_DSS_SYSTEM_VARIABLES_V
12.2.2
-
View: RG_SRS_DSS_BUD_ENC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_SRS_DSS_BUD_ENC_V, object_name:RG_SRS_DSS_BUD_ENC_V, status:VALID, product: RG - Application Report Generator , description: 10SC ONLY , implementation_dba_data: APPS.RG_SRS_DSS_BUD_ENC_V ,
-
View: RG_SRS_DSS_BUD_ENC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_SRS_DSS_BUD_ENC_V, object_name:RG_SRS_DSS_BUD_ENC_V, status:VALID, product: RG - Application Report Generator , description: 10SC ONLY , implementation_dba_data: APPS.RG_SRS_DSS_BUD_ENC_V ,
-
VIEW: RG.RG_DSS_VARIABLES#
12.2.2
owner:RG, object_type:VIEW, object_name:RG_DSS_VARIABLES#, status:VALID,
-
APPS.RG_DSS_VARIABLES_PKG SQL Statements
12.1.1
-
APPS.RG_DSS_VARIABLES_PKG SQL Statements
12.2.2
-
Table: RG_DSS_VAR_SELECTIONS
12.1.1
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_VAR_SELECTIONS, object_name:RG_DSS_VAR_SELECTIONS, status:VALID, product: RG - Application Report Generator , description: Financial Analyzer financial data item selections , implementation_dba_data: RG.RG_DSS_VAR_SELECTIONS ,
-
Table: RG_DSS_VAR_TEMPLATES
12.1.1
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_VAR_TEMPLATES, object_name:RG_DSS_VAR_TEMPLATES, status:VALID, product: RG - Application Report Generator , description: Financial Analyzer financial data item summary templates , implementation_dba_data: RG.RG_DSS_VAR_TEMPLATES ,
-
12.2.2 DBA Data
12.2.2
-
Table: RG_DSS_SYSTEM_VARIABLES
12.1.1
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_SYSTEM_VARIABLES, object_name:RG_DSS_SYSTEM_VARIABLES, status:VALID, product: RG - Application Report Generator , description: Assignments of financial data items to financial data sets , implementation_dba_data: RG.RG_DSS_SYSTEM_VARIABLES ,
-
Table: RG_DSS_VAR_DIMENSIONS
12.2.2
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_VAR_DIMENSIONS, object_name:RG_DSS_VAR_DIMENSIONS, status:VALID, product: RG - Application Report Generator , description: Financial Analyzer financial data item dimensions , implementation_dba_data: RG.RG_DSS_VAR_DIMENSIONS ,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.RG_DSS_VAR_TEMPLATES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RG_DSS_VAR_TEMPLATES_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.RG_DSS_VARIABLES_V
12.1.1
-
VIEW: APPS.RG_DSS_VARIABLES_V
12.2.2
-
VIEW: RG.RG_DSS_VARIABLES#
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.RG_DSS_VAR_TEMPLATES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RG_DSS_VAR_TEMPLATES_PKG, status:VALID,
-
View: RG_DSS_SYSTEM_VARIABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_DSS_SYSTEM_VARIABLES_V, object_name:RG_DSS_SYSTEM_VARIABLES_V, status:VALID, product: RG - Application Report Generator , description: 10SC ONLY , implementation_dba_data: APPS.RG_DSS_SYSTEM_VARIABLES_V ,
-
Table: RG_DSS_VAR_TEMPLATES
12.2.2
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_VAR_TEMPLATES, object_name:RG_DSS_VAR_TEMPLATES, status:VALID, product: RG - Application Report Generator , description: Financial Analyzer financial data item summary templates , implementation_dba_data: RG.RG_DSS_VAR_TEMPLATES ,
-
PACKAGE BODY: APPS.RG_DSS_VARIABLES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RG_DSS_VARIABLES_PKG, status:VALID,
-
Table: RG_DSS_VAR_SELECTIONS
12.2.2
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_VAR_SELECTIONS, object_name:RG_DSS_VAR_SELECTIONS, status:VALID, product: RG - Application Report Generator , description: Financial Analyzer financial data item selections , implementation_dba_data: RG.RG_DSS_VAR_SELECTIONS ,
-
Table: RG_DSS_VAR_DIMENSIONS
12.1.1
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_VAR_DIMENSIONS, object_name:RG_DSS_VAR_DIMENSIONS, status:VALID, product: RG - Application Report Generator , description: Financial Analyzer financial data item dimensions , implementation_dba_data: RG.RG_DSS_VAR_DIMENSIONS ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: RG_DSS_SYSTEM_VARIABLES
12.2.2
owner:RG, object_type:TABLE, fnd_design_data:RG.RG_DSS_SYSTEM_VARIABLES, object_name:RG_DSS_SYSTEM_VARIABLES, status:VALID, product: RG - Application Report Generator , description: Assignments of financial data items to financial data sets , implementation_dba_data: RG.RG_DSS_SYSTEM_VARIABLES ,
-
12.1.1 DBA 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
-
VIEW: APPS.RG_SRS_DSS_BUD_ENC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_SRS_DSS_BUD_ENC_V, object_name:RG_SRS_DSS_BUD_ENC_V, status:VALID,
-
PACKAGE BODY: APPS.RG_DSS_VARIABLES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RG_DSS_VARIABLES_PKG, status:VALID,
-
Table: GL_ENCUMBRANCE_TYPES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_ENCUMBRANCE_TYPES, object_name:GL_ENCUMBRANCE_TYPES, status:VALID, product: GL - General Ledger , description: Encumbrance type definitions , implementation_dba_data: GL.GL_ENCUMBRANCE_TYPES ,
-
View: RG_DSS_SYSTEM_VARIABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_DSS_SYSTEM_VARIABLES_V, object_name:RG_DSS_SYSTEM_VARIABLES_V, status:VALID, product: RG - Application Report Generator , description: 10SC ONLY , implementation_dba_data: APPS.RG_DSS_SYSTEM_VARIABLES_V ,
-
Table: GL_ENCUMBRANCE_TYPES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_ENCUMBRANCE_TYPES, object_name:GL_ENCUMBRANCE_TYPES, status:VALID, product: GL - General Ledger , description: Encumbrance type definitions , implementation_dba_data: GL.GL_ENCUMBRANCE_TYPES ,
-
eTRM - RG Tables and Views
12.1.1
-
eTRM - RG Tables and Views
12.2.2
-
VIEW: APPS.RG_SRS_DSS_BUD_ENC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_SRS_DSS_BUD_ENC_V, object_name:RG_SRS_DSS_BUD_ENC_V, status:VALID,
-
Table: GL_BUDGET_VERSIONS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGET_VERSIONS, object_name:GL_BUDGET_VERSIONS, status:VALID, product: GL - General Ledger , description: Budget version definitions , implementation_dba_data: GL.GL_BUDGET_VERSIONS ,
-
Table: GL_BUDGET_VERSIONS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGET_VERSIONS, object_name:GL_BUDGET_VERSIONS, status:VALID, product: GL - General Ledger , description: Budget version definitions , implementation_dba_data: GL.GL_BUDGET_VERSIONS ,
-
VIEW: APPS.RG_DSS_SYSTEM_VARIABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_DSS_SYSTEM_VARIABLES_V, object_name:RG_DSS_SYSTEM_VARIABLES_V, status:VALID,
-
View: RG_DSS_VARIABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RG.RG_DSS_VARIABLES_V, object_name:RG_DSS_VARIABLES_V, status:VALID, product: RG - Application Report Generator , description: - Retrofitted , implementation_dba_data: APPS.RG_DSS_VARIABLES_V ,