Search Results user_dim10_id
Overview
APPS.GCS_FEM_ACTIVE_DIMS_V is a metadata view in Oracle E-Business Suite that exposes the set of dimension columns actively enabled as processing keys on the FEM_BALANCES table. It is part of the Enterprise Tax, Regulatory and Reporting Management (ETRM / Financial Consolidation Hub) schema owned by GCS. Rather than storing balances or transactional data, the view returns configuration information: for each dimension column on FEM_BALANCES that has been designated a processing key, it returns the translated display name, the physical column name, and a numeric ordering value used to sequence the dimension when it is presented to end users or consumed by processing logic.
Its reporting and integration role is that of a discovery mechanism. Downstream reports, extracts, and custom integrations that need to enumerate the active dimensions of the FEM_BALANCES model — rather than hardcode them — can query this view to obtain a language-sensitive, correctly ordered list. The column ordering is derived from the DECODE expression, which maps selected dimensions to fixed ordinals while assigning all remaining dimensions the default order 3.
Underlying Base Objects
The view is defined over two documented base objects:
- FEM_TAB_COLUMNS_TL — the translated column registry for FEM tables. The alias FTCB supplies DISPLAY_NAME and COLUMN_NAME, and is joined on TABLE_NAME and COLUMN_NAME.
- FEM_TAB_COLUMN_PROP — the column property table. The alias FTCP is filtered with COLUMN_PROPERTY_CODE = 'PROCESSING_KEY', which restricts the result set to those FEM_BALANCES columns that participate in processing key resolution.
The join is further constrained by TABLE_NAME = 'FEM_BALANCES' and LANGUAGE = USERENV('LANG'), so each row is filtered both to the balances table and to the session's language. The IN list explicitly enumerates the twenty columns eligible to appear, including the standard dimensions (CHANNEL_ID, CUSTOMER_ID, NATURAL_ACCOUNT_ID, PRODUCT_ID, PROJECT_ID, TASK_ID, FINANCIAL_ELEM_ID) and the USER_DIM1_ID through USER_DIM10_ID generic slots.
Key Columns
- DISPLAY_NAME — the user-facing, language-translated label for the dimension, suitable for report headers and LOVs.
- COLUMN_NAME — the physical column identifier on FEM_BALANCES, required when constructing dynamic SQL.
- COLUMN_ORDER — a derived integer used for sorting and presentation. COMPANY_COST_CENTER_ORG_ID returns 1; LINE_ITEM_ID returns 2; USER_DIM10_ID returns 4; INTERCOMPANY_ID returns 5; and all other listed dimensions return the default 3.
The USER_DIM10_ID value of 4 reflects its fixed position in the DECODE mapping, distinguishing the tenth user dimension — and INTERCOMPANY_ID, which follows it — from the bulk of the standard dimensions.
Common Use Cases and Queries
A frequent requirement is to determine how the user dimensions are sequenced within the active dimension set, which is the context in which USER_DIM10_ID is typically searched. The following query returns the ordered dimension list:
- SELECT display_name, column_name, column_order FROM apps.gcs_fem_active_dims_v ORDER BY column_order, column_name;
- SELECT column_name, column_order FROM apps.gcs_fem_active_dims_v WHERE column_name = 'USER_DIM10_ID'; — confirms the ordinal 4 assigned to this dimension.
- SELECT display_name FROM apps.gcs_fem_active_dims_v WHERE column_name LIKE 'USER_DIM%' ORDER BY column_order;
These queries are commonly embedded in dynamic balance-extraction routines, dimension-driven report generators, and validation scripts that verify FEM_BALANCES processing key configuration before a consolidation run. Because results depend on USERENV('LANG') and on the enabled PROCESSING_KEY property, the view always reflects the current configuration of the balances model in the given session language.
-
APPS.FEM_USER_DIM10_PKG SQL Statements
12.1.1
-
VIEW: APPS.GCS_FEM_ACTIVE_DIMS_V
12.1.1
-
VIEW: APPS.GCS_ACTIVE_DIMS_V
12.1.1
-
APPS.GCS_INTERCO_DYN_BUILD_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FEM_USER_DIM10_PKG
12.1.1
-
TABLE: FEM.FEM_USER_DIM10_TL
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_USER_DIM10_TL, status:VALID,
-
View: GCS_ACTIVE_DIMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_ACTIVE_DIMS_V, object_name:GCS_ACTIVE_DIMS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: FCH Active Dimension Information , implementation_dba_data: APPS.GCS_ACTIVE_DIMS_V ,
-
APPS.FEM_DATA_TEMPLATE_UTIL_PKG SQL Statements
12.1.1
-
View: GCS_FEM_ACTIVE_DIMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FEM_ACTIVE_DIMS_V, object_name:GCS_FEM_ACTIVE_DIMS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: FEM Active Dimension Information , implementation_dba_data: APPS.GCS_FEM_ACTIVE_DIMS_V ,
-
VIEW: APPS.FEM_DSNP_USER_DIM10_ATTR_V
12.1.1
-
TABLE: FEM.FEM_USER_DIM10_PRIV
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_USER_DIM10_PRIV, status:VALID,
-
TABLE: FEM.FEM_USER_DIM10_ATTR
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_USER_DIM10_ATTR, status:VALID,
-
APPS.GCS_TRANS_RE_DYN_BUILD_PKG SQL Statements
12.1.1
-
APPS.GCS_TRANS_HRATES_DYN_BUILD_PKG SQL Statements
12.1.1
-
View: GCS_FEM_ACTIVE_DIMS_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: FEM Active Dimension Information , implementation_dba_data: Not implemented in this database ,
-
TABLE: FEM.FEM_DSNP_USER_DIM10_ATTR
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_DSNP_USER_DIM10_ATTR, status:VALID,
-
View: GCS_ACTIVE_DIMS_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: FCH Active Dimension Information , implementation_dba_data: Not implemented in this database ,
-
APPS.GCS_XML_DYNAMIC_PKG SQL Statements
12.1.1
-
TABLE: FEM.FEM_USER_DIM10_B
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_USER_DIM10_B, status:VALID,
-
PACKAGE BODY: APPS.GCS_XML_DYNAMIC_PKG
12.1.1
-
VIEW: APPS.FEM_USER_DIM10_VS
12.1.1
owner:APPS, object_type:VIEW, object_name:FEM_USER_DIM10_VS, status:VALID,
-
TABLE: GCS.GCS_FEM_POSTING_GT
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_FEM_POSTING_GT, object_name:GCS_FEM_POSTING_GT, status:VALID,
-
VIEW: APPS.FEM_USER_DIM10_ATTR_VS
12.1.1
owner:APPS, object_type:VIEW, object_name:FEM_USER_DIM10_ATTR_VS, status:VALID,
-
TABLE: FEM.FEM_TRANS_OFF_BAL_SHEET
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_OFF_BAL_SHEET, status:VALID,
-
TABLE: FEM.FEM_TRANS_MORTGAGES
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_MORTGAGES, status:VALID,
-
TABLE: FEM.FEM_TRANS_MTG_BACKED_SEC
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_MTG_BACKED_SEC, status:VALID,
-
TABLE: FEM.FEM_TRANS_TERM_DEPOSITS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_TERM_DEPOSITS, status:VALID,
-
TABLE: FEM.FEM_TRANS_LOAN_LOSS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_LOAN_LOSS, status:VALID,
-
TABLE: FEM.FEM_TRANS_MERCHANT_CARDS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_MERCHANT_CARDS, status:VALID,
-
TABLE: APPS.FEM_INTG_GL_WRTBK_BAL_GT
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.FEM_INTG_GL_WRTBK_BAL_GT, object_name:FEM_INTG_GL_WRTBK_BAL_GT, status:VALID,
-
APPS.FEM_SETUP_PKG SQL Statements
12.1.1
-
APPS.GCS_TRANS_DYNAMIC_PKG SQL Statements
12.1.1
-
VIEW: APPS.FEM_USER_DIM10_VL
12.1.1
owner:APPS, object_type:VIEW, object_name:FEM_USER_DIM10_VL, status:VALID,
-
VIEW: APPS.FEM_DSNP_USER_DIM10_ATTR_V
12.1.1
owner:APPS, object_type:VIEW, object_name:FEM_DSNP_USER_DIM10_ATTR_V, status:VALID,
-
TABLE: FEM.FEM_TRANS_COMMERCIAL
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_COMMERCIAL, status:VALID,
-
TABLE: FEM.FEM_TRANS_CHECKING
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_CHECKING, status:VALID,
-
TABLE: FEM.FEM_BAL_POST_INTERIM_GT
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_BAL_POST_INTERIM_GT, status:VALID,
-
TABLE: FEM.FEM_TRANS_SAVINGS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_SAVINGS, status:VALID,
-
TABLE: FEM.FEM_TRANS_COLLATERALS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_COLLATERALS, status:VALID,
-
TABLE: FEM.FEM_TRANS_TRUSTS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_TRUSTS, status:VALID,
-
APPS.GCS_AGGREGATION_PKG SQL Statements
12.1.1
-
TABLE: FEM.FEM_TRANS_LEASES
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_LEASES, status:VALID,
-
TABLE: GCS.GCS_AD_TRIAL_BALANCES
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_AD_TRIAL_BALANCES, object_name:GCS_AD_TRIAL_BALANCES, status:VALID,
-
TABLE: FEM.FEM_TRANS_CREDIT_CARDS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_CREDIT_CARDS, status:VALID,
-
TABLE: FEM.FEM_TRANS_OTHER_SERVICES
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_OTHER_SERVICES, status:VALID,
-
TABLE: FEM.FEM_TRANS_CONSUMER
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_CONSUMER, status:VALID,
-
TABLE: FEM.FEM_TRANS_CREDIT_LINES
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_CREDIT_LINES, status:VALID,
-
PACKAGE BODY: APPS.GCS_DYNAMIC_UTIL_PKG
12.1.1
-
TABLE: FEM.FEM_TRANS_RETIREMENT
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_RETIREMENT, status:VALID,
-
TABLE: FEM.FEM_TRANS_INVESTMENTS
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_TRANS_INVESTMENTS, status:VALID,