Search Results jai_ap_tds_thhold_slabs
Overview
The JAI_AP_TDS_THHOLD_SLABS table is a core data repository within the Oracle E-Business Suite Asia/Pacific Localizations module (Product JA). It is specifically designed to support the configuration and processing of Tax Deducted at Source (TDS) for compliant regions, such as India. The table's primary function is to store the detailed slab structures that define progressive tax thresholds and their corresponding rates. Each record represents a specific income or transaction amount range (a slab) and the tax rate applicable to that range. This data is essential for the system to automatically calculate the correct TDS amount on invoices and payments based on cumulative or single-transaction values, ensuring adherence to statutory regulations.
Key Information Stored
While the full column list is not detailed in the provided metadata, the documented foreign key relationships and primary key define the table's critical structure. The primary identifier is THRESHOLD_SLAB_ID. Essential relational columns include THRESHOLD_HDR_ID, which links a slab to its parent threshold definition in JAI_AP_TDS_THHOLD_HDRS, and THRESHOLD_TYPE_ID, which classifies the slab via JAI_AP_TDS_THHOLD_TYPES. The table's description confirms it stores the slab details and the applicable tax rate. Therefore, core attributes would logically include columns to define the slab's lower and upper limit (e.g., MIN_AMOUNT, MAX_AMOUNT), the tax rate (RATE), and potentially effective date ranges, forming the basis for all automated TDS calculations.
Common Use Cases and Queries
The primary use case is the dynamic determination of TDS rates during invoice validation and payment processing. The system queries this table to find the appropriate slab based on a vendor's cumulative transaction value or a single invoice amount. Common reporting and audit queries involve analyzing configured slabs. A sample SQL pattern to retrieve all slabs for a specific threshold header would be:
SELECT threshold_slab_id, rate, <amount_columns>
FROM jai_ap_tds_thhold_slabs
WHERE threshold_hdr_id = <header_id>
ORDER BY <slab_sequence>;
Another critical query involves finding the applicable slab for a given amount, which is fundamental to the TDS calculation engine:
SELECT threshold_slab_id, rate
FROM jai_ap_tds_thhold_slabs
WHERE threshold_hdr_id = <header_id>
AND <transaction_amount> BETWEEN min_amount AND max_amount
AND SYSDATE BETWEEN effective_start_date AND effective_end_date;
Related Objects
The JAI_AP_TDS_THHOLD_SLABS table is centrally connected to numerous other localization tables, as evidenced by its extensive foreign key relationships. It references two parent tables: JAI_AP_TDS_THHOLD_HDRS and JAI_AP_TDS_THHOLD_TYPES. More significantly, it is referenced by a wide array of transactional and control tables, highlighting its pivotal role:
- JAI_AP_TDS_INV_TAXES: References slabs for default cumulative (DEFAULT_CUM_THRESHOLD_SLAB_ID), default single (DEFAULT_SIN_THRESHOLD_SLAB_ID), and transaction-specific (THRESHOLD_SLAB_ID, THRESHOLD_SLAB_ID_SINGLE) TDS calculations on invoice tax lines.
- JAI_AP_TDS_THGRP_AUDITS: Tracks slab changes for audit purposes using TRX_THRESHOLD_SLAB_ID, NEW_THRESHOLD_SLAB_ID, and OLD_THRESHOLD_SLAB_ID.
- JAI_AP_TDS_THHOLD_GRPS: Links a threshold group to its CURRENT_THRESHOLD_SLAB_ID.
- JAI_AP_TDS_THHOLD_TAXES: Associates a specific tax type with a slab via THRESHOLD_SLAB_ID.
- JAI_RGM_REFS_ALL & JAI_RGM_THRESHOLDS: Extends slab usage into the Receivables (RG) module for related threshold calculations.
-
Table: JAI_AP_TDS_THHOLD_SLABS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_SLABS, object_name:JAI_AP_TDS_THHOLD_SLABS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of various slabs and the applicable tax rate in the slab. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_SLABS ,
-
Table: JAI_AP_TDS_THHOLD_SLABS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_SLABS, object_name:JAI_AP_TDS_THHOLD_SLABS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of various slabs and the applicable tax rate in the slab. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_SLABS ,
-
Table: JAI_AP_TDS_INV_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_INV_TAXES, object_name:JAI_AP_TDS_INV_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of all the TDS taxes that are applicable on an invoice. , implementation_dba_data: JA.JAI_AP_TDS_INV_TAXES ,
-
Table: JAI_AP_TDS_INV_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_INV_TAXES, object_name:JAI_AP_TDS_INV_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of all the TDS taxes that are applicable on an invoice. , implementation_dba_data: JA.JAI_AP_TDS_INV_TAXES ,
-
Table: JAI_AP_TDS_THGRP_AUDITS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THGRP_AUDITS, object_name:JAI_AP_TDS_THGRP_AUDITS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table tracks the changes that happens to the table JAI_AP_TDS_THHOLD_GRPS. , implementation_dba_data: JA.JAI_AP_TDS_THGRP_AUDITS ,
-
Table: JAI_AP_TDS_THGRP_AUDITS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THGRP_AUDITS, object_name:JAI_AP_TDS_THGRP_AUDITS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table tracks the changes that happens to the table JAI_AP_TDS_THHOLD_GRPS. , implementation_dba_data: JA.JAI_AP_TDS_THGRP_AUDITS ,
-
Table: JAI_AP_TDS_THHOLD_TYPES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_TYPES, object_name:JAI_AP_TDS_THHOLD_TYPES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the details of TDS threshold type agsinst a TDS threshold header. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_TYPES ,
-
Table: JAI_AP_TDS_THHOLD_TYPES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_TYPES, object_name:JAI_AP_TDS_THHOLD_TYPES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the details of TDS threshold type agsinst a TDS threshold header. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_TYPES ,
-
Table: JAI_AP_TDS_THHOLD_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_TAXES, object_name:JAI_AP_TDS_THHOLD_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of taxes applicable for a particular slabrate by operating unit. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_TAXES ,
-
Table: JAI_RGM_THRESHOLDS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RGM_THRESHOLDS, object_name:JAI_RGM_THRESHOLDS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores threshold amount for ORG_TAN_NUM ,PARTY_PAN_NUM and FIN_YEAR , implementation_dba_data: JA.JAI_RGM_THRESHOLDS ,
-
Table: JAI_RGM_THRESHOLDS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RGM_THRESHOLDS, object_name:JAI_RGM_THRESHOLDS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores threshold amount for ORG_TAN_NUM ,PARTY_PAN_NUM and FIN_YEAR , implementation_dba_data: JA.JAI_RGM_THRESHOLDS ,
-
Table: JAI_AP_TDS_THHOLD_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_TAXES, object_name:JAI_AP_TDS_THHOLD_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of taxes applicable for a particular slabrate by operating unit. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_TAXES ,
-
Table: JAI_AP_TDS_THHOLD_HDRS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_HDRS, object_name:JAI_AP_TDS_THHOLD_HDRS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of threshold applicable for a TDS vendor vendor type. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_HDRS ,
-
Table: JAI_AP_TDS_THHOLD_HDRS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_HDRS, object_name:JAI_AP_TDS_THHOLD_HDRS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of threshold applicable for a TDS vendor vendor type. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_HDRS ,
-
Table: JAI_AP_TDS_THHOLD_GRPS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_GRPS, object_name:JAI_AP_TDS_THHOLD_GRPS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the details current threshold position for a threshold group. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_GRPS ,
-
Table: JAI_AP_TDS_THHOLD_GRPS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_GRPS, object_name:JAI_AP_TDS_THHOLD_GRPS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the details current threshold position for a threshold group. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_GRPS ,
-
Table: JAI_RGM_REFS_ALL
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RGM_REFS_ALL, object_name:JAI_RGM_REFS_ALL, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores transactions with TCS type of Tax. This is a TCS repository , implementation_dba_data: JA.JAI_RGM_REFS_ALL ,
-
Table: JAI_RGM_REFS_ALL
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RGM_REFS_ALL, object_name:JAI_RGM_REFS_ALL, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores transactions with TCS type of Tax. This is a TCS repository , implementation_dba_data: JA.JAI_RGM_REFS_ALL ,