Search Results occurrence_status
Overview
JL_BR_AR_BT_BASE_V is a reporting and integration view within the Oracle E-Business Suite Latin America Localizations module (JL), specifically the Brazilian Accounts Receivable (AR) localization. The view consolidates bank return and remittance processing data — the Brazilian "borderô" / retorno bancário workflow — into a single, denormalized record set suitable for concurrent program reporting, GL posting logic, and downstream financial integration. Its primary role is to unify occurrences sourced from bank collection files with their associated receivable documents, portfolio assignments, trade notes (duplicatas), interest, discount, abatement, endorsement credit, and bank charge accounting information so that a single query can drive accounting event generation and reconciliation output.
The view reflects a union-style construction, as evidenced by the anchoring comment "SELECTION 1 – ENDORSEMENT_CREDIT" and the use of placeholder NULL columns (for example, ENDORSEMENT_DEBIT_CCID, BANK_CHARGES_CREDIT_CCID, BANK_CHARGES_DEBIT_CCID) that are populated only in other selections of the union. This design lets the consuming accounting engine treat each occurrence type uniformly through a common set of columns and an ACCT_LINE_TYPE discriminator.
Underlying Base Objects
The ETRM metadata for this object does not document referenced base tables, and the view is listed as "Not implemented in this database," meaning the definition is supplied by the localizations patch but may not be deployed in a given instance. The view text itself reveals its operational dependencies without naming the physical tables:
- JL_BR_AR_REMIT_COLL_OCCUR.GET_ACCT_LINE_TYPE_NAME — a package function used to derive the human-readable ACCT_LINE_TYPE_NAME from the ACCT_LINE_TYPE code (for example 'ENDOCR' for endorsement credit).
- Occurrence and document identifiers (OCCURRENCE_ID, DOCUMENT_ID, BORDERO_ID) that map back to AR remittance/collection occurrence tables and the underlying RA_CUSTOMER_TRX receivable documents.
- Foreign key references to CUSTOMER_ID, SITE_USE_ID, and GL account CCIDs (ENDORSEMENT_CREDIT_CCID, DISCOUNT_CRED_ACCT_CCID) linking to customer and accounting flexfield structures.
Because the base tables are not enumerated in the metadata, the safest interpretation is that the view is built over the Brazilian AR bank-occurrence entity and its companion document/portfolio tables, exposed as a flattened read model rather than as a normalized schema object.
Key Columns
- OCCURRENCE_ID / DOCUMENT_ID / BORDERO_ID — Identifiers linking the bank return occurrence to its receivable document and to the borderô (remittance batch).
- TRADE_NOTE_NUMBER — The duplicata / trade note reference associated with the receivable, central to the user's search on this term.
- BANK_OCCURRENCE_CODE / BANK_OCCURRENCE_TYPE / OCCURRENCE_STATUS — Classify the returned bank event and its processing state.
- PORTFOLIO_CODE — The carteira (portfolio) to which the receivable was assigned.
- INTEREST_PERCENT, INTEREST_AMOUNT, DISCOUNT_AMOUNT, DISCOUNT_LIMIT_DATE, ABATEMENT_AMOUNT, GRACE_DAYS — Financial calculation components for interest, discount, and abatement on settlement.
- ENDORSEMENT_CREDIT_AMOUNT/CCID, BANK_CHARGE_AMOUNT — Endorsement (cambial) and bank charge accounting amounts and their GL accounts.
- ACCT_LINE_TYPE / ACCT_LINE_TYPE_NAME — The accounting line discriminator that distinguishes union selections.
- FLAG_POST_GL, GL_DATE, GL_POSTED_DATE, GL_CANCEL_DATE — Subledger accounting and GL posting control.
- ORG_ID, ATTRIBUTE_CATEGORY, ATTRIBUTE1, ATTRIBUTE2, REQUEST_ID — Multi-org and descriptive flexfield context plus the originating concurrent request.
Common Use Cases and Queries
Typical uses include reconciling bank returns to open receivables, reporting endorsement and bank charge accounting lines, and tracing trade note numbers for a customer or portfolio.
- Locate a receivable by trade note number:
SELECT occurrence_id, document_id, trade_note_number, customer_id, document_amount, due_date FROM jl_br_ar_bt_base_v WHERE trade_note_number = :p_trade_note; - Report unposted accounting lines:
SELECT acct_line_type_name, gl_date, gl_posted_date, document_amount, interest_amount FROM jl_br_ar_bt_base_v WHERE flag_post_gl = 'N' AND org_id = :p_org; - Summarize endorsement credit by portfolio:
SELECT portfolio_code, SUM(endorsement_credit_amount) FROM jl_br_ar_bt_base_v WHERE acct_line_type = 'ENDOCR' GROUP BY portfolio_code;
Because availability depends on localization deployment, verify existence in ALL_VIEWS before relying on the view in custom reports.
-
View: JL_BR_AR_BT_BASE_V
12.2.2
product: JL - Latin America Localizations , implementation_dba_data: Not implemented in this database ,
-
View: JL_BR_AR_BT_BASE_V
12.1.1
product: JL - Latin America Localizations , implementation_dba_data: Not implemented in this database ,
-
VIEW: JL.JL_BR_AR_OCCURRENCE_DOCS_ALL#
12.2.2
-
APPS.JL_BR_AR_BANK_ACCT_PKG SQL Statements
12.1.1
-
APPS.JL_BR_AR_BANK_ACCT_PKG SQL Statements
12.2.2
-
View: JL_BR_AR_OCCURRENCE_DOCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCCURRENCE_DOCS_V, object_name:JL_BR_AR_OCCURRENCE_DOCS_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AR_OCCURRENCE_DOCS_V ,
-
TABLE: APPS.JL_REMIT1_GT
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.JL_REMIT1_GT, object_name:JL_REMIT1_GT, status:VALID,
-
TABLE: APPS.JL_REMIT1_GT
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:FND.JL_REMIT1_GT, object_name:JL_REMIT1_GT, status:VALID,
-
TABLE: JL.JL_REMIT_GT
12.1.1
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_REMIT_GT, object_name:JL_REMIT_GT, status:VALID,
-
TABLE: JL.JL_BR_AR_OCCURRENCE_DOCS_ALL
12.2.2
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_BR_AR_OCCURRENCE_DOCS_ALL, object_name:JL_BR_AR_OCCURRENCE_DOCS_ALL, status:VALID,
-
TABLE: JL.JL_CANCEL_GT
12.1.1
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_CANCEL_GT, object_name:JL_CANCEL_GT, status:VALID,
-
TABLE: JL.JL_CANCEL_GT
12.2.2
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_CANCEL_GT, object_name:JL_CANCEL_GT, status:VALID,
-
TABLE: JL.JL_REMIT_GT
12.2.2
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_REMIT_GT, object_name:JL_REMIT_GT, status:VALID,
-
View: JL_BR_AR_OCCURRENCE_DOCS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCCURRENCE_DOCS_V, object_name:JL_BR_AR_OCCURRENCE_DOCS_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AR_OCCURRENCE_DOCS_V ,
-
APPS.JL_BR_AR_CANCEL_BORDERO SQL Statements
12.1.1
-
VIEW: APPS.JL_BR_AR_OCC_DOCS_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCC_DOCS_ALL_MRC_V, object_name:JL_BR_AR_OCC_DOCS_ALL_MRC_V, status:VALID,
-
VIEW: APPS.JL_BR_AR_OCCURRENCE_DOCS_V
12.2.2
-
APPS.JL_BR_AR_CANCEL_BORDERO SQL Statements
12.2.2
-
VIEW: APPS.JL_BR_AR_OCC_DOCS_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCC_DOCS_ALL_MRC_V, object_name:JL_BR_AR_OCC_DOCS_ALL_MRC_V, status:VALID,
-
VIEW: APPS.JL_BR_AR_OCCURRENCE_DOCS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCCURRENCE_DOCS_V, object_name:JL_BR_AR_OCCURRENCE_DOCS_V, status:VALID,
-
VIEW: APPS.JL_BR_AR_OCCURRENCE_DOCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCCURRENCE_DOCS_V, object_name:JL_BR_AR_OCCURRENCE_DOCS_V, status:VALID,
-
VIEW: JL.JL_BR_AR_OCCURRENCE_DOCS_ALL#
12.2.2
owner:JL, object_type:VIEW, object_name:JL_BR_AR_OCCURRENCE_DOCS_ALL#, status:VALID,
-
VIEW: APPS.JL_BR_AR_OCCURRENCE_DOCS_V
12.1.1
-
VIEW: APPS.JL_BR_AR_OCC_DOCS_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCC_DOCS_MRC_V, object_name:JL_BR_AR_OCC_DOCS_MRC_V, status:VALID,
-
VIEW: APPS.JL_BR_AR_OCC_DOCS_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCC_DOCS_MRC_V, object_name:JL_BR_AR_OCC_DOCS_MRC_V, status:VALID,
-
TRIGGER: APPS.JL_BR_AR_OCC_DOCS_WRT_N_ABTMT2
12.1.1
-
TRIGGER: APPS.JL_BR_AR_OCC_DOCS_WRT_N_ABTMT2
12.2.2
-
TRIGGER: APPS.JL_BR_AR_OCC_DOCS_WRT_N_ABTMT1
12.1.1
-
View: JL_BR_AR_OCC_DOCS_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCC_DOCS_ALL_MRC_V, object_name:JL_BR_AR_OCC_DOCS_ALL_MRC_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AR_OCC_DOCS_ALL_MRC_V ,
-
View: JL_BR_AR_OCC_DOCS_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCC_DOCS_ALL_MRC_V, object_name:JL_BR_AR_OCC_DOCS_ALL_MRC_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AR_OCC_DOCS_ALL_MRC_V ,
-
TRIGGER: APPS.JL_BR_AR_OCC_DOCS_WRT_N_ABTMT1
12.2.2
-
APPS.JL_BR_AR_OCCURRENCE_DOCS_PKG SQL Statements
12.2.2
-
APPS.JL_BR_AR_OCCURRENCE_DOCS_PKG SQL Statements
12.1.1
-
APPS.JL_BR_AR_REMIT_COLL_OCCUR SQL Statements
12.1.1
-
APPS.JL_BR_AR_REMIT_COLL_OCCUR SQL Statements
12.2.2
-
TRIGGER: APPS.JL_BR_AR_OCC_DOCS_DIS_N_OTHER
12.2.2
-
TRIGGER: APPS.JL_BR_AR_OCC_DOCS_DIS_N_OTHER
12.1.1
-
PACKAGE BODY: APPS.JL_BR_AR_BANK_ACCT_PKG
12.1.1
-
View: JL_BR_AR_OCC_DOCS_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCC_DOCS_MRC_V, object_name:JL_BR_AR_OCC_DOCS_MRC_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AR_OCC_DOCS_MRC_V ,
-
View: JL_BR_AR_OCC_DOCS_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_OCC_DOCS_MRC_V, object_name:JL_BR_AR_OCC_DOCS_MRC_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AR_OCC_DOCS_MRC_V ,
-
PACKAGE BODY: APPS.JL_BR_AR_BANK_ACCT_PKG
12.2.2
-
TRIGGER: APPS.JL_BR_AR_OCC_DOCS_DUE_DATE_CHG
12.2.2
-
TRIGGER: APPS.JL_BR_AR_OCC_DOCS_DUE_DATE_CHG
12.1.1
-
TABLE: JL.JL_BR_AR_OCCURRENCE_DOCS_ALL
12.1.1
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_BR_AR_OCCURRENCE_DOCS_ALL, object_name:JL_BR_AR_OCCURRENCE_DOCS_ALL, status:VALID,
-
PACKAGE BODY: APPS.JL_BR_AR_CANCEL_BORDERO
12.1.1
-
PACKAGE BODY: APPS.JL_BR_AR_OCCURRENCE_DOCS_PKG
12.1.1
-
PACKAGE BODY: APPS.JL_BR_AR_OCCURRENCE_DOCS_PKG
12.2.2
-
PACKAGE BODY: APPS.JL_BR_AR_CANCEL_BORDERO
12.2.2
-
PACKAGE BODY: APPS.JL_BR_AR_REMIT_COLL_OCCUR
12.1.1
-
PACKAGE BODY: APPS.JL_BR_AR_REMIT_COLL_OCCUR
12.2.2