Search Results entered_batch_total_dr
Overview
GLBV_ENCUMB_JOURNAL_BATCHES is a read-only Oracle EBS view owned by the APPS schema in the General Ledger (GL) product. It exposes encumbrance journal batches — journal batch records whose ACTUAL_FLAG is set to 'E' — and is primarily intended for reporting, inquiry, and integration use where encumbrance activity must be presented in a user-friendly, security-filtered form. The prefix "BV" indicates a business view, and the column aliases using the "_LA:" convention denote descriptive flexfield or value-set-backed attributes that are resolved dynamically at runtime (for example, BATCH_STATUS and APPROVAL_STATUS are displayed through GL_LOOKUPS).
The view is relevant to users searching on date_posted. The column DATE_POSTED (mapped from GL_JE_BATCHES.POSTED_DATE) records the date the encumbrance batch was posted to the ledger. Because the view restricts to encumbrance batches only, DATE_POSTED is only populated once the batch has been posted; unposted encumbrances will return NULL for this column. This makes it a natural filter for reconciliation and period-close reporting.
Underlying Base Objects
The view is defined over GL_JE_BATCHES, aliased internally as ENCUMB_JOURNAL_BATCH. The WHERE clause enforces two conditions: the batch must have ACTUAL_FLAG = 'E' (encumbrance), and the batch must be visible to the logged-in user's security context.
Security is applied through a correlated EXISTS subquery joining GL_JE_HEADERS, GL_ACCESS_SETS, and GL_ACCESS_SET_LEDGERS, with additional resolution against GL_JE_SEGMENT_VALUES and GL_ACCESS_SET_ASSIGNMENTS. This enforces data-access-set (security segment and privilege) restrictions so that only batches belonging to ledgers and segment values the user may see are returned. Two scalar subqueries enrich the result: GL_HR_EMPLOYEES_CURRENT_V resolves the approver's employee name, and FND_USER resolves the posting user's name. The view is defined WITH READ ONLY.
Key Columns
- JOURNAL_BATCH_ID — Surrogate key (JE_BATCH_ID) uniquely identifying the batch.
- JOURNAL_BATCH_NAME — Batch name from GL_JE_BATCHES.NAME.
- LEDGER_ID — Exposed as TO_NUMBER(NULL) in the view text, so it is not populated for direct reporting.
- "_LA:BATCH_STATUS" — Status code resolved to its description via GL_LOOKUPS (BATCH_STATUS).
- PERIOD_NAME — Default accounting period (DEFAULT_PERIOD_NAME) for the batch.
- DATE_POSTED — The POSTED_DATE, i.e., the date the encumbrance batch was posted.
- DATE_CREATED — Creation date of the batch.
- DESCRIPTION — Free-text batch description.
- "_LA:FUNDS_CHECK_STATUS" — Budgetary control / funds-check status via JE_BATCH_BC_STATUS.
- "_LA:APPROVAL_STATUS" — Approval status via JE_BATCH_APPROVAL_STATUS.
- CONTROL_TOTAL, RUNNING_TOTAL_DR, RUNNING_TOTAL_CR — Batch control and running debit/credit totals.
- Approver / Posted By — APPROVER_EMPLOYEE_ID with resolved employee name, and POSTED_BY with resolved FND user name.
Common Use Cases and Queries
Typical scenarios include period-close reconciliation of encumbrance postings, auditing who posted which encumbrance batch, and integration extracts feeding downstream budgeting or reporting systems. Because the view is security-aware, it can be queried directly without re-implementing access-set logic.
- Listing encumbrance batches posted within a period:
SELECT JOURNAL_BATCH_NAME, PERIOD_NAME, DATE_POSTED FROM GLBV_ENCUMB_JOURNAL_BATCHES WHERE DATE_POSTED BETWEEN :start_date AND :end_date; - Reviewing unposted encumbrances:
SELECT JOURNAL_BATCH_NAME FROM GLBV_ENCUMB_JOURNAL_BATCHES WHERE DATE_POSTED IS NULL; - Auditing approver and posting user activity for encumbrances within a ledger security context.
Note that LEDGER_ID is returned as NULL, so ledger-based filtering should be performed through related GL views or base tables rather than this column.
-
View: GLBV_ENCUMB_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_ENCUMB_JOURNAL_BATCHES, object_name:GLBV_ENCUMB_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_ENCUMB_JOURNAL_BATCHES ,
-
View: GLBV_ACTUAL_JOURNAL_BATCHES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLBV_BUDGET_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_BUDGET_JOURNAL_BATCHES, object_name:GLBV_BUDGET_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , description: Budget journal batches are groups of journal entries that represent the estimated results of future financial operations. , implementation_dba_data: APPS.GLBV_BUDGET_JOURNAL_BATCHES ,
-
View: GLFV_BUDGET_JOURNAL_BATCHES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLBV_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_JOURNAL_BATCHES, object_name:GLBV_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_JOURNAL_BATCHES ,
-
View: GLBV_JOURNAL_BATCHES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_BUDGET_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_BUDGET_JOURNAL_BATCHES, object_name:GLFV_BUDGET_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLFV_BUDGET_JOURNAL_BATCHES ,
-
View: GLBV_ENCUMB_JOURNAL_BATCHES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLBV_ACTUAL_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_ACTUAL_JOURNAL_BATCHES, object_name:GLBV_ACTUAL_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_ACTUAL_JOURNAL_BATCHES ,
-
View: GLFV_ENCUMB_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ENCUMB_JOURNAL_BATCHES, object_name:GLFV_ENCUMB_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , description: Encumbrance journal batches are groups of journal entries that represent commitments, obligations, and other planned expenditures. , implementation_dba_data: APPS.GLFV_ENCUMB_JOURNAL_BATCHES ,
-
View: GLFV_ENCUMB_JOURNAL_BATCHES
12.2.2
product: GL - General Ledger , description: Encumbrance journal batches are groups of journal entries that represent commitments, obligations, and other planned expenditures. , implementation_dba_data: Not implemented in this database ,
-
View: GLBV_BUDGET_JOURNAL_BATCHES
12.2.2
product: GL - General Ledger , description: Budget journal batches are groups of journal entries that represent the estimated results of future financial operations. , implementation_dba_data: Not implemented in this database ,
-
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_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.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 ,