Search Results gcs_categories_b
Overview
The GCS_CATEGORIES_B table is a core reference data object within the Oracle E-Business Suite module GCS - Financial Consolidation Hub. As indicated by its description, it stores the non-translatable information for processing categories. In the context of financial consolidation, a processing category is a fundamental classification used to define and manage different types of consolidation data processing runs, such as currency translation, intercompany elimination, or equity elimination. This table serves as the master source for valid category codes, ensuring data integrity and consistency across the consolidation engine. It is important to note that the Financial Consolidation Hub module is marked as obsolete in the provided ETRM metadata for both EBS 12.1.1 and 12.2.2.
Key Information Stored
The primary information stored in this table is the unique identifier for a consolidation processing category. The documented structure is minimal, but the central column is the CATEGORY_CODE, which serves as the table's primary key. This code is a critical lookup value used throughout the consolidation engine to tag and differentiate specific processing activities. While the ETRM excerpt does not list additional columns, typical reference tables in EBS often include supporting columns such as ENABLED_FLAG, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY for standard WHO column auditing. The "B" suffix in the table name indicates it is the base table, with corresponding translatable descriptions likely stored in a related "_TL" (translation) table.
Common Use Cases and Queries
The primary use case for GCS_CATEGORIES_B is as a validation and reporting reference for consolidation runs. It is queried to populate lists of available categories in the application's user interface or to validate category codes entered during the setup of a consolidation process. A common reporting need would be to list all active processing categories defined in the system. A typical query pattern would involve joining with its translation table (if available) to retrieve user-friendly names. Given its status as a key reference table, direct data manipulation via DML is rare and typically managed through the application's administration screens.
- Sample Query to List Categories:
SELECT category_code FROM gcs_categories_b WHERE enabled_flag = 'Y' ORDER BY category_code; - Use in Validation: The consolidation engine references this table to ensure that a
CATEGORY_CODEspecified for a processing run is valid before execution.
Related Objects
The GCS_CATEGORIES_B table has a direct parent-child relationship with the consolidation execution details table, as documented in the provided foreign key metadata. The primary key of GCS_CATEGORIES_B (CATEGORY_CODE) is referenced by the following object:
- GCS_CONS_ENG_RUN_DTLS: The
CATEGORY_CODEcolumn in this table is a foreign key that points toGCS_CATEGORIES_B.CATEGORY_CODE. This relationship ensures that every consolidation engine run detail record is associated with a valid, predefined processing category. This is a critical link for tracing and reporting on the types of consolidation processes that have been executed.
-
Table: GCS_CATEGORIES_B
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_CATEGORIES_B, object_name:GCS_CATEGORIES_B, status:VALID, product: GCS - Financial Consolidation Hub , description: Non-Translatable Information for the Processing Categories , implementation_dba_data: GCS.GCS_CATEGORIES_B ,
-
Table: GCS_CONS_ENG_RUN_DTLS
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_CONS_ENG_RUN_DTLS, object_name:GCS_CONS_ENG_RUN_DTLS, status:VALID, product: GCS - Financial Consolidation Hub , description: Detail level information for consolidation processes , implementation_dba_data: GCS.GCS_CONS_ENG_RUN_DTLS ,
-
View: GCS_CATEGORIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_CATEGORIES_VL, object_name:GCS_CATEGORIES_VL, status:VALID, product: GCS - Financial Consolidation Hub , description: Categories information. , implementation_dba_data: APPS.GCS_CATEGORIES_VL ,