Search Results gcs_hierarchies_b
Overview
The GCS_HIERARCHIES_B table is the central header table for consolidation hierarchies within Oracle E-Business Suite's Financial Consolidation Hub (GCS) module. It serves as the master definition table for every distinct consolidation hierarchy configured in the system. A hierarchy defines the organizational structure used for financial reporting and consolidation processes, such as legal entity roll-ups, intercompany eliminations, and currency translation. The table's role is foundational; it stores the core metadata that governs how financial data is aggregated, validated, and reported across the enterprise. Its integrity is critical, as evidenced by its numerous foreign key relationships with transactional and configuration tables throughout the GCS module.
Key Information Stored
While the provided metadata does not list specific columns beyond the primary and foreign keys, the table's description and relationships indicate it stores essential header-level attributes for each hierarchy. The primary key, HIERARCHY_ID, uniquely identifies each hierarchy definition. A critical foreign key, THRESHOLD_CURRENCY, references the FND_CURRENCIES table, establishing the base currency used for materiality thresholds within the consolidation process. Other typical columns in such a header table would include the hierarchy name, description, status (e.g., active, inactive), effective dates, consolidation method flags, and various control parameters that dictate the behavior of the consolidation engine for that specific hierarchy.
Common Use Cases and Queries
This table is primarily accessed for configuration management, data integrity validation, and reporting on the consolidation setup. Common operational scenarios include retrieving a list of all active hierarchies for a reporting process, validating the currency setup before running a consolidation, or identifying all configuration objects tied to a specific hierarchy during a migration or upgrade. A typical query would join GCS_HIERARCHIES_B with its translated description table, GCS_HIERARCHIES_TL, to retrieve user-friendly names. For troubleshooting, one might query the header to ensure it is active before investigating related transactional data. Sample SQL to list hierarchies with their base threshold currency would be:
- SELECT h.HIERARCHY_ID, tl.NAME, h.THRESHOLD_CURRENCY, c.NAME
- FROM GCS_HIERARCHIES_B h,
- GCS_HIERARCHIES_TL tl,
- FND_CURRENCIES c
- WHERE h.HIERARCHY_ID = tl.HIERARCHY_ID
- AND h.THRESHOLD_CURRENCY = c.CURRENCY_CODE
- AND tl.LANGUAGE = USERENV('LANG');
Related Objects
The GCS_HIERARCHIES_B table has a pivotal relationship with numerous other GCS tables, acting as a parent record for a wide array of consolidation configuration and transaction data. It references the FND_CURRENCIES table via the THRESHOLD_CURRENCY column. Crucially, it is referenced by the following key tables via the HIERARCHY_ID foreign key:
- GCS_CONS_RELATIONSHIPS: Stores parent-child relationships between entities within the hierarchy.
- GCS_DATASET_CODES & GCS_DIMENSION_TEMPLATES: Hold configuration for data sets and reporting dimensions specific to the hierarchy.
- GCS_ENTITY_CONS_ATTRS & GCS_HISTORICAL_RATES: Contain entity-level consolidation attributes and historical exchange rates for the hierarchy.
- GCS_ENTRY_HEADERS & GCS_INTERCO_ELM_TRX: Store journal entry headers and intercompany elimination transactions.
- GCS_TRANSLATION_STATUSES & GCS_TRANSLATION_TRACK_H: Track the status and history of currency translation runs.
- GCS_HIERARCHIES_TL: The translation table that provides language-specific names and descriptions.
- GCS_ROLE_HIER_RELNS: Manages security access by linking roles to specific hierarchies.
-
Table: GCS_HIERARCHIES_B
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_HIERARCHIES_B, object_name:GCS_HIERARCHIES_B, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS hierarchy header information , implementation_dba_data: GCS.GCS_HIERARCHIES_B ,
-
Table: GCS_INTERCO_ELM_TRX
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_INTERCO_ELM_TRX, object_name:GCS_INTERCO_ELM_TRX, status:VALID, product: GCS - Financial Consolidation Hub , description: Intercompany transactions table. , implementation_dba_data: GCS.GCS_INTERCO_ELM_TRX ,
-
View: GCS_FIN_STMTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FIN_STMTS_V, object_name:GCS_FIN_STMTS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial statement information , implementation_dba_data: APPS.GCS_FIN_STMTS_V ,
-
Table: GCS_ENTITY_CONS_ATTRS
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_ENTITY_CONS_ATTRS, object_name:GCS_ENTITY_CONS_ATTRS, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS consolidation hierarchy node information , implementation_dba_data: GCS.GCS_ENTITY_CONS_ATTRS ,
-
Table: GCS_DIMENSION_TEMPLATES
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_DIMENSION_TEMPLATES, object_name:GCS_DIMENSION_TEMPLATES, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS dimension templates for retained earnings and suspense handling , implementation_dba_data: GCS.GCS_DIMENSION_TEMPLATES ,
-
Table: GCS_ROLE_HIER_RELNS
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_ROLE_HIER_RELNS, object_name:GCS_ROLE_HIER_RELNS, status:VALID, product: GCS - Financial Consolidation Hub , description: Role and hierarchy relationship information , implementation_dba_data: GCS.GCS_ROLE_HIER_RELNS ,
-
Table: GCS_DATASET_CODES
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_DATASET_CODES, object_name:GCS_DATASET_CODES, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS hierarchy dataset code information , implementation_dba_data: GCS.GCS_DATASET_CODES ,
-
Table: GCS_ENTRY_HEADERS
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_ENTRY_HEADERS, object_name:GCS_ENTRY_HEADERS, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS consolidation entry headers , implementation_dba_data: GCS.GCS_ENTRY_HEADERS ,
-
Table: GCS_HIERARCHIES_TL
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_HIERARCHIES_TL, object_name:GCS_HIERARCHIES_TL, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS consolidation hierarchy header name and description information , implementation_dba_data: GCS.GCS_HIERARCHIES_TL ,
-
View: GCS_FINANCIAL_ITEMS_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FINANCIAL_ITEMS_HIER_V, object_name:GCS_FINANCIAL_ITEMS_HIER_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial item hierarchy information. , implementation_dba_data: APPS.GCS_FINANCIAL_ITEMS_HIER_V ,
-
Table: GCS_CONS_RELATIONSHIPS
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_CONS_RELATIONSHIPS, object_name:GCS_CONS_RELATIONSHIPS, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS consolidation hierarchy relationship information , implementation_dba_data: GCS.GCS_CONS_RELATIONSHIPS ,
-
Table: GCS_HISTORICAL_RATES
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_HISTORICAL_RATES, object_name:GCS_HISTORICAL_RATES, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS historical rates information , implementation_dba_data: GCS.GCS_HISTORICAL_RATES ,
-
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 ,
-
Table: GCS_TRANSLATION_TRACK_H
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_TRANSLATION_TRACK_H, object_name:GCS_TRANSLATION_TRACK_H, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS translation tracking information , implementation_dba_data: GCS.GCS_TRANSLATION_TRACK_H ,
-
Table: GCS_TRANSLATION_STATUSES
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_TRANSLATION_STATUSES, object_name:GCS_TRANSLATION_STATUSES, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS translation status information , implementation_dba_data: GCS.GCS_TRANSLATION_STATUSES ,
-
View: GCS_FIN_STMT_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FIN_STMT_DTLS_V, object_name:GCS_FIN_STMT_DTLS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial statement translatable information , implementation_dba_data: APPS.GCS_FIN_STMT_DTLS_V ,
-
View: GCS_FINANCIAL_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_FINANCIAL_ITEMS_V, object_name:GCS_FINANCIAL_ITEMS_V, status:VALID, product: GCS - Financial Consolidation Hub , description: Financial item information. , implementation_dba_data: APPS.GCS_FINANCIAL_ITEMS_V ,
-
View: GCS_HIERARCHIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_HIERARCHIES_VL, object_name:GCS_HIERARCHIES_VL, status:VALID, product: GCS - Financial Consolidation Hub , description: Consolidation hierarchy information , implementation_dba_data: APPS.GCS_HIERARCHIES_VL ,