Search Results je_description
Overview
APPS.GL_BUDGET_JOURNALS_V is a General Ledger reporting view that consolidates posted budget journal activity from the journal entry batch, header, and line tables into a single denormalized result set. The view is documented in ETRM with the annotation "10SC ONLY," indicating it is a legacy artifact whose applicability is limited to specific 10SC-related configurations rather than the general Oracle E-Business Suite customer base. In EBS 12.1.1 and 12.2.2 the object is registered in the APPS schema with a status of VALID, and it references a set of base objects through synonyms, allowing it to remain valid across the multi-org and ledger architecture introduced with the 12.x releases.
Because the view filters exclusively on budget journals (JEH.ACTUAL_FLAG = 'B') that have been posted (JEH.STATUS = 'P'), it presents only committed budget entries rather than unposted or actual transactions. This makes it useful for reconciliation and audit reporting where the distinction between budgetary and actual balances must be preserved. The inclusion of the batch-level STATUS_VERIFIED lookup meaning, source name, and category name means the view can be consumed directly in reports and integrations without additional joins to the GL lookup and journal setup tables.
Underlying Base Objects
The documented base objects are GL_JE_BATCHES, GL_JE_CATEGORIES, GL_JE_HEADERS, GL_JE_LINES, and GL_JE_SOURCES, all resolved via synonyms in the APPS schema, plus GL_LOOKUPS, which is referenced as a view. The join topology is straightforward and follows the standard GL journal hierarchy:
- GL_JE_LINES.JE_HEADER_ID = GL_JE_HEADERS.JE_HEADER_ID establishes the line-to-header relationship.
- GL_JE_HEADERS.JE_BATCH_ID = GL_JE_BATCHES.JE_BATCH_ID establishes the header-to-batch relationship.
- GL_JE_SOURCES.JE_SOURCE_NAME = GL_JE_HEADERS.JE_SOURCE resolves the user-facing journal source name.
- GL_JE_CATEGORIES.JE_CATEGORY_NAME = GL_JE_HEADERS.JE_CATEGORY resolves the user-facing journal category name.
- GL_LOOKUPS is joined on LOOKUP_TYPE = 'YES/NO' and LOOKUP_CODE = GL_JE_BATCHES.STATUS_VERIFIED, producing the STATUS_VERIFIED meaning.
Driver rows originate from GL_JE_LINES, so lines whose headers fail the ACTUAL_FLAG = 'B' and STATUS = 'P' predicates are excluded. The LEDGER_ID column is carried from GL_JE_HEADERS, tying each row to a specific ledger in the 12.x accounting model.
Key Columns
The view exposes identifiers, descriptive attributes, and amounts spanning all three levels of the batch/header/line hierarchy:
- Identifiers: LEDGER_ID, JE_BATCH_ID, JE_HEADER_ID, JE_LINE_NUM, CODE_COMBINATION_ID, JE_BUDGET_VERSION_ID.
- Descriptive fields: BATCH_NAME, BATCH_DESCRIPTION, DEFAULT_PERIOD_NAME, JE_NAME, JE_DESCRIPTION, JE_LINE_DESCRIPTION, USER_JE_SOURCE_NAME, USER_JE_CATEGORY_NAME.
- Period and currency context: JE_PERIOD_NAME, JE_LINE_PERIOD_NAME, CURRENCY_CODE.
- Amounts: ENTERED_DR, ENTERED_CR, ACCOUNTED_DR, ACCOUNTED_CR, STAT_AMOUNT.
- Status and audit: JE_STATUS, STATUS_VERIFIED, POSTED_DATE, plus the standard WHO columns CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN and the ROWID exposed as ROW_ID.
- Reference attributes: REFERENCE_1 through REFERENCE_5, which carry the free-form reference values entered on journal lines.
Common Use Cases and Queries
Typical uses include budget-versus-actual reconciliation, batch verification reporting, and export of posted budget lines to external reporting or ETL processes. A representative query filtering on a reference column and a ledger follows:
- Retrieve posted budget lines for a ledger in a given period, projecting the account, amounts, and source/category names.
- Reconcile batch totals by grouping on JE_BATCH_ID and summing ACCOUNTED_DR and ACCOUNTED_CR.
- Audit status verification by filtering STATUS_VERIFIED = 'Yes' to isolate batches confirmed as verified.
Example:
SELECT ledger_id, batch_name, je_name, je_line_num, code_combination_id, entered_dr, entered_cr, accounted_dr, accounted_cr, reference_1, status_verified FROM apps.gl_budget_journals_v WHERE ledger_id = :p_ledger_id AND je_period_name = :p_period ORDER BY je_batch_id, je_header_id, je_line_num;
Because the view already applies the budget and posted filters, callers should not expect it to return unposted budgets or actual journals; additional filtering by ledger, period, or account is normally required to constrain result volume in production ledgers.
-
View: GL_BUDGET_JOURNALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_JOURNALS_V, object_name:GL_BUDGET_JOURNALS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_JOURNALS_V ,
-
View: GL_BUDGET_JOURNALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_JOURNALS_V, object_name:GL_BUDGET_JOURNALS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_JOURNALS_V ,
-
View: GL_JE_LINES_RECON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_LINES_RECON_V, object_name:GL_JE_LINES_RECON_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_LINES_RECON_V ,
-
VIEW: APPS.AR_POSTED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_POSTED_TRANSACTIONS_V, object_name:AR_POSTED_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.GL_BUDGET_JOURNALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_JOURNALS_V, object_name:GL_BUDGET_JOURNALS_V, status:VALID,
-
View: GL_JE_LINES_RECON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_LINES_RECON_V, object_name:GL_JE_LINES_RECON_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_LINES_RECON_V ,
-
VIEW: APPS.GL_BUDGET_JOURNALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_JOURNALS_V, object_name:GL_BUDGET_JOURNALS_V, status:VALID,
-
VIEW: APPS.GL_BUDGET_JOURNALS_V
12.1.1
-
VIEW: APPS.GL_BUDGET_JOURNALS_V
12.2.2
-
VIEW: APPS.AR_POSTED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_POSTED_TRANSACTIONS_V, object_name:AR_POSTED_TRANSACTIONS_V, status:VALID,
-
View: AR_POSTED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_POSTED_TRANSACTIONS_V, object_name:AR_POSTED_TRANSACTIONS_V, status:VALID, product: AR - Receivables , description: (Release 11) , implementation_dba_data: APPS.AR_POSTED_TRANSACTIONS_V ,
-
VIEW: APPS.GL_JE_LINES_RECON_V
12.1.1
-
VIEW: APPS.GL_JE_LINES_RECON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_LINES_RECON_V, object_name:GL_JE_LINES_RECON_V, status:VALID,
-
VIEW: APPS.GL_JE_LINES_RECON_V
12.2.2
-
VIEW: APPS.AR_POSTED_TRANSACTIONS_V
12.2.2
-
View: AR_POSTED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_POSTED_TRANSACTIONS_V, object_name:AR_POSTED_TRANSACTIONS_V, status:VALID, product: AR - Receivables , description: (Release 11) , implementation_dba_data: APPS.AR_POSTED_TRANSACTIONS_V ,
-
View: FII_AR_E_REVENUE_FCV
12.1.1
product: FII - Financial Intelligence , description: FII_AR_E_REVENUE_FCV is the collection view for FII_AR_E_REVENUE_F fact , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.GL_JE_LINES_RECON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_LINES_RECON_V, object_name:GL_JE_LINES_RECON_V, status:VALID,
-
VIEW: APPS.AR_POSTED_TRANSACTIONS_V
12.1.1
-
View: FII_AR_E_REVENUE_FCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_AR_E_REVENUE_FCV is the collection view for FII_AR_E_REVENUE_F fact , implementation_dba_data: Not implemented in this database ,
-
TABLE: FII.FII_AR_REVENUE_F_DLOG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_AR_REVENUE_F_DLOG, object_name:FII_AR_REVENUE_F_DLOG, status:VALID,
-
TABLE: FII.FII_E_REVENUE_F
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_E_REVENUE_F, object_name:FII_E_REVENUE_F, status:VALID,
-
TABLE: FII.FII_E_REVENUE_FSTG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_E_REVENUE_FSTG, object_name:FII_E_REVENUE_FSTG, status:VALID,
-
eTRM - SQLGL Tables and Views
12.2.2
description: This table contains the tracking information that Golden Gate will use to launch Journal Import. ,
-
eTRM - FII Tables and Views
12.1.1
description: This table stores the mapping of leaf nodes from pruned dimension to nodes in the child value sets ,
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,