Search Results gl_auto_alloc_sets
Overview
The GL_AUTO_ALLOC_SETS table is a core data object within the Oracle E-Business Suite General Ledger (GL) module. It serves as the master definition table for autoallocation sets, which are configurations used to automate complex financial allocations. These allocations, which can be structured as step-down (sequential) or parallel, are essential for distributing costs, revenues, or statistical amounts across different departments, cost centers, or other segments of the chart of accounts. The table defines the fundamental properties of an allocation set, linking it to a specific ledger (Set of Books) and providing the framework for the detailed allocation rules and batches that execute the calculations.
Key Information Stored
The table's primary purpose is to store the header-level attributes for an allocation set. The central column is the ALLOCATION_SET_ID, which is the unique system-generated identifier and the table's primary key. This ID is referenced throughout the allocation subsystem. Another critical column is SET_OF_BOOKS_ID, a foreign key linking the allocation set to a specific ledger in the GL_SETS_OF_BOOKS table, ensuring allocations are performed within the correct accounting context. While the provided metadata does not list all columns, typical attributes stored in this or related tables include the allocation set name, description, status (e.g., Active, Inactive), type (step-down or parallel), and effective date ranges. This table acts as the parent record for the detailed steps and rules defined in child tables.
Common Use Cases and Queries
This table is central to administering and reporting on autoallocation configurations. Common operational use cases include identifying all allocation sets defined for a specific ledger, auditing set definitions, and troubleshooting allocation batch errors by tracing them back to their source definition. A typical reporting query would join GL_AUTO_ALLOC_SETS with GL_SETS_OF_BOOKS to list allocation sets by ledger name. For technical support, one might query the relationship between a failing batch and its set definition.
- Sample Query:
SELECT gas.allocation_set_id, gas.name, sob.name ledger_name FROM gl_auto_alloc_sets gas, gl_sets_of_books sob WHERE gas.set_of_books_id = sob.set_of_books_id AND sob.name = 'US Ledger'; - Administration: Identifying inactive or obsolete allocation sets for cleanup.
- Integration: Serving as a reference point for custom programs or data extracts that need to understand the allocation framework.
Related Objects
As indicated by the foreign key relationships, GL_AUTO_ALLOC_SETS is a pivotal parent table within the autoallocation architecture. Its primary key is referenced by several key child objects. The GL_AUTO_ALLOC_BATCHES table stores individual execution instances of an allocation set, linking each batch run to its parent definition via the ALLOCATION_SET_ID. The GL_AUTO_ALLOC_SET_HISTORY table tracks changes to the allocation set over time. Furthermore, the table has a mandatory dependency on the GL_SETS_OF_BOOKS (ledgers) table to enforce ledger validity. In practice, allocation sets are comprised of multiple steps and rules; therefore, this table also has logical relationships (often via the allocation set ID) with other core allocation tables such as GL_AUTO_ALLOC_STEPS and GL_AUTO_ALLOC_RULES, which store the procedural and calculation details.
-
Table: GL_AUTO_ALLOC_SETS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SETS, object_name:GL_AUTO_ALLOC_SETS, status:VALID, product: GL - General Ledger , description: Autoallocation set definition for step-down or parallel allocations , implementation_dba_data: GL.GL_AUTO_ALLOC_SETS ,
-
Table: GL_AUTO_ALLOC_SETS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SETS, object_name:GL_AUTO_ALLOC_SETS, status:VALID, product: GL - General Ledger , description: Autoallocation set definition for step-down or parallel allocations , implementation_dba_data: GL.GL_AUTO_ALLOC_SETS ,
-
APPS.GL_AUTO_ALLOC_SET_PKG dependencies on GL_AUTO_ALLOC_SETS
12.1.1
-
APPS.GL_AUTO_ALLOC_SET_PKG dependencies on GL_AUTO_ALLOC_SETS
12.2.2
-
SYNONYM: APPS.GL_AUTO_ALLOC_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_AUTO_ALLOC_SETS, status:VALID,
-
APPS.GL_AUTO_ALLOC_SET_PKG SQL Statements
12.1.1
-
VIEW: GL.GL_AUTO_ALLOC_SETS#
12.2.2
owner:GL, object_type:VIEW, object_name:GL_AUTO_ALLOC_SETS#, status:VALID,
-
SYNONYM: APPS.GL_AUTO_ALLOC_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_AUTO_ALLOC_SETS, status:VALID,
-
VIEW: APPS.GL_AUTO_ALLOC_SETS_V
12.2.2
-
VIEW: GL.GL_AUTO_ALLOC_SETS#
12.2.2
-
TABLE: GL.GL_AUTO_ALLOC_SETS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SETS, object_name:GL_AUTO_ALLOC_SETS, status:VALID,
-
APPS.GL_AUTO_ALLOC_SET_PKG SQL Statements
12.2.2
-
VIEW: APPS.GL_AUTO_ALLOC_SETS_V
12.1.1
-
TABLE: GL.GL_AUTO_ALLOC_SETS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SETS, object_name:GL_AUTO_ALLOC_SETS, status:VALID,
-
Table: GL_AUTO_ALLOC_SET_HISTORY
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SET_HISTORY, object_name:GL_AUTO_ALLOC_SET_HISTORY, status:VALID, product: GL - General Ledger , description: History of allocation set runs , implementation_dba_data: GL.GL_AUTO_ALLOC_SET_HISTORY ,
-
Table: GL_AUTO_ALLOC_BATCHES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_BATCHES, object_name:GL_AUTO_ALLOC_BATCHES, status:VALID, product: GL - General Ledger , description: Assignments of MassAllocation, Mass Budgets, Mass Encumbrances, Recurring Journals or Projects batches to an allocation set , implementation_dba_data: GL.GL_AUTO_ALLOC_BATCHES ,
-
Table: GL_AUTO_ALLOC_BATCHES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_BATCHES, object_name:GL_AUTO_ALLOC_BATCHES, status:VALID, product: GL - General Ledger , description: Assignments of MassAllocation, Mass Budgets, Mass Encumbrances, Recurring Journals or Projects batches to an allocation set , implementation_dba_data: GL.GL_AUTO_ALLOC_BATCHES ,
-
PACKAGE BODY: APPS.GL_AUTO_ALLOC_SET_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_AUTO_ALLOC_SET_PKG, status:VALID,
-
VIEW: APPS.GL_AUTO_ALLOC_SET_HISTORY_V
12.2.2
-
Table: GL_AUTO_ALLOC_SET_HISTORY
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SET_HISTORY, object_name:GL_AUTO_ALLOC_SET_HISTORY, status:VALID, product: GL - General Ledger , description: History of allocation set runs , implementation_dba_data: GL.GL_AUTO_ALLOC_SET_HISTORY ,
-
PACKAGE BODY: APPS.GL_AUTO_ALLOC_SET_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_AUTO_ALLOC_SET_PKG, status:VALID,
-
VIEW: APPS.GL_AUTO_ALLOC_SET_HISTORY_V
12.1.1
-
APPS.GL_AUTO_ALLOC_SET_PKG dependencies on GL_AUTO_ALLOC_BATCHES
12.2.2
-
View: GL_AUTO_ALLOC_SETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SETS_V, object_name:GL_AUTO_ALLOC_SETS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_AUTO_ALLOC_SETS_V ,
-
APPS.GL_AUTO_ALLOC_SET_PKG dependencies on GL_AUTO_ALLOC_BATCHES
12.1.1
-
View: GL_AUTO_ALLOC_SET_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SET_HISTORY_V, object_name:GL_AUTO_ALLOC_SET_HISTORY_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_AUTO_ALLOC_SET_HISTORY_V ,
-
View: GL_AUTO_ALLOC_SET_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SET_HISTORY_V, object_name:GL_AUTO_ALLOC_SET_HISTORY_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_AUTO_ALLOC_SET_HISTORY_V ,
-
View: GL_AUTO_ALLOC_SETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SETS_V, object_name:GL_AUTO_ALLOC_SETS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_AUTO_ALLOC_SETS_V ,
-
PACKAGE BODY: APPS.GL_AUTO_ALLOC_SET_PKG
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.GL_AUTO_ALLOC_SETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SETS_V, object_name:GL_AUTO_ALLOC_SETS_V, status:VALID,
-
VIEW: APPS.GL_AUTO_ALLOC_SET_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SET_HISTORY_V, object_name:GL_AUTO_ALLOC_SET_HISTORY_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GL_AUTO_ALLOC_SET_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.GL_AUTO_ALLOC_SET_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SET_HISTORY_V, object_name:GL_AUTO_ALLOC_SET_HISTORY_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
Table: GL_SETS_OF_BOOKS
12.2.2
product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: Not implemented in this database ,
-
12.2.2 DBA Data
12.2.2
-
Table: GL_SETS_OF_BOOKS
12.1.1
product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.GL_AUTO_ALLOC_SETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_AUTO_ALLOC_SETS_V, object_name:GL_AUTO_ALLOC_SETS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
eTRM - SQLGL Tables and Views
12.2.2
description: This table contains the tracking information that Golden Gate will use to launch Journal Import. ,
-
PACKAGE BODY: APPS.GL_DEFAS_ACCESS_DETAILS_PKG
12.1.1
-
PACKAGE BODY: APPS.GL_DEFAS_ACCESS_DETAILS_PKG
12.2.2
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,