Search Results je_nl_eft_batches




Overview

The JE_NL_EFT_BATCHES table, owned by the AP schema, stores Dutch Electronic Funds Transfer (EFT) payment batch definitions within the JE — European Localizations product family in Oracle E-Business Suite 12.1.1 and 12.2.2. It is a core component of the Netherlands localization that enables Payables to consolidate payment instructions into a single bank transmission file. Each row represents one EFT batch — typically aligned to a payment process request or checkrun — and carries both aggregation totals and formatting attributes required to render the Dutch EFT output file.

Under the heuristic Data Vault classification provided in the ETRM metadata, this table is hub-leaning: its primary key (BATCH_ID) is a stable, non-business surrogate, and the table serves as a central anchor to which descriptive detail and media-related attributes attach. This classification is a modeling suggestion only; the physical table itself remains a conventional AP transactional entity.

Key Information Stored

The table contains 19 documented columns. The most significant are:

Common Use Cases and Queries

Typical usage centers on reconciliation, audit, and reporting of Dutch EFT transmissions. A common query pattern retrieves the summary totals for a given checkrun:

  • SELECT batch_id, checkrun_name, tot_payments, tot_payment_amount, no_of_cancellations FROM je_nl_eft_batches WHERE checkrun_name = :p_checkrun;
  • Joining to JE_NL_EFT_MEDIA via MEDIUM_ID to obtain medium-level detail for a batch.
  • Audit reports that compare TOT_PAYMENT_AMOUNT against summed AP_PAYMENT_SCHEDULES values to verify completeness before transmission.
  • Queries by PAYER_BANK_ACCOUNT to consolidate all Dutch EFT activity per disbursement account.

Because CHECKRUN_NAME is unique, it is the most practical business identifier for user-facing lookups, while BATCH_ID should be used for programmatic joins.

Related Objects

  • JE_NL_EFT_MEDIA — referenced by MEDIUM_ID; conversely, JE_NL_EFT_MEDIA.JE_NL_EFT_MEDIA_BATCH_ID references this table's BATCH_ID, forming a bidirectional relationship.
  • AP_PAYMENT_SCHEDULES / AP_CHECKS — source of the underlying payments aggregated into each batch, linked via checkrun and payment identifiers.
  • AP_BANK_ACCOUNTS — provides the disbursement account referenced by PAYER_BANK_ACCOUNT.
  • IBY_PAYMENT_INSTRUCTIONS — upstream payment instruction data feeding Dutch EFT formatting.

Together these objects form the Dutch EFT processing chain within Oracle Payables.