Search Results ozf_batches_all
Overview
The OZF_BATCHES_ALL table is a core data repository within Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2, specifically for the Trade Management (OZF) module. As documented in the ETRM, its primary function is to store batch records for claims processing. In the context of trade promotions and chargebacks, a batch serves as a logical container used to group and manage multiple related claims, typically for processing, approval, and settlement cycles. This table is a multi-org object, indicated by the "_ALL" suffix, meaning it stores data for all operating units and requires a security predicate, such as ORG_ID, for correct querying in a multi-organization environment.
Key Information Stored
While the provided metadata does not list individual columns, the documented primary and foreign key relationships define its critical structural elements. The table's primary key is BATCH_ID (enforced by the OZF_BATCHES_ALL_PK constraint), which uniquely identifies each batch record. Essential data points stored would typically include batch creation details (creation date, created by), batch status (e.g., New, In Process, Complete, Closed), batch name or number for identification, associated period or accounting date, and the ORG_ID to segregate data by operating unit. The batch serves as a control entity, holding header-level information that governs the processing of the individual claims contained within it.
Common Use Cases and Queries
The primary use case is the administration and reporting of claim batches. Common operational queries involve listing batches for a specific operating unit, finding batches by status, or identifying batches created within a date range for audit purposes. A typical reporting query would join OZF_BATCHES_ALL to OZF_CLAIMS_ALL to summarize total claim amounts or counts by batch. For example:
- SELECT b.BATCH_NUMBER, b.CREATION_DATE, b.STATUS, COUNT(c.CLAIM_ID) AS CLAIM_COUNT, SUM(c.CLAIM_AMOUNT) AS TOTAL_AMOUNT FROM OZF_BATCHES_ALL b, OZF_CLAIMS_ALL c WHERE b.BATCH_ID = c.BATCH_ID AND b.ORG_ID = :p_org_id GROUP BY b.BATCH_NUMBER, b.CREATION_DATE, b.STATUS ORDER BY b.CREATION_DATE DESC;
Batch data is crucial for reconciliation processes, where financial controllers review and approve aggregated claim values before posting to subledger accounting.
Related Objects
As per the documented foreign keys, OZF_BATCHES_ALL has direct parent-child relationships with two key transaction tables. The OZF_CLAIMS_ALL table references BATCH_ID, establishing that individual claims are grouped into a batch. Similarly, the OZF_CHARGEBACK_INT_ALL table (likely storing chargeback interface records) also references BATCH_ID, indicating batches are also used in the chargeback process flow. These relationships confirm the table's central role as a controlling entity for claim and chargeback transactions. In practice, it may also be referenced by various Trade Management reports, workflows for batch approval, and interfaces to financial modules like Oracle Receivables.
-
Table: OZF_BATCHES_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_BATCHES_ALL, object_name:OZF_BATCHES_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the batches for claims , implementation_dba_data: OZF.OZF_BATCHES_ALL ,
-
Table: OZF_BATCHES_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_BATCHES_ALL, object_name:OZF_BATCHES_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the batches for claims , implementation_dba_data: OZF.OZF_BATCHES_ALL ,
-
Table: OZF_CHARGEBACK_INT_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CHARGEBACK_INT_ALL, object_name:OZF_CHARGEBACK_INT_ALL, status:VALID, product: OZF - Trade Management , description: chargeback interface table. , implementation_dba_data: OZF.OZF_CHARGEBACK_INT_ALL ,
-
Table: OZF_CHARGEBACK_INT_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CHARGEBACK_INT_ALL, object_name:OZF_CHARGEBACK_INT_ALL, status:VALID, product: OZF - Trade Management , description: chargeback interface table. , implementation_dba_data: OZF.OZF_CHARGEBACK_INT_ALL ,
-
Table: OZF_CLAIMS_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_ALL, object_name:OZF_CLAIMS_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the Claim headers , implementation_dba_data: OZF.OZF_CLAIMS_ALL ,
-
Table: OZF_CLAIMS_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_ALL, object_name:OZF_CLAIMS_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the Claim headers , implementation_dba_data: OZF.OZF_CLAIMS_ALL ,
-
View: OZF_BATCHES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_BATCHES, object_name:OZF_BATCHES, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_BATCHES ,
-
View: OZF_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_BATCHES, object_name:OZF_BATCHES, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_BATCHES ,