Search Results running_total_accounted_dr
Overview
GL_JE_BATCHES_V is a General Ledger view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents a user-friendly, denormalized projection of journal entry batches held in the GL_JE_BATCHES base table. Rather than returning raw foreign keys alone, the view joins to GL_PERIODS, GL_LOOKUPS, and FND_USER to resolve period dates, lookup descriptions, and the posted-by user name. This makes it a convenient source for reporting, concurrent program logic, and integration extracts that need batch-level detail without writing the lookup and period joins manually.
The view carries a significant portion of the batch record, including control totals, running totals, status, approval state, and descriptive flexfield columns (ATTRIBUTE1 through ATTRIBUTE10, CONTEXT, CONTEXT2). Its lifecycle fields — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — are also exposed. The user search term "running_total_accounted_dr" maps directly to the RUNNING_TOTAL_ACCOUNTED_DR column, which is one of the running-total columns surfaced by this view and which is typically populated during journal import and posting activity.
Underlying Base Objects
Per documented metadata, the view is defined over four referenced objects: GL_JE_BATCHES (synonym to the base table), GL_PERIODS (synonym), GL_LOOKUPS (view), and FND_USER (synonym). The primary driving table is GL_JE_BATCHES, aliased as B in the view text. GL_PERIODS supplies START_DATE, END_DATE, PERIOD_YEAR, and PERIOD_NUM for the batch's default period name and period set. GL_LOOKUPS is referenced twice — resolved as L for the batch STATUS display description (SHOW_STATUS) and as L2 for the budgetary control status display meaning (SHOW_BC_STATUS) — with L3 supplying SHOW_ACTUAL_FLAG. FND_USER is used in a scalar subquery to translate POSTED_BY into POSTED_BY_NAME. Because the view is a read-only projection, it inherits the security and concurrency behavior of its underlying objects.
Key Columns
- JE_BATCH_ID / NAME / DESCRIPTION — Primary identifier and descriptive attributes of the batch.
- DEFAULT_PERIOD_NAME with START_DATE, END_DATE, PERIOD_YEAR, PERIOD_NUM — Period context resolved from GL_PERIODS.
- ACTUAL_FLAG / SHOW_ACTUAL_FLAG — Raw actual flag and its lookup description (Actual, Budget, Encumbrance).
- STATUS / SHOW_STATUS — Batch status code and translated description.
- CONTROL_TOTAL — Entered control total used for batch balancing.
- RUNNING_TOTAL_DR / RUNNING_TOTAL_CR — Entered running debit and credit totals.
- RUNNING_TOTAL_ACCOUNTED_DR / RUNNING_TOTAL_ACCOUNTED_CR — Accounted (converted) running debit and credit totals; the column matching the search term.
- POSTED_DATE / POSTED_BY / POSTED_BY_NAME — Posting metadata with resolved user name.
- BUDGETARY_CONTROL_STATUS / SHOW_BC_STATUS — Budgetary control state and meaning.
- APPROVAL_STATUS_CODE, STATUS_RESET_FLAG, STATUS_VERIFIED — Workflow and verification flags.
Common Use Cases and Queries
Typical scenarios include reconciliation of entered versus accounted totals, monitoring batches for a given period, and auditing posting activity. A representative query for the searched column follows:
SELECT je_batch_id, name, default_period_name, running_total_dr, running_total_cr, running_total_accounted_dr, running_total_accounted_cr FROM gl_je_batches_v WHERE default_period_name = :period AND status = 'U';SELECT je_batch_id, name, show_status, posted_date, posted_by_name FROM gl_je_batches_v WHERE posted_date IS NOT NULL;SELECT default_period_name, SUM(running_total_accounted_dr) accounted_dr, SUM(running_total_accounted_cr) accounted_cr FROM gl_je_batches_v GROUP BY default_period_name;
Because the view does not restrict by ledger or organization beyond the ORG_ID column it exposes, callers should apply appropriate ORG_ID and period predicates to bound results.
-
View: GL_JE_BATCHES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_BATCHES_V, object_name:GL_JE_BATCHES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_BATCHES_V ,
-
View: GL_JE_BATCHES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_BATCHES_V, object_name:GL_JE_BATCHES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_BATCHES_V ,
-
View: GL_JE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_HEADERS_V, object_name:GL_JE_HEADERS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_HEADERS_V ,
-
View: GL_JE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_HEADERS_V, object_name:GL_JE_HEADERS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_HEADERS_V ,
-
View: GLFV_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_JOURNAL_BATCHES, object_name:GLFV_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , description: General Ledger journal batches are groups of related journal entries which share the same General Ledger period. , implementation_dba_data: APPS.GLFV_JOURNAL_BATCHES ,
-
View: GLFV_ACTUAL_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ACTUAL_JOURNAL_BATCHES, object_name:GLFV_ACTUAL_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , description: Actual journal batches are groups of journal entries that represent the results of financial operations. , implementation_dba_data: APPS.GLFV_ACTUAL_JOURNAL_BATCHES ,
-
View: GLFV_ACTUAL_JOURNAL_BATCHES
12.2.2
product: GL - General Ledger , description: Actual journal batches are groups of journal entries that represent the results of financial operations. , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_JOURNAL_BATCHES
12.2.2
product: GL - General Ledger , description: General Ledger journal batches are groups of related journal entries which share the same General Ledger period. , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_ACTUAL_JOURNAL_ENTRIES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_ACTUAL_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ACTUAL_JOURNAL_ENTRIES, object_name:GLFV_ACTUAL_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLFV_ACTUAL_JOURNAL_ENTRIES ,
-
View: GL_JE_HEADERS_REVERSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_HEADERS_REVERSE_V, object_name:GL_JE_HEADERS_REVERSE_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_HEADERS_REVERSE_V ,
-
View: GL_JE_HEADERS_REVERSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_HEADERS_REVERSE_V, object_name:GL_JE_HEADERS_REVERSE_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_HEADERS_REVERSE_V ,
-
View: GLFV_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_JOURNAL_ENTRIES, object_name:GLFV_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , description: General Ledger journal entries are groups of related journal lines that record debit and credit amounts to General Ledger accounts. , implementation_dba_data: APPS.GLFV_JOURNAL_ENTRIES ,
-
View: GLFV_JOURNAL_ENTRIES
12.2.2
product: GL - General Ledger , description: General Ledger journal entries are groups of related journal lines that record debit and credit amounts to General Ledger accounts. , implementation_dba_data: Not implemented in this database ,