Search Results gl_aloc_exp
Overview
The GL_ALOC_EXP table is a core data structure within the Oracle E-Business Suite (EBS) Process Manufacturing Financials (GMF) module, specifically for versions 12.1.1 and 12.2.2. It serves as a detailed repository for expense allocation rules. The table's primary function is to store the specific expense sources that are defined for a given allocation code. During the General Ledger (GL) expense allocation process, the system queries this table to determine the total pool of expenses that must be allocated across designated cost centers, departments, or other accounting entities. It acts as the child table that holds the line-level detail for an allocation definition, which is managed in the parent GL_ALOC_MST table.
Key Information Stored
The table's structure is defined by its primary key, which consists of the columns ALLOC_ID and LINE_NO. This design allows multiple expense source lines to be associated with a single allocation code. The ALLOC_ID is a foreign key that links each expense line back to its master allocation definition in GL_ALOC_MST. The LINE_NO ensures the order and uniqueness of each expense rule within an allocation. While the provided metadata does not list all columns, typical data stored in such a table includes identifiers for the specific GL accounts or ranges of accounts that constitute the expense pool, along with potential filters based on cost centers, natural accounts, or product lines. The data essentially answers the question: "Which expenses are we going to allocate?" for a given allocation run.
Common Use Cases and Queries
The primary use case is the execution and auditing of the GL expense allocation process. A system administrator or financial analyst might query this table to review or validate the setup of an allocation rule before a period-end close. Common SQL patterns include joining to the master table to get a complete view of an allocation definition. For example:
- Listing all expense sources for a specific allocation code:
SELECT * FROM GMF.GL_ALOC_EXP WHERE ALLOC_ID = <id> ORDER BY LINE_NO; - Reviewing the full allocation setup:
SELECT mst.ALLOC_CODE, exp.* FROM GMF.GL_ALOC_MST mst, GMF.GL_ALOC_EXP exp WHERE mst.ALLOC_ID = exp.ALLOC_ID;
This table is directly read by the allocation engine, and its data is critical for generating accurate journal entries that distribute shared expenses, such as overhead, rent, or IT costs, to appropriate benefiting organizations.
Related Objects
The most critical related object is the parent table, GL_ALOC_MST, which contains the header-level information for the allocation code, such as the code, description, and allocation method. The relationship is enforced by the foreign key constraint GL_ALOC_EXP.ALLOC_ID referencing GL_ALOC_MST.ALLOC_ID. While not listed in the metadata, other related tables likely include GL_ALOC_BAS (defining the allocation basis, or "how" to allocate) and GL_ALOC_DST (defining the destination accounts, or "where" to allocate). The data across these tables collectively defines a complete allocation rule. This table is owned by the GMF schema, confirming its integral role within the Process Manufacturing Financials product family.
-
Table: GL_ALOC_EXP
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GL_ALOC_EXP, object_name:GL_ALOC_EXP, status:VALID, product: GMF - Process Manufacturing Financials , description: This table contains the expense to allocate information for an allocation code. The data from this table is used for GL expense allocation processing in determining total expense to allocate. , implementation_dba_data: GMF.GL_ALOC_EXP ,
-
Table: GL_ALOC_EXP
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GL_ALOC_EXP, object_name:GL_ALOC_EXP, status:VALID, product: GMF - Process Manufacturing Financials , description: This table contains the expense to allocate information for an allocation code. The data from this table is used for GL expense allocation processing in determining total expense to allocate. , implementation_dba_data: GMF.GL_ALOC_EXP ,
-
APPS.GMF_MIGRATION dependencies on GL_ALOC_EXP
12.1.1
-
APPS.GMF_ALLOC_PROC dependencies on GL_ALOC_EXP
12.2.2
-
APPS.GMF_ALLOC_PROC dependencies on GL_ALOC_EXP
12.1.1
-
APPS.GMF_MIGRATION dependencies on GL_ALOC_EXP
12.2.2
-
VIEW: GMF.GL_ALOC_EXP#
12.2.2
owner:GMF, object_type:VIEW, object_name:GL_ALOC_EXP#, status:VALID,
-
VIEW: APPS.GL_ALOC_EXP_V
12.2.2
-
SYNONYM: APPS.GL_ALOC_EXP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_ALOC_EXP, status:VALID,
-
SYNONYM: APPS.GL_ALOC_EXP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_ALOC_EXP, status:VALID,
-
VIEW: APPS.GL_ALOC_EXP_V
12.1.1
-
VIEW: GMF.GL_ALOC_EXP#
12.2.2
-
View: GL_ALOC_EXP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GL_ALOC_EXP_V, object_name:GL_ALOC_EXP_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View to enable master-detail relationship on Expenses to Allocate form , implementation_dba_data: APPS.GL_ALOC_EXP_V ,
-
View: GL_ALOC_EXP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GL_ALOC_EXP_V, object_name:GL_ALOC_EXP_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View to enable master-detail relationship on Expenses to Allocate form , implementation_dba_data: APPS.GL_ALOC_EXP_V ,
-
TABLE: GMF.GL_ALOC_EXP
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GL_ALOC_EXP, object_name:GL_ALOC_EXP, status:VALID,
-
TABLE: GMF.GL_ALOC_EXP
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GL_ALOC_EXP, object_name:GL_ALOC_EXP, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
Table: GL_ALOC_MST
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GL_ALOC_MST, object_name:GL_ALOC_MST, status:VALID, product: GMF - Process Manufacturing Financials , description: Master table to store the definition of the allocation codes. , implementation_dba_data: GMF.GL_ALOC_MST ,
-
Table: GL_ALOC_MST
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GL_ALOC_MST, object_name:GL_ALOC_MST, status:VALID, product: GMF - Process Manufacturing Financials , description: Master table to store the definition of the allocation codes. , implementation_dba_data: GMF.GL_ALOC_MST ,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.GL_ALOC_EXP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GL_ALOC_EXP_V, object_name:GL_ALOC_EXP_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.GL_ALOC_EXP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GL_ALOC_EXP_V, object_name:GL_ALOC_EXP_V, status:VALID,
-
PACKAGE BODY: APPS.GMF_ALLOC_PROC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_ALLOC_PROC, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMF_ALLOC_PROC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_ALLOC_PROC, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMF_MIGRATION
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_MIGRATION, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.GMF_MIGRATION dependencies on GL_ALOC_MST
12.2.2
-
APPS.GMF_MIGRATION dependencies on GL_ALOC_MST
12.1.1
-
PACKAGE BODY: APPS.GMF_MIGRATION
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_MIGRATION, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.GMF_ALLOC_PROC dependencies on GL_ALOC_MST
12.1.1
-
APPS.GMF_ALLOC_PROC dependencies on GL_ALOC_MST
12.2.2
-
APPS.GMF_ALLOC_PROC SQL Statements
12.1.1
-
APPS.GMF_MIGRATION SQL Statements
12.1.1
-
APPS.GMF_MIGRATION SQL Statements
12.2.2
-
APPS.GMF_ALLOC_PROC SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMF_ALLOC_PROC
12.1.1
-
eTRM - GMF Tables and Views
12.1.1
description: Defines Third-Party software which has a supported interface to OPM. ,
-
eTRM - GMF Tables and Views
12.2.2
description: Defines Third-Party software which has a supported interface to OPM. ,
-
PACKAGE BODY: APPS.GMF_ALLOC_PROC
12.2.2
-
PACKAGE BODY: APPS.GMF_MIGRATION
12.1.1
-
PACKAGE BODY: APPS.GMF_MIGRATION
12.2.2
-
eTRM - GMF Tables and Views
12.1.1
description: Defines Third-Party software which has a supported interface to OPM. ,
-
eTRM - GMF Tables and Views
12.2.2
description: Defines Third-Party software which has a supported interface to OPM. ,