Search Results gl_ledger_set_norm_assign
Overview
GL_LEDGER_SET_NORM_ASSIGN is a General Ledger (GL) intersection table in the Oracle E-Business Suite 12.1.1 and 12.2.2 data model that stores ledger set assignments. It defines the many-to-many relationship between a ledger set and the individual ledgers or ledger sets that are members of that set. Each row associates one LEDGER_SET_ID with one LEDGER_ID, so the table functions as the membership roster underlying the Ledger Set feature. Ledger sets allow multiple ledgers sharing the same chart of accounts and accounting calendar to be processed, reported, and consolidated as a single logical grouping, and this table captures that grouping.
Under the heuristic Data Vault classification mined from the foreign key structure, this object is best modeled as a link table. It resolves a relationship between two entities that both reference GL_LEDGERS, and carries no independent descriptive payload beyond its audit, effective-dating, and descriptive-flexfield columns. The classification is a modeling suggestion rather than an Oracle-mandated label.
Key Information Stored
LEDGER_SET_ID— Identifies the ledger set (the parent container). Part of the composite primary key and a foreign key to GL_LEDGERS.LEDGER_ID— Identifies the member ledger or ledger set assigned into the set. Also part of the composite primary key and a foreign key to GL_LEDGERS.STATUS_CODE— Controls the active/inactive state of the assignment, governing whether the member ledger is treated as part of the set.START_DATE,END_DATE— Effective-dating columns that define the active window for the assignment, supporting date-effective membership.CREATION_DATE,CREATED_BY— Standard WHO audit columns recording row creation.LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN— Standard WHO audit columns recording the most recent change and the login session.REQUEST_ID— Ties the row to the concurrent request that created or modified it, useful for batch-load tracing.CONTEXTandATTRIBUTE1throughATTRIBUTE15— Descriptive flexfield segments reserved for customer-defined extensions.
The surrogate primary key is the composite GL_LEDGER_SET_NORM_ASSIGN_PK over (LEDGER_SET_ID, LEDGER_ID), which enforces uniqueness of each membership pairing. There is no documented alternate unique index, so the composite key itself serves as the business-key candidate for the assignment.
Common Use Cases and Queries
Typical use cases include reporting ledger set membership, resolving which ledgers roll into a given set for consolidation, and validating effective-dated assignments. A representative query returning active members for a ledger set is:
SELECT a.LEDGER_ID FROM GL.GL_LEDGER_SET_NORM_ASSIGN a WHERE a.LEDGER_SET_ID = :p_ledger_set_id AND a.STATUS_CODE = 'A';- Joining to GL_LEDGERS to retrieve ledger names and short names for the members of a set.
- Filtering on
START_DATE/END_DATEto reproduce membership as of a given accounting period. - Auditing changes by
LAST_UPDATED_BYor tracing loads throughREQUEST_ID.
Because both key columns reference GL_LEDGERS, membership joins must account for the possibility that a member is itself a ledger set, a characteristic of nested ledger set definitions.
Related Objects
GL_LEDGERS— Referenced twice:GL_LEDGER_SET_NORM_ASSIGN.LEDGER_SET_ID → GL_LEDGERSandGL_LEDGER_SET_NORM_ASSIGN.LEDGER_ID → GL_LEDGERS.GL_LEDGER_SET_NORM_ASSIGN_PK— The primary key constraint enforcing unique (LEDGER_SET_ID, LEDGER_ID) pairings.- Ledger set definition tables in the GL schema that store set names and attributes referenced by
LEDGER_SET_ID. - General Ledger standard APIs and concurrent programs that read and maintain ledger set membership during set maintenance.
- Consolidation and reporting components that consume ledger set membership to aggregate balances across member ledgers.
Together these objects form the ledger set framework, with GL_LEDGER_SET_NORM_ASSIGN acting as the definitive mapping between sets and their constituent ledgers.
-
Table: GL_LEDGER_SET_NORM_ASSIGN
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGER_SET_NORM_ASSIGN, object_name:GL_LEDGER_SET_NORM_ASSIGN, status:VALID, product: GL - General Ledger , description: Ledger set assignments , implementation_dba_data: GL.GL_LEDGER_SET_NORM_ASSIGN ,
-
Table: GL_LEDGER_SET_NORM_ASSIGN
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGER_SET_NORM_ASSIGN, object_name:GL_LEDGER_SET_NORM_ASSIGN, status:VALID, product: GL - General Ledger , description: Ledger set assignments , implementation_dba_data: GL.GL_LEDGER_SET_NORM_ASSIGN ,
-
APPS.GL_LEDGER_SET_NORM_ASSIGN_PKG SQL Statements
12.2.2
-
APPS.GL_LEDGER_SET_NORM_ASSIGN_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.GL_LEDGER_SET_NORM_ASSIGN
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_SET_NORM_ASSIGN, status:VALID,
-
SYNONYM: APPS.GL_LEDGER_SET_NORM_ASSIGN
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_SET_NORM_ASSIGN, status:VALID,
-
VIEW: GL.GL_LEDGER_SET_NORM_ASSIGN#
12.2.2
owner:GL, object_type:VIEW, object_name:GL_LEDGER_SET_NORM_ASSIGN#, status:VALID,
-
APPS.GL_FLATTEN_LEDGER_SETS SQL Statements
12.1.1
-
APPS.GL_FLATTEN_LEDGER_SETS SQL Statements
12.2.2
-
VIEW: GL.GL_LEDGER_SET_NORM_ASSIGN#
12.2.2
-
TABLE: GL.GL_LEDGER_SET_NORM_ASSIGN
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGER_SET_NORM_ASSIGN, object_name:GL_LEDGER_SET_NORM_ASSIGN, status:VALID,
-
TABLE: GL.GL_LEDGER_SET_NORM_ASSIGN
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGER_SET_NORM_ASSIGN, object_name:GL_LEDGER_SET_NORM_ASSIGN, status:VALID,
-
VIEW: APPS.GL_LEDGER_SET_NORM_ASSIGN_V
12.1.1
-
VIEW: APPS.GL_LEDGER_SET_NORM_ASSIGN_V
12.2.2
-
Table: GL_LEDGERS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGERS, object_name:GL_LEDGERS, status:VALID, product: GL - General Ledger , description: Ledger definition , implementation_dba_data: GL.GL_LEDGERS ,
-
TABLE: GL.GL_LEDGER_SET_ASSIGNMENTS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGER_SET_ASSIGNMENTS, object_name:GL_LEDGER_SET_ASSIGNMENTS, status:VALID,
-
PACKAGE BODY: APPS.GL_FLATTEN_LEDGER_SETS
12.2.2
-
TABLE: GL.GL_LEDGER_SET_ASSIGNMENTS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGER_SET_ASSIGNMENTS, object_name:GL_LEDGER_SET_ASSIGNMENTS, status:VALID,
-
Table: GL_LEDGERS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGERS, object_name:GL_LEDGERS, status:VALID, product: GL - General Ledger , description: Ledger definition , implementation_dba_data: GL.GL_LEDGERS ,
-
PACKAGE BODY: APPS.GL_FLATTEN_LEDGER_SETS
12.1.1
-
PACKAGE BODY: APPS.GL_FLATTEN_LEDGER_SETS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_FLATTEN_LEDGER_SETS, status:VALID,
-
PACKAGE BODY: APPS.GL_LEDGER_SET_NORM_ASSIGN_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_LEDGER_SET_NORM_ASSIGN_PKG, status:VALID,
-
PACKAGE BODY: APPS.GL_LEDGER_SET_NORM_ASSIGN_PKG
12.1.1
-
PACKAGE BODY: APPS.GL_LEDGER_SET_NORM_ASSIGN_PKG
12.2.2
-
PACKAGE BODY: APPS.GL_LEDGER_SET_NORM_ASSIGN_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_LEDGER_SET_NORM_ASSIGN_PKG, status:VALID,
-
PACKAGE BODY: APPS.GL_FLATTEN_LEDGER_SETS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_FLATTEN_LEDGER_SETS, status:VALID,
-
APPS.GL_FLATTEN_SETUP_DATA SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GL_FLATTEN_SETUP_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_FLATTEN_SETUP_DATA, status:VALID,
-
APPS.GL_FLATTEN_SETUP_DATA SQL Statements
12.2.2
-
View: GL_LEDGER_SET_NORM_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LEDGER_SET_NORM_ASSIGN_V, object_name:GL_LEDGER_SET_NORM_ASSIGN_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_LEDGER_SET_NORM_ASSIGN_V ,
-
PACKAGE BODY: APPS.GL_FLATTEN_SETUP_DATA
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_FLATTEN_SETUP_DATA, status:VALID,
-
View: GL_LEDGER_SET_NORM_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LEDGER_SET_NORM_ASSIGN_V, object_name:GL_LEDGER_SET_NORM_ASSIGN_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_LEDGER_SET_NORM_ASSIGN_V ,
-
PACKAGE BODY: APPS.GL_LEDGERS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_LEDGERS_PKG, status:VALID,
-
PACKAGE BODY: APPS.GL_LEDGERS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_LEDGERS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.GL_LEDGER_SET_NORM_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LEDGER_SET_NORM_ASSIGN_V, object_name:GL_LEDGER_SET_NORM_ASSIGN_V, status:VALID,
-
VIEW: APPS.GL_LEDGER_SET_NORM_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LEDGER_SET_NORM_ASSIGN_V, object_name:GL_LEDGER_SET_NORM_ASSIGN_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
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
-
PACKAGE: APPS.GL_FLATTEN_LEDGER_SETS
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.GL_FLATTEN_LEDGER_SETS
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.GL_FLATTEN_SETUP_DATA dependencies on GL_LEDGER_SET_NORM_ASSIGN
12.1.1
-
APPS.GL_FLATTEN_SETUP_DATA dependencies on GL_LEDGER_SET_NORM_ASSIGN
12.2.2