Search Results mje_batch_status
Overview
APPS.GL_LOOKUPS_MJE_BATCH_STATUS_V is a lightweight reporting view in the Oracle E-Business Suite General Ledger module. It exposes the set of valid lookup values defined for the lookup type MJE_BATCH_STATUS, which governs the status codes assignable to a Multi-Journal Entry (MJE) batch. Rather than querying the underlying GL_LOOKUPS table directly, consumers can select from this view to obtain a clean, purpose-built list of batch status codes and their user-facing descriptions.
The view is owned by the APPS schema and is available across Oracle EBS 12.1.1 and 12.2.2. It plays a supporting role in reporting, integration, and validation logic where the status of an MJE batch must be interpreted or restricted. Because it presents lookup metadata rather than transactional data, it is typically joined to detail tables that store an MJE batch status code, allowing reports to render the human-readable description in place of the internal code.
Underlying Base Objects
The view is defined over a single referenced base object: GL_LOOKUPS, itself exposed as a view in the APPS schema. The definition filters GL_LOOKUPS on lookup_type = 'MJE_BATCH_STATUS', so only the rows belonging to the MJE batch status lookup type are returned. This filtering isolates the relevant lookup set and shields callers from having to know or hard-code the lookup type in every query.
Because the view reads from GL_LOOKUPS, it inherits the standard Oracle lookups model. Lookup types are maintained through the application's lookup maintenance functions, and each lookup code carries a description and related attributes such as enabled flag, start and end dates, and tag fields. The view abstracts this structure into two derived columns, as documented in the ETRM metadata.
Key Columns
The documented view definition exposes exactly two columns, both derived by aliasing columns from GL_LOOKUPS:
- BATCH_STATUS — aliased from
l.lookup_code. This is the internal lookup code representing an MJE batch status value. It is the value stored on MJE batch records and compared in application and integration logic. - SHOW_BATCH_STATUS — aliased from
l.description. This is the display-friendly description associated with the lookup code, suitable for presentation in reports, concurrent program output, and user interfaces.
No additional columns are projected by the documented view text, so attributes such as enabled flag or date ranges are not exposed here and must be obtained from GL_LOOKUPS if required.
Common Use Cases and Queries
The most frequent use is providing a lookup list for batch status selection or validation, and joining to MJE batch data to translate a stored status code into its description. A typical query retrieves all defined statuses:
SELECT batch_status, show_batch_status FROM apps.gl_lookups_mje_batch_status_v ORDER BY batch_status;— returns every defined MJE batch status code and its description.SELECT v.batch_status, v.show_batch_status FROM apps.gl_lookups_mje_batch_status_v v WHERE v.batch_status = :p_status;— validates or describes a single status value.- Joining to an MJE batch detail source on the status code allows reports to display descriptions alongside transaction-level detail.
Because the view is read-only and references only lookup metadata, it is safe for reporting, parameter list-of-values definitions, and integration lookups. Where the complete set of lookup attributes is needed, query GL_LOOKUPS directly with the MJE_BATCH_STATUS lookup type.
-
Lookup Type: MJE_BATCH_STATUS
12.1.1
product: GL - General Ledger , meaning: MJE_BATCH_STATUS ,
-
Lookup Type: MJE_BATCH_STATUS
12.2.2
product: GL - General Ledger , meaning: MJE_BATCH_STATUS ,
-
VIEW: APPS.GL_LOOKUPS_MJE_BATCH_STATUS_V
12.1.1
-
VIEW: APPS.GL_LOOKUPS_MJE_BATCH_STATUS_V
12.2.2
-
View: GL_LOOKUPS_MJE_BATCH_STATUS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LOOKUPS_MJE_BATCH_STATUS_V, object_name:GL_LOOKUPS_MJE_BATCH_STATUS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_LOOKUPS_MJE_BATCH_STATUS_V ,
-
View: GL_LOOKUPS_MJE_BATCH_STATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LOOKUPS_MJE_BATCH_STATUS_V, object_name:GL_LOOKUPS_MJE_BATCH_STATUS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_LOOKUPS_MJE_BATCH_STATUS_V ,
-
APPS.GLR03300_PKG SQL Statements
12.2.2
-
VIEW: APPS.GL_JE_BATCHES_V
12.2.2
-
APPS.GLR03300_PKG SQL Statements
12.1.1
-
VIEW: APPS.GL_JE_BATCHES_V
12.1.1
-
VIEW: APPS.CE_101_RECONCILED_V
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.CE_101_RECONCILED_V
12.2.2
-
VIEW: APPS.CE_101_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.CE_101_TRANSACTIONS_V
12.2.2
-
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: CE_101_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_101_TRANSACTIONS_V, object_name:CE_101_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available GL journals for reconciliation , implementation_dba_data: APPS.CE_101_TRANSACTIONS_V ,
-
View: CE_101_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_101_TRANSACTIONS_V, object_name:CE_101_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available GL journals for reconciliation , implementation_dba_data: APPS.CE_101_TRANSACTIONS_V ,
-
APPS.JG_JGZZGLJRN_XMLP_PKG SQL Statements
12.1.1
-
APPS.JG_JGZZGLJRN_XMLP_PKG SQL Statements
12.2.2
-
View: CE_101_RECONCILED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_101_RECONCILED_V, object_name:CE_101_RECONCILED_V, status:VALID, product: CE - Cash Management , description: Reconciled GL journals for unreconciling , implementation_dba_data: APPS.CE_101_RECONCILED_V ,
-
View: CE_101_RECONCILED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_101_RECONCILED_V, object_name:CE_101_RECONCILED_V, status:VALID, product: CE - Cash Management , description: Reconciled GL journals for unreconciling , implementation_dba_data: APPS.CE_101_RECONCILED_V ,
-
View: IGI_GL_JE_JOURNAL_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_GL_JE_JOURNAL_LINES_V, object_name:IGI_GL_JE_JOURNAL_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_SOURCES_TL, GL_JE_CATEGORIES_TL, GL_ENCUMBRANCE_TYPES, GL_BUDGET_VERSIONS, GL_LOOKUPS, GL_DAILY_CONVERSION_TYPES, GL_JE_BATCHES, GL_JE_HEADERS, GL_JE_LINES and GL_PERIOD_STATUSES , implementation_dba_data: APPS.IGI_GL_JE_JOURNAL_LINES_V ,
-
View: IGI_GL_JE_JOURNAL_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_GL_JE_JOURNAL_LINES_V, object_name:IGI_GL_JE_JOURNAL_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_SOURCES_TL, GL_JE_CATEGORIES_TL, GL_ENCUMBRANCE_TYPES, GL_BUDGET_VERSIONS, GL_LOOKUPS, GL_DAILY_CONVERSION_TYPES, GL_JE_BATCHES, GL_JE_HEADERS, GL_JE_LINES and GL_PERIOD_STATUSES , implementation_dba_data: APPS.IGI_GL_JE_JOURNAL_LINES_V ,
-
APPS.GL_GLWACCTR_XMLP_PKG SQL Statements
12.2.2
-
APPS.GL_GLWACCTR_XMLP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GLR03300_PKG
12.2.2
-
PACKAGE BODY: APPS.GLR03300_PKG
12.1.1
-
PACKAGE BODY: APPS.GL_GLWACCTR_XMLP_PKG
12.1.1
-
APPS.GLR03300_PKG dependencies on GL_LOOKUPS
12.1.1
-
PACKAGE BODY: APPS.GL_GLWACCTR_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.JG_JGZZGLJRN_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.JG_JGZZGLJRN_XMLP_PKG
12.2.2
-
APPS.GLR03300_PKG dependencies on GL_LOOKUPS
12.2.2
-
APPS.GL_GLWACCTR_XMLP_PKG dependencies on GL_INFO
12.2.2
-
APPS.GL_GLWACCTR_XMLP_PKG dependencies on GL_INFO
12.1.1
-
APPS.JG_JGZZGLJRN_XMLP_PKG dependencies on GL_LOOKUPS
12.2.2
-
APPS.GLR03300_PKG dependencies on GL_JE_HEADERS
12.2.2
-
APPS.GLR03300_PKG dependencies on GL_JE_BATCHES
12.1.1
-
APPS.GLR03300_PKG dependencies on GL_JE_HEADERS
12.1.1
-
APPS.GLR03300_PKG dependencies on GL_JE_BATCHES
12.2.2
-
APPS.JG_JGZZGLJRN_XMLP_PKG dependencies on GL_LOOKUPS
12.1.1