Search Results gl_budgets
Overview
The GL_BUDGETS table is a core data object within the Oracle E-Business Suite General Ledger (GL) module, specifically for releases 12.1.1 and 12.2.2. It serves as the master repository for budget definitions. A budget definition establishes the foundational framework for financial planning and control, acting as a container that holds one or more budget versions. Each record in this table represents a unique budget, identified by its name and type, and is associated with a specific ledger. The table's primary role is to store the metadata and control attributes for budgets, which are then populated with detailed financial amounts in related tables such as GL_BUDGET_VERSIONS and GL_BALANCES.
Key Information Stored
The table's structure is designed to define and control the budget's scope and behavior. Its primary key is a composite of BUDGET_TYPE and BUDGET_NAME, ensuring uniqueness across the system. Critical columns include BUDGET_TYPE, which links to the GL_BUDGET_TYPES table to classify the budget (e.g., "Annual", "Forecast"), and BUDGET_NAME, which is the unique identifier for the budget definition. The LEDGER_ID column ties the budget to a specific accounting ledger, enforcing the security and data integrity model of the application. Other important attributes typically stored, though not explicitly listed in the provided metadata, include status, creation date, and description, which provide administrative control and context for each budget entity.
Common Use Cases and Queries
This table is central to any process involving budget setup, inquiry, or reporting. A common administrative task is to list all budget definitions for a ledger, which can be achieved with a query such as: SELECT budget_name, budget_type, description FROM gl_budgets WHERE ledger_id = :p_ledger_id ORDER BY budget_name;. For integration or data validation purposes, analysts often join GL_BUDGETS with GL_BUDGET_VERSIONS to retrieve a comprehensive list of budgets and their associated versions: SELECT b.budget_name, b.budget_type, v.version_num FROM gl_budgets b, gl_budget_versions v WHERE b.budget_type = v.budget_type AND b.budget_name = v.budget_name;. Reporting tools frequently use this table as a dimension to allow users to filter financial reports by specific budget definitions.
Related Objects
- GL_BUDGET_TYPES: A foreign key relationship exists from GL_BUDGETS.BUDGET_TYPE to this table, which defines valid budget type codes and their descriptions.
- GL_BUDGET_VERSIONS: This is a critical child table. A budget definition in GL_BUDGETS must have at least one version to hold actual budget amounts. The foreign key is defined on (BUDGET_TYPE, BUDGET_NAME).
- GL_BALANCES: Budget balances are stored in this table, keyed by LEDGER_ID, and are associated with a specific budget version, which ultimately traces back to a parent record in GL_BUDGETS.
- Key APIs: While not a table, budget creation and maintenance within EBS are typically performed through dedicated public APIs (e.g., GL_BUDGET_API), which ensure business logic is enforced when inserting or updating records in GL_BUDGETS.
-
Table: GL_BUDGETS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGETS, object_name:GL_BUDGETS, status:VALID, product: GL - General Ledger , description: Budget definitions , implementation_dba_data: GL.GL_BUDGETS ,
-
Table: GL_BUDGETS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGETS, object_name:GL_BUDGETS, status:VALID, product: GL - General Ledger , description: Budget definitions , implementation_dba_data: GL.GL_BUDGETS ,
-
Table: GL_BUDGET_TYPES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGET_TYPES, object_name:GL_BUDGET_TYPES, status:VALID, product: GL - General Ledger , description: Budget type definitions , implementation_dba_data: GL.GL_BUDGET_TYPES ,
-
View: GL_BUDGETS_CURRENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_CURRENT_V, object_name:GL_BUDGETS_CURRENT_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_CURRENT_V ,
-
View: GL_BUDGETS_REQUIRE_JOURNALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_REQUIRE_JOURNALS_V, object_name:GL_BUDGETS_REQUIRE_JOURNALS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_REQUIRE_JOURNALS_V ,
-
View: GL_CONS_BUDGET_NAMES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_CONS_BUDGET_NAMES_V, object_name:GL_CONS_BUDGET_NAMES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_CONS_BUDGET_NAMES_V ,
-
View: GL_BUDGETS_SOURCE_BUDGETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_SOURCE_BUDGETS_V, object_name:GL_BUDGETS_SOURCE_BUDGETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_SOURCE_BUDGETS_V ,
-
View: GL_BUDGETS_SOURCE_BUDGETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_SOURCE_BUDGETS_V, object_name:GL_BUDGETS_SOURCE_BUDGETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_SOURCE_BUDGETS_V ,
-
View: GL_BUDGETS_NO_JOURNALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_NO_JOURNALS_V, object_name:GL_BUDGETS_NO_JOURNALS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_NO_JOURNALS_V ,
-
View: GLBV_GL_BUDGETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_GL_BUDGETS, object_name:GLBV_GL_BUDGETS, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_GL_BUDGETS ,
-
View: GL_CONS_BUDGET_NAMES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_CONS_BUDGET_NAMES_V, object_name:GL_CONS_BUDGET_NAMES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_CONS_BUDGET_NAMES_V ,
-
Table: GL_BUDGET_TYPES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGET_TYPES, object_name:GL_BUDGET_TYPES, status:VALID, product: GL - General Ledger , description: Budget type definitions , implementation_dba_data: GL.GL_BUDGET_TYPES ,
-
View: GL_BUDGETS_CONTROL_BUDGETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_CONTROL_BUDGETS_V, object_name:GL_BUDGETS_CONTROL_BUDGETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_CONTROL_BUDGETS_V ,
-
View: GL_PERIOD_STATUSES_BUD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_PERIOD_STATUSES_BUD_V, object_name:GL_PERIOD_STATUSES_BUD_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_PERIOD_STATUSES_BUD_V ,
-
View: GL_PERIOD_STAT_BUD_PERA_V
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_GL_BUDGETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_GL_BUDGETS, object_name:GLFV_GL_BUDGETS, status:VALID, product: GL - General Ledger , description: General Ledger budgets are a collection of estimated amounts for a range of accounting periods. , implementation_dba_data: APPS.GLFV_GL_BUDGETS ,
-
View: GL_BUDGETS_NAME_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_NAME_V, object_name:GL_BUDGETS_NAME_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_NAME_V ,
-
View: GL_BUDGETS_NAME_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_NAME_V, object_name:GL_BUDGETS_NAME_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_NAME_V ,
-
View: GL_BUDGETS_REQUIRE_JOURNALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_REQUIRE_JOURNALS_V, object_name:GL_BUDGETS_REQUIRE_JOURNALS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_REQUIRE_JOURNALS_V ,
-
View: GL_PERIOD_STATUSES_BUD_UPD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_PERIOD_STATUSES_BUD_UPD_V, object_name:GL_PERIOD_STATUSES_BUD_UPD_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_PERIOD_STATUSES_BUD_UPD_V ,
-
View: GL_BUDGETS_CURRENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_CURRENT_V, object_name:GL_BUDGETS_CURRENT_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_CURRENT_V ,
-
View: GL_BUDGETS_AUTOCOPY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_AUTOCOPY_V, object_name:GL_BUDGETS_AUTOCOPY_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_AUTOCOPY_V ,
-
View: GL_BUDGETS_TARGET_BUDGETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_TARGET_BUDGETS_V, object_name:GL_BUDGETS_TARGET_BUDGETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_TARGET_BUDGETS_V ,
-
View: GLFV_GL_BUDGETS
12.2.2
product: GL - General Ledger , description: General Ledger budgets are a collection of estimated amounts for a range of accounting periods. , implementation_dba_data: Not implemented in this database ,
-
View: GL_SRS_LEDGER_BUD_ENCUM_NAME
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SRS_LEDGER_BUD_ENCUM_NAME, object_name:GL_SRS_LEDGER_BUD_ENCUM_NAME, status:VALID, product: GL - General Ledger , description: Review budget names and encumbrance types , implementation_dba_data: APPS.GL_SRS_LEDGER_BUD_ENCUM_NAME ,
-
View: GL_BUDGETS_NO_JOURNALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_NO_JOURNALS_V, object_name:GL_BUDGETS_NO_JOURNALS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_NO_JOURNALS_V ,
-
View: GLBV_GL_BUDGETS
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GL_BUDGETS_CONTROL_BUDGETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_CONTROL_BUDGETS_V, object_name:GL_BUDGETS_CONTROL_BUDGETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_CONTROL_BUDGETS_V ,
-
View: GL_PERIOD_STAT_BUD_PERA_V
12.1.1
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GL_PERIOD_STATUSES_REV_BUD_V
12.1.1
product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: GL_BUDGETS_AUTOCOPY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_AUTOCOPY_V, object_name:GL_BUDGETS_AUTOCOPY_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_AUTOCOPY_V ,
-
View: GL_PERIOD_STATUSES_BUD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_PERIOD_STATUSES_BUD_V, object_name:GL_PERIOD_STATUSES_BUD_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_PERIOD_STATUSES_BUD_V ,
-
View: GL_BUDGETS_WITH_DATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_WITH_DATES_V, object_name:GL_BUDGETS_WITH_DATES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_WITH_DATES_V ,
-
View: GL_BUDGETS_WITH_DATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_WITH_DATES_V, object_name:GL_BUDGETS_WITH_DATES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_WITH_DATES_V ,
-
View: GL_PERIOD_STATUSES_BUD_UPD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_PERIOD_STATUSES_BUD_UPD_V, object_name:GL_PERIOD_STATUSES_BUD_UPD_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_PERIOD_STATUSES_BUD_UPD_V ,
-
View: GL_SRS_LEDGER_BUD_ENCUM_NAME
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SRS_LEDGER_BUD_ENCUM_NAME, object_name:GL_SRS_LEDGER_BUD_ENCUM_NAME, status:VALID, product: GL - General Ledger , description: Review budget names and encumbrance types , implementation_dba_data: APPS.GL_SRS_LEDGER_BUD_ENCUM_NAME ,
-
View: GL_BUDGETS_TARGET_BUDGETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_TARGET_BUDGETS_V, object_name:GL_BUDGETS_TARGET_BUDGETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_TARGET_BUDGETS_V ,
-
View: GL_PERIOD_STATUSES_REV_BUD_V
12.2.2
product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: GL_BUDGET_DEP_BALANCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_DEP_BALANCES_V, object_name:GL_BUDGET_DEP_BALANCES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_DEP_BALANCES_V ,
-
View: GL_BUDGET_DEP_BALANCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_DEP_BALANCES_V, object_name:GL_BUDGET_DEP_BALANCES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_DEP_BALANCES_V ,
-
Table: GL_BUDGET_VERSIONS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGET_VERSIONS, object_name:GL_BUDGET_VERSIONS, status:VALID, product: GL - General Ledger , description: Budget version definitions , implementation_dba_data: GL.GL_BUDGET_VERSIONS ,
-
View: GL_BUDGETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_V, object_name:GL_BUDGETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_V ,
-
View: GL_BUDGETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGETS_V, object_name:GL_BUDGETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGETS_V ,
-
Table: GL_BUDGET_VERSIONS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGET_VERSIONS, object_name:GL_BUDGET_VERSIONS, status:VALID, product: GL - General Ledger , description: Budget version definitions , implementation_dba_data: GL.GL_BUDGET_VERSIONS ,