Search Results taxable_accounted_dr
Overview
The view XLA_JL_BR_AR_BT_AEL_GL_V is a Subledger Accounting (XLA) reporting object that exposes accounting event line data together with its corresponding General Ledger transfer attributes. It is one of the regionalized localization views (indicated by the JL_BR_AR_BT naming convention, associated with the Brazilian Accounts Receivable and accounting event line reporting) that join XLA accounting event lines (AEL) to the GL-facing posting information. Its principal role is to present, in a single flattened structure, the entered and accounted debit/credit amounts, the taxable amounts relevant to tax reporting, the underlying transaction identifiers, and the GL transfer status.
The view is defined over the XLA accounting event line structure and is designed for reporting and integration consumers that need to reconcile subledger accounting against General Ledger, or that require taxable amount columns such as TAXABLE_ACCOUNTED_CR without navigating multiple base tables. According to the documented metadata, the object is not implemented in this database in the source environment, which indicates its availability is conditional on the localization or the version installed. The user search term taxable_accounted_cr maps directly to one of the view's tax reporting columns, confirming its purpose as a tax-aware accounting line view.
Underlying Base Objects
The documented ETRM metadata lists no explicit referenced base objects for this view. Based on the view text, the object is a union-style projection over XLA accounting event line data, drawing from the subledger accounting event line tables (notably the XLA_AE_LINES/XLA_AEL family) and, for the Brazilian localization, the AR-related accounting tables prefixed JL_BR_AR_BT. The AEL_TABLE and AE_LINE_REFERENCE columns are carried through the projection precisely so that consumers can trace each row back to the originating event and source transaction table.
The presence of SOURCE_TABLE, SOURCE_ID, TRX_HDR_TABLE, and TRX_HDR_ID reflects the view's composition over the accounting event model that links a subledger transaction header to its accounting entry lines. Several GL-side columns are represented as literal NULL values — including AEH_ID, TRANSFER_STATUS_DETAIL_NAME, TRANSFER_SYSTEM, ACCOUNTING_COMPLETE, and GL_TRANSFER_FROM_TO_NAME — which suggests the view is structured to conform to a standard reporting column layout while only partially populating GL transfer detail.
Key Columns
ACCOUNTED_DR/ACCOUNTED_CR— the accounted (functional currency) debit and credit amounts of the accounting line.TAXABLE_ACCOUNTED_CR/TAXABLE_ACCOUNTED_DR— the taxable portion of the accounted credit and debit amounts, the primary target of thetaxable_accounted_crsearch.TAXABLE_ENTERED_DR/TAXABLE_ENTERED_CR— the taxable amounts expressed in the entered (transaction) currency.ENTERED_DR/ENTERED_CR— the entered-currency debit and credit amounts.TAX_CODE— the tax classification applied to the line.GL_TRANSFER_STATUS/GL_TRANSFER_STATUS_NAME— the GL posting/transfer state, supporting reconciliation.AEL_ID,AEL_TABLE,AE_LINE_REFERENCE— identifiers and lineage pointers to the originating accounting event line.JE_HEADER_ID/JE_LINE_NUM— the journal entry header and line reference.CODE_COMBINATION_ID,SET_OF_BOOKS_ID,ORG_ID— accounting flexfield, ledger, and operating unit context.TRX_NUMBER_C,TRX_NUMBER_N,TRX_NUMBER_DISPLAYED,TRX_DATE,TRX_CLASS— transaction-level identifying and classification attributes.THIRD_PARTY_*— customer, supplier, or other third-party identifiers and names associated with the line.CURRENCY_CODE,CURRENCY_CONVERSION_RATE,CURRENCY_CONVERSION_TYPE— currency and conversion context for entered-to-accounted translation.
Common Use Cases and Queries
The view is typically used to produce tax-aware subledger accounting reports, reconcile taxable versus non-taxable activity, and audit the transfer of accounting entries to GL. A representative query to isolate taxable credited amounts by transaction is:
SELECT TRX_NUMBER_DISPLAYED,
ACCOUNTING_DATE,
CURRENCY_CODE,
TAX_CODE,
TAXABLE_ACCOUNTED_CR,
ACCOUNTED_CR,
GL_TRANSFER_STATUS_NAME
FROM APPS.XLA_JL_BR_AR_BT_AEL_GL_V
WHERE TAXABLE_ACCOUNTED_CR <> 0
AND SET_OF_BOOKS_ID = :ledger_id
ORDER BY ACCOUNTING_DATE, TRX_NUMBER_DISPLAYED;
A second common pattern aggregates taxable accounted credits by tax code for period reporting:
SELECT TAX_CODE,
SUM(TAXABLE_ACCOUNTED_CR) taxable_credit,
SUM(ACCOUNTED_CR) accounted_credit
FROM APPS.XLA_JL_BR_AR_BT_AEL_GL_V
WHERE ACCOUNTING_DATE BETWEEN :start_date AND :end_date
GROUP BY TAX_CODE;
Because the object is documented as not implemented in the reference database, availability should be verified with DBA_OBJECTS or DBA_VIEWS prior to reliance, and any dependent custom reports should confirm that the required Chinese localization or patch level is present. Where the view is absent, equivalent results can be obtained by querying the underlying XLA accounting event line tables directly and applying the same taxable amount columns.
-
View: XLA_JL_BR_AR_BT_AEL_GL_V
12.1.1
product: XLA - Subledger Accounting , implementation_dba_data: Not implemented in this database ,
-
View: XLA_JL_BR_AR_BT_AEL_SL_V
12.2.2
product: XLA - Subledger Accounting , implementation_dba_data: Not implemented in this database ,
-
View: XLA_AR_REC_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_REC_AEL_GL_V, object_name:XLA_AR_REC_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_REC_AEL_GL_V ,
-
View: XLA_JL_BR_AR_BT_AEL_SL_V
12.1.1
product: XLA - Subledger Accounting , implementation_dba_data: Not implemented in this database ,
-
View: XLA_AR_REC_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_REC_AEL_GL_V, object_name:XLA_AR_REC_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_REC_AEL_GL_V ,
-
View: XLA_JL_BR_AR_BT_AEL_GL_V
12.2.2
product: XLA - Subledger Accounting , implementation_dba_data: Not implemented in this database ,
-
View: XLA_AR_ADJ_AEL_SL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_ADJ_AEL_SL_V, object_name:XLA_AR_ADJ_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_ADJ_AEL_SL_V ,
-
View: XLA_AR_ADJ_AEL_SL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_ADJ_AEL_SL_MRC_V, object_name:XLA_AR_ADJ_AEL_SL_MRC_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_ADJ_AEL_SL_MRC_V ,
-
View: XLA_AR_REC_AEL_SL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_REC_AEL_SL_MRC_V, object_name:XLA_AR_REC_AEL_SL_MRC_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_REC_AEL_SL_MRC_V ,
-
View: XLA_AR_REC_AEL_SL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_REC_AEL_SL_V, object_name:XLA_AR_REC_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_REC_AEL_SL_V ,
-
View: XLA_AR_ADJ_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_ADJ_AEL_GL_V, object_name:XLA_AR_ADJ_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_ADJ_AEL_GL_V ,
-
View: XLA_AR_CB_REC_AEL_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_CB_REC_AEL_SL_V, object_name:XLA_AR_CB_REC_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_CB_REC_AEL_SL_V ,
-
View: XLA_AR_ADJ_AEL_SL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_ADJ_AEL_SL_MRC_V, object_name:XLA_AR_ADJ_AEL_SL_MRC_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_ADJ_AEL_SL_MRC_V ,
-
View: XLA_AR_REC_AEL_SL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_REC_AEL_SL_MRC_V, object_name:XLA_AR_REC_AEL_SL_MRC_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_REC_AEL_SL_MRC_V ,
-
View: XLA_AR_ADJ_AEL_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_ADJ_AEL_SL_V, object_name:XLA_AR_ADJ_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_ADJ_AEL_SL_V ,
-
View: XLA_AR_REC_AEL_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_REC_AEL_SL_V, object_name:XLA_AR_REC_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_REC_AEL_SL_V ,
-
View: XLA_AR_ADJ_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_ADJ_AEL_GL_V, object_name:XLA_AR_ADJ_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_ADJ_AEL_GL_V ,
-
View: XLA_AR_CB_REC_AEL_SL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_CB_REC_AEL_SL_V, object_name:XLA_AR_CB_REC_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_CB_REC_AEL_SL_V ,
-
View: XLA_AR_INV_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_INV_AEL_GL_V, object_name:XLA_AR_INV_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_INV_AEL_GL_V ,
-
View: XLA_OKL_AEL_GL_CTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_GL_CTR_V, object_name:XLA_OKL_AEL_GL_CTR_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_GL_CTR_V ,
-
View: XLA_AEL_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AEL_SL_V, object_name:XLA_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AEL_SL_V ,
-
View: XLA_OKL_AEL_GL_AST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_GL_AST_V, object_name:XLA_OKL_AEL_GL_AST_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_GL_AST_V ,
-
View: XLA_REQ_ENC_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_REQ_ENC_AEL_GL_V, object_name:XLA_REQ_ENC_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_REQ_ENC_AEL_GL_V ,
-
View: XLA_OKL_AEL_SL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_SL_V, object_name:XLA_OKL_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_SL_V ,
-
View: XLA_OKL_AEL_GL_CTR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_GL_CTR_V, object_name:XLA_OKL_AEL_GL_CTR_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_GL_CTR_V ,
-
View: XLA_AEL_SL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AEL_SL_V, object_name:XLA_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AEL_SL_V ,
-
View: XLA_OKL_AEL_GL_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_GL_TRX_V, object_name:XLA_OKL_AEL_GL_TRX_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_GL_TRX_V ,
-
View: XLA_REQ_ENC_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_REQ_ENC_AEL_GL_V, object_name:XLA_REQ_ENC_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_REQ_ENC_AEL_GL_V ,
-
View: XLA_OKL_AEL_GL_AST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_GL_AST_V, object_name:XLA_OKL_AEL_GL_AST_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_GL_AST_V ,
-
View: XLA_PO_ENC_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PO_ENC_AEL_GL_V, object_name:XLA_PO_ENC_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PO_ENC_AEL_GL_V ,
-
View: XLA_OKL_AEL_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_SL_V, object_name:XLA_OKL_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_SL_V ,
-
View: XLA_AR_INV_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_INV_AEL_GL_V, object_name:XLA_AR_INV_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_INV_AEL_GL_V ,
-
View: XLA_OKL_AEL_GL_QTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_GL_QTE_V, object_name:XLA_OKL_AEL_GL_QTE_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_GL_QTE_V ,
-
View: XLA_OKL_AEL_GL_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_GL_TRX_V, object_name:XLA_OKL_AEL_GL_TRX_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_GL_TRX_V ,
-
View: XLA_OKL_AEL_GL_QTE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OKL_AEL_GL_QTE_V, object_name:XLA_OKL_AEL_GL_QTE_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OKL_AEL_GL_QTE_V ,
-
View: XLA_PO_ENC_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PO_ENC_AEL_GL_V, object_name:XLA_PO_ENC_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PO_ENC_AEL_GL_V ,
-
View: XLA_INV_AEL_GL_PAC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_INV_AEL_GL_PAC_V, object_name:XLA_INV_AEL_GL_PAC_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_INV_AEL_GL_PAC_V ,
-
View: XLA_JL_FA_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_JL_FA_AEL_GL_V, object_name:XLA_JL_FA_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_JL_FA_AEL_GL_V ,
-
View: XLA_INV_AEL_SL_PAC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_INV_AEL_SL_PAC_V, object_name:XLA_INV_AEL_SL_PAC_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_INV_AEL_SL_PAC_V ,
-
View: XLA_OZF_CLA_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OZF_CLA_AEL_GL_V, object_name:XLA_OZF_CLA_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OZF_CLA_AEL_GL_V ,
-
View: XLA_AP_INV_AEL_SL_V
12.1.1
product: XLA - Subledger Accounting , implementation_dba_data: Not implemented in this database ,
-
View: XLA_INV_AEL_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_INV_AEL_SL_V, object_name:XLA_INV_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_INV_AEL_SL_V ,
-
View: XLA_FV_BE_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_FV_BE_GL_V, object_name:XLA_FV_BE_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_FV_BE_GL_V ,
-
View: XLA_OZF_CLA_AEL_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OZF_CLA_AEL_SL_V, object_name:XLA_OZF_CLA_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OZF_CLA_AEL_SL_V ,
-
View: XLA_PO_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PO_AEL_GL_V, object_name:XLA_PO_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PO_AEL_GL_V ,
-
View: XLA_JL_FA_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_JL_FA_AEL_GL_V, object_name:XLA_JL_FA_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_JL_FA_AEL_GL_V ,
-
View: XLA_PA_DR_AEL_SL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_PA_DR_AEL_SL_MRC_V, object_name:XLA_PA_DR_AEL_SL_MRC_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_PA_DR_AEL_SL_MRC_V ,
-
View: XLA_OZF_UTL_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OZF_UTL_AEL_GL_V, object_name:XLA_OZF_UTL_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OZF_UTL_AEL_GL_V ,
-
View: XLA_WIP_AEL_GL_PAC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_WIP_AEL_GL_PAC_V, object_name:XLA_WIP_AEL_GL_PAC_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_WIP_AEL_GL_PAC_V ,
-
View: XLA_FV_BE_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_FV_BE_GL_V, object_name:XLA_FV_BE_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_FV_BE_GL_V ,