Search Results jai_fbt_settlement




Overview

The JAI_FBT_SETTLEMENT table is a core data object within the JA – Asia/Pacific Localizations product in Oracle E-Business Suite (available in both 12.1.1 and 12.2.2). It stores the quarterly settlements calculated for Fringe Benefit Tax (FBT), a statutory obligation applicable primarily to Australian and other Asia/Pacific legislative environments. Each row captures a supplier-facing FBT position for a given legal entity and settlement period, enabling organizations to consolidate fringe benefit liabilities, project expected amounts, track deposit and challan activity, and drive regulatory return generation.

Within a Data Vault modeling heuristic, this object is best classified as a link. Its structure is dominated by foreign key references to parties, party sites, operating units, and legal entities, combined with descriptive and amount-bearing attributes. This makes it a transactional association table rather than a pure hub (which would hold only a business key) or a satellite (which would store descriptive history for a single key). The link classification reflects its role in connecting multiple master entities across a defined settlement period.

Key Information Stored

The table contains 20 documented columns. The most significant are described below.

Common Use Cases and Queries

Typical usage centers on quarterly FBT reporting, reconciliation, and return generation. Analysts join this table to supplier and legal entity masters to produce statutory FBT summaries, reconcile projected versus consolidated amounts, and verify deposits against challans.

A representative query reconciling consolidated and projected amounts by legal entity:

  • SELECT legal_entity_id, period_start_date, period_end_date, SUM(consolidated_amount), SUM(projected_amount) FROM jai_fbt_settlement WHERE return_generate_flag = 'Y' GROUP BY legal_entity_id, period_start_date, period_end_date;

Reporting scenarios include FBT liability trend reporting, deposit tracking by bank/branch, and audit trails matching supplier settlements to party records. The RETURN_GENERATE_FLAG drives downstream return creation workflows.

Related Objects

  • HZ_PARTIES – joined via JAI_FBT_SETTLEMENT.INV_SUPPLIER_ID.
  • HZ_PARTY_SITES – joined via JAI_FBT_SETTLEMENT.INV_SUPPLIER_SITE_ID.
  • HR_ALL_ORGANIZATION_UNITS – joined via JAI_FBT_SETTLEMENT.INV_OU_ID.
  • FV_LEGAL_ENTITIES – joined via JAI_FBT_SETTLEMENT.LEGAL_ENTITY_ID.

These four foreign key relationships define the master-data footprint of the settlement record and are the primary join paths used in localization reporting.