Search Results fun_net_batches_all
Overview
FUN_NET_BATCHES_ALL is a transactional table owned by the FUN (Financials Common Modules) schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores information about Netting Batches — the container records used by the Netting functionality to group payable and receivable transactions between trading partners and counterparties so that offsetting balances can be settled as a single net amount. Each row represents one netting batch, carrying the batch's identity, currency, status, settlement dates, exchange rate attributes, and the monetary total that results from the netting calculation.
The table operates as the header-level object of the netting process. Downstream activity, including settlement processing and accounting, is derived from batches defined here. The mined Data Vault classification for this object is standalone, meaning the heuristic model suggests treating it as an independent hub-style entity rather than a dependent satellite, although functional relationships to agreements and payment processes remain. In 12.2.2 the documented physical schema contains 43 columns, and the object holds VALID status.
Key Information Stored
The surrogate primary key is BATCH_ID, which is also the single documented unique-index business-key candidate (FUN_NET_BATCHES_ALL_U1). The most significant attributes are:
BATCH_NUMBERandBATCH_NAME— the user-facing identifier and description of the netting batch.BATCH_STATUS_CODE— the lifecycle state of the batch, governing whether it can be reviewed, approved, or settled.BATCH_CURRENCY— the currency in which the batch is denominated and netted.TOTAL_NETTED_AMT— the resulting net amount after offsetting all included transactions.TRANSACTION_DUE_DATE,SETTLEMENT_DATE, andRESPONSE_DATE— the key dates driving scheduling and counterparty response windows.EXCHANGE_RATE_TYPEandEXCHANGE_RATE— the rate attributes used when the batch currency differs from functional currency.GL_DATE— the accounting date assigned to the generated entries.AGREEMENT_ID— links the batch to the netting agreement governing the counterparty relationship.REVIEW_NETTING_BATCH_FLAG— indicates whether the batch requires review before settlement.CHECKRUN_ID— foreign key toAP_INV_SELECTION_CRITERIA_ALL, associating the batch with an Oracle Payables payment run.ORG_ID— the operating unit context, essential for multi-org reporting.
Standard audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, OBJECT_VERSION_NUMBER) and twenty ATTRIBUTE columns plus ATTRIBUTE_CATEGORY provide auditing and extensibility, typically populated by the Oracle Applications Framework (OAF) Netting UI.
Common Use Cases and Queries
Typical uses include batch status reporting, settlement reconciliation, and payment-run verification. A common query pattern lists active batches for a given operating unit:
SELECT batch_id, batch_number, batch_name, batch_currency, batch_status_code, total_netted_amt, settlement_date FROM fun.fun_net_batches_all WHERE org_id = :p_org_id AND batch_status_code = 'APPROVED';- Joining to the payment run context:
... FROM fun_net_batches_all b, ap_inv_selection_criteria_all c WHERE b.checkrun_id = c.checkrun_id; - Currency exposure reporting by grouping on
BATCH_CURRENCYand summingTOTAL_NETTED_AMT. - Audit/version checks using
OBJECT_VERSION_NUMBERto detect concurrent updates from the OAF-based Netting screens.
Reports frequently filter on GL_DATE and SETTLEMENT_DATE to reconcile netting activity to the general ledger.
Related Objects
AP_INV_SELECTION_CRITERIA_ALL— referenced viaFUN_NET_BATCHES_ALL.CHECKRUN_ID, tying batches to Payables payment batches.FUN_NET_AGREEMENTS(AGREEMENT_ID) — the netting agreement defining counterparties and rules.- Netting batch transaction/detail tables in the
FUNschema, which hold the individual transactions rolled into each batch. - Netting batch accounting and settlement tables that consume
BATCH_IDto create downstream entries. - Oracle Payables payment APIs and the Netting OAF pages/BC4J entities that insert and update rows in this table.
- Multi-org views over
ORG_IDused for operating-unit–level reporting.
-
Table: FUN_NET_BATCHES_ALL
12.1.1
owner:FUN, object_type:TABLE, fnd_design_data:FUN.FUN_NET_BATCHES_ALL, object_name:FUN_NET_BATCHES_ALL, status:VALID, product: FUN - Financials Common Modules , description: FUN_NET_BATCHES_ALL stores information about Netting Batches. , implementation_dba_data: FUN.FUN_NET_BATCHES_ALL ,
-
Table: FUN_NET_BATCHES_ALL
12.2.2
owner:FUN, object_type:TABLE, fnd_design_data:FUN.FUN_NET_BATCHES_ALL, object_name:FUN_NET_BATCHES_ALL, status:VALID, product: FUN - Financials Common Modules , description: FUN_NET_BATCHES_ALL stores information about Netting Batches. , implementation_dba_data: FUN.FUN_NET_BATCHES_ALL ,
-
APPS.FUN_XML_REPORT_PKG SQL Statements
12.2.2
-
APPS.FUN_XML_REPORT_PKG SQL Statements
12.1.1
-
APPS.FUN_NET_APAR_UTILS_GRP SQL Statements
12.1.1
-
APPS.FUN_NET_APAR_UTILS_GRP SQL Statements
12.2.2
-
APPS.FUN_NET_APPROVAL_WF SQL Statements
12.1.1
-
APPS.FUN_NET_APPROVAL_WF SQL Statements
12.2.2
-
SYNONYM: APPS.FUN_NET_BATCHES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FUN_NET_BATCHES_ALL, status:VALID,
-
APPS.FUN_NET_CONC_PROG_PKG SQL Statements
12.2.2
-
VIEW: FUN.FUN_NET_BATCHES_ALL#
12.2.2
owner:FUN, object_type:VIEW, object_name:FUN_NET_BATCHES_ALL#, status:VALID,
-
SYNONYM: APPS.FUN_NET_BATCHES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FUN_NET_BATCHES_ALL, status:VALID,
-
VIEW: FUN.FUN_NET_BATCHES_ALL#
12.2.2
-
APPS.FUN_NET_BATCHES_PKG SQL Statements
12.1.1
-
APPS.FUN_NET_BATCHES_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.FUN_NET_EXTRACT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_EXTRACT_PKG, status:VALID,
-
PACKAGE: APPS.FUN_NET_EXTRACT_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FUN_NET_EXTRACT_PKG, status:VALID,
-
PACKAGE: APPS.FUN_NET_EXTRACT_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FUN_NET_EXTRACT_PKG, status:VALID,
-
PACKAGE: APPS.FUN_NET_CONC_PROG_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FUN_NET_CONC_PROG_PKG, status:VALID,
-
PACKAGE: APPS.FUN_NET_CANCEL_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FUN_NET_CANCEL_PKG, status:VALID,
-
PACKAGE: APPS.FUN_NET_CANCEL_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FUN_NET_CANCEL_PKG, status:VALID,
-
TABLE: FUN.FUN_NET_BATCHES_ALL
12.1.1
owner:FUN, object_type:TABLE, fnd_design_data:FUN.FUN_NET_BATCHES_ALL, object_name:FUN_NET_BATCHES_ALL, status:VALID,
-
TABLE: FUN.FUN_NET_BATCHES_ALL
12.2.2
owner:FUN, object_type:TABLE, fnd_design_data:FUN.FUN_NET_BATCHES_ALL, object_name:FUN_NET_BATCHES_ALL, status:VALID,
-
SYNONYM: APPS.FUN_NET_BATCHES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FUN_NET_BATCHES, status:VALID,
-
PACKAGE BODY: APPS.FUN_NET_BATCHES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_BATCHES_PKG, status:VALID,
-
PACKAGE: APPS.FUN_NET_CONC_PROG_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FUN_NET_CONC_PROG_PKG, status:VALID,
-
PACKAGE BODY: APPS.FUN_NET_CONC_PROG_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_CONC_PROG_PKG, status:VALID,
-
PACKAGE BODY: APPS.FUN_NET_EXTRACT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_EXTRACT_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.FUN_NET_BATCHES_PKG
12.1.1
-
PACKAGE BODY: APPS.FUN_NET_APAR_UTILS_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_APAR_UTILS_GRP, status:VALID,
-
PACKAGE BODY: APPS.FUN_NET_APAR_UTILS_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_APAR_UTILS_GRP, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.FUN_NET_BATCHES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FUN_NET_BATCHES, status:VALID,
-
PACKAGE BODY: APPS.FUN_XML_REPORT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_XML_REPORT_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.FUN_NET_BATCHES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_BATCHES_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.FUN_NET_ARAP_PKG SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.FUN_NET_CONC_PROG_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_CONC_PROG_PKG, status:VALID,
-
PACKAGE BODY: APPS.FUN_NET_BATCHES_PKG
12.2.2
-
PACKAGE BODY: APPS.FUN_XML_REPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_XML_REPORT_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.FUN_NET_APPROVAL_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_APPROVAL_WF, status:VALID,
-
PACKAGE BODY: APPS.FUN_NET_APPROVAL_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FUN_NET_APPROVAL_WF, status:VALID,
-
PACKAGE BODY: APPS.FUN_XML_REPORT_PKG
12.2.2