Search Results gcs_system_options
Overview
GCS_SYSTEM_OPTIONS is a setup table in the GCS (Financial Consolidation Hub) product of Oracle E-Business Suite, present in both 12.1.1 and 12.2.2. It stores system-level configuration for Financial Consolidation Hub, the module responsible for aggregating, translating, and consolidating subsidiary ledger data into a corporate reporting entity. The table is owned by the GCS schema and is marked VALID in the ETRM repository. Its documented physical schema under 12.1.1 contains 23 columns, governed by a single unique index, GCS_SYSTEM_OPTIONS_U1, defined on SYSTEM_OPTION_ID.
From a data-modeling standpoint, the ETRM metadata classifies this object heuristically as a standalone satellite. This classification should be treated as a modeling suggestion rather than a normative statement: the table carries descriptive configuration attributes keyed by a surrogate identifier, with no strong multi-parent dependency graph identified in the mined foreign-key structure. The FK metadata shows a single outgoing reference from GCS_SYSTEM_OPTIONS.SYSTEM_OPTION_ID to CS_SYSTEM_OPTIONS, indicating that the GCS row inherits or mirrors an option identifier from the CS (Consolidation) schema. In practice, this table behaves as a configuration singleton or near-singleton per consolidation deployment, defining which Enterprise Planning and Budgeting (EPB) and consolidation templates, hierarchies, and matching behaviors are active.
Key Information Stored
The surrogate primary key and unique business-key candidate is SYSTEM_OPTION_ID, which identifies each system option record and serves as the join key to CS_SYSTEM_OPTIONS. The remaining columns fall into several functional clusters.
- Template configuration: TB_TEMPLATE_CODE, ENTRY_TEMPLATE_CODE, AD_TEMPLATE_CODE, DS_LOAD_TEMPLATE_CODE, DS_TB_TEMPLATE_CODE, DS_IMPACTED_BAL_TEMPLATE_CODE, INTERCO_MATCH_TEMPLATE_CODE, IC_MATCH_CONS_TEMPLATE_CODE, HIER_LIST_TEMPLATE_CODE, VALUE_MAP_TEMPLATE_CODE, and WRITEBACK_TEMPLATE_CODE define the default templates used for trial balance, journal entry, data load, intercompany matching, hierarchy listing, value mapping, and writeback processing.
- Hierarchy and mapping references: LN_ITEM_HIERARCHY_OBJ_ID identifies the line-item hierarchy object used during consolidation, while FCH_GLOBAL_VS_COMBO_ID and EPB_TABLE_NAME link configuration to global value-set combinations and EPB staging table names.
- Behavioral flags and limits: INTERCO_MAP_ENABLED_FLAG controls whether intercompany mapping is active, and ONLINE_XML_REPORT_SIZE governs the size threshold for online XML reporting output.
- Standard audit and concurrency columns: CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, and OBJECT_VERSION_NUMBER provide the standard EBS who-columns and optimistic locking used by the Oracle Forms/ADF layer.
Common Use Cases and Queries
Administrators and technical consultants query this table to verify which templates and intercompany settings are active for a given consolidation configuration, especially after cloning a production instance or troubleshooting template resolution errors. A typical lookup retrieves the current option set:
SELECT system_option_id, tb_template_code, entry_template_code, interco_map_enabled_flag FROM gcs.gcs_system_options;- Joining to the parent to correlate CS-level and GCS-level option identifiers:
SELECT g.system_option_id, g.tb_template_code, c.* FROM gcs.gcs_system_options g JOIN cs.cs_system_options c ON g.system_option_id = c.system_option_id; - Auditing configuration drift across environments by comparing INTERCO_MAP_ENABLED_FLAG and template codes between instances.
- Reporting on recent configuration changes using LAST_UPDATE_DATE and LAST_UPDATED_BY.
Related Objects
The most significant related objects are those tied to the documented foreign-key path and the consolidation configuration surface:
- CS_SYSTEM_OPTIONS — parent option table joined on SYSTEM_OPTION_ID; the documented FK target.
- GCS_SYSTEM_OPTIONS_U1 — unique index on SYSTEM_OPTION_ID enforcing the business key.
- Template definition tables referenced by the various *_TEMPLATE_CODE columns (trial balance, entry, data load, intercompany match, hierarchy list, value map, writeback).
- Hierarchy metadata objects referenced by LN_ITEM_HIERARCHY_OBJ_ID.
- FCH global value-set combination records associated with FCH_GLOBAL_VS_COMBO_ID.
Because the table is a standalone satellite, its dependencies are primarily logical references to configuration entities rather than enforced child FKs, so integrity is maintained by the consolidation setup UI and concurrent program logic rather than by database constraints alone.
-
Table: GCS_SYSTEM_OPTIONS
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_SYSTEM_OPTIONS, object_name:GCS_SYSTEM_OPTIONS, status:VALID, product: GCS - Financial Consolidation Hub , description: Stores system level setup for Financial Consolidation Hub. , implementation_dba_data: GCS.GCS_SYSTEM_OPTIONS ,
-
Table: GCS_SYSTEM_OPTIONS
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Stores system level setup for Financial Consolidation Hub. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.GCS_NAT_ACCTS_HIER_V
12.1.1
-
APPS.GCS_CREATE_DYN_INDEX_PKG SQL Statements
12.1.1
-
VIEW: APPS.GCS_NAT_ACCTS_V
12.1.1
-
View: GCS_NAT_ACCTS_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_NAT_ACCTS_HIER_V, object_name:GCS_NAT_ACCTS_HIER_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Natural account hierarchy information. , implementation_dba_data: APPS.GCS_NAT_ACCTS_HIER_V ,
-
TABLE: GCS.GCS_SYSTEM_OPTIONS
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_SYSTEM_OPTIONS, object_name:GCS_SYSTEM_OPTIONS, status:VALID,
-
View: GCS_NAT_ACCTS_HIER_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Natural account hierarchy information. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.GCS_SYSTEM_OPTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GCS_SYSTEM_OPTIONS, status:VALID,
-
VIEW: APPS.GCS_ITEMS_TO_NAT_ACCTS_V
12.1.1
-
View: GCS_NAT_ACCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_NAT_ACCTS_V, object_name:GCS_NAT_ACCTS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Natural account information. , implementation_dba_data: APPS.GCS_NAT_ACCTS_V ,
-
View: GCS_NAT_ACCTS_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Natural account information. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.GCS_DATA_TEMPLATE_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_DATA_TEMPLATE_UTIL_PKG, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.GCS_NAT_ACCTS_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_NAT_ACCTS_HIER_V, object_name:GCS_NAT_ACCTS_HIER_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GCS_BUILD_EPB_DATA_TR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_BUILD_EPB_DATA_TR_PKG, status:VALID,
-
VIEW: APPS.GCS_NAT_ACCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_NAT_ACCTS_V, object_name:GCS_NAT_ACCTS_V, status:VALID,
-
PACKAGE BODY: APPS.GCS_IMPACT_WRITER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_IMPACT_WRITER_PKG, status:VALID,
-
VIEW: APPS.GCS_ITEMS_TO_NAT_ACCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_ITEMS_TO_NAT_ACCTS_V, object_name:GCS_ITEMS_TO_NAT_ACCTS_V, status:VALID,
-
View: GCS_ITEMS_TO_NAT_ACCTS_V
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Financial item to natural account relationship information. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.GCS_XML_DT_UTILITY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_XML_DT_UTILITY_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GCS_BUILD_EPB_DIM_TR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_BUILD_EPB_DIM_TR_PKG, status:VALID,
-
View: GCS_ITEMS_TO_NAT_ACCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_ITEMS_TO_NAT_ACCTS_V, object_name:GCS_ITEMS_TO_NAT_ACCTS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial item to natural account relationship information. , implementation_dba_data: APPS.GCS_ITEMS_TO_NAT_ACCTS_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GCS_WEBADI_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_WEBADI_PKG, status:VALID,
-
PACKAGE BODY: APPS.GCS_UTILITY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_UTILITY_PKG, status:VALID,
-
PACKAGE BODY: APPS.GCS_CONS_ENGINE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_CONS_ENGINE_PKG, status:VALID,
-
PACKAGE BODY: APPS.GCS_DP_DYNAMIC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_DP_DYNAMIC_PKG, status:VALID,
-
PACKAGE BODY: APPS.GCS_DATASUB_WF_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_DATASUB_WF_PKG, status:VALID,
-
PACKAGE BODY: APPS.GCS_CREATE_DYN_INDEX_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GCS_CREATE_DYN_INDEX_PKG, status:VALID,
-
APPS.GCS_XML_DT_UTILITY_PKG SQL Statements
12.1.1
-
APPS.GCS_BUILD_EPB_DATA_TR_PKG SQL Statements
12.1.1
-
APPS.GCS_BUILD_EPB_DIM_TR_PKG SQL Statements
12.1.1
-
APPS.GCS_DATA_TEMPLATE_UTIL_PKG SQL Statements
12.1.1
-
APPS.GCS_WEBADI_PKG SQL Statements
12.1.1
-
APPS.GCS_UTILITY_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GCS_CREATE_DYN_INDEX_PKG
12.1.1
-
APPS.GCS_IMPACT_WRITER_PKG SQL Statements
12.1.1
-
eTRM - GCS Tables and Views
12.1.1
description: XML generated for XML Publisher reporting ,
-
APPS.GCS_DATA_TEMPLATE_UTIL_PKG dependencies on GCS_SYSTEM_OPTIONS
12.1.1
-
APPS.GCS_BUILD_EPB_DATA_TR_PKG dependencies on GCS_SYSTEM_OPTIONS
12.1.1
-
APPS.GCS_XML_DT_UTILITY_PKG dependencies on GCS_SYSTEM_OPTIONS
12.1.1
-
APPS.GCS_CONS_ENGINE_PKG dependencies on GCS_SYSTEM_OPTIONS
12.1.1
-
APPS.GCS_CREATE_DYN_INDEX_PKG dependencies on GCS_SYSTEM_OPTIONS
12.1.1
-
APPS.GCS_BUILD_EPB_DIM_TR_PKG dependencies on GCS_SYSTEM_OPTIONS
12.1.1
-
APPS.GCS_UTILITY_PKG dependencies on GCS_SYSTEM_OPTIONS
12.1.1
-
APPS.GCS_IMPACT_WRITER_PKG dependencies on GCS_SYSTEM_OPTIONS
12.1.1