Search Results cess_debit




Overview

APPS.JAI_RCV_RG_AMOUNT_V is a reporting view in Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2 that consolidates receipt-related excise register transactions maintained by the India Localization (JAI) module. India Localization tracks excise duty movements through statutory registers, principally the RG23A and RG23C Part II registers and the PLA (Personal Ledger Account). This view presents a unified, amount-oriented projection of those register entries so that downstream reports, reconciliations, and integration programs can consume credit and debit values without navigating the individual transaction tables directly.

The view is defined by a UNION ALL of two SELECT statements, each drawing from a separate register transaction table and filtering on a fixed transaction source. It exposes the register identity, organization and location context, financial year, serial number, and excise invoice data, alongside aggregated credit and debit amounts. Because both halves of the union share the same column list and data types, consumers see a single, uniform result set spanning both excise register families.

Underlying Base Objects

The documented base objects referenced by APPS.JAI_RCV_RG_AMOUNT_V are two synonyms:

  • JAI_CMN_RG_23AC_II_TRXS — the RG23A/RG23C Part II transaction table. The view filters this source with the predicate WHERE TRANSACTION_SOURCE_NUM = 18 and derives the REGISTER label through DECODE(REGISTER_TYPE, 'A', 'RG23A - PartII', 'RG23C - PartII').
  • JAI_CMN_RG_PLA_TRXS — the PLA transaction table. The second union branch filters this source with WHERE TRANSACTION_SOURCE_NUM = 19 and hard-codes the REGISTER literal as 'PLA'.

Both underlying objects are synonyms, resolving to the corresponding JAI accounting and excise register tables in the APPS schema. The view is therefore a read-only, non-materialized definition: no independent storage exists, and every query executes the union against the base tables in real time.

Key Columns

Common Use Cases and Queries

Typical uses include excise register reconciliation, CENVAT credit tracking, and feeds into statutory returns. To isolate debit-side activity, including the OTHER_DEBIT component:

  • SELECT transaction_id, register, fin_year, debit, other_debit FROM apps.jai_rcv_rg_amount_v WHERE other_debit > 0;
  • SELECT register, fin_year, SUM(debit) total_debit, SUM(other_debit) total_other_debit FROM apps.jai_rcv_rg_amount_v GROUP BY register, fin_year;
  • SELECT * FROM apps.jai_rcv_rg_amount_v WHERE organization_id = :org AND fin_year = :fy;

Because the view performs union and arithmetic at runtime, restrictive predicates on ORGANIZATION_ID, FIN_YEAR, or REGISTER improve performance. Access is governed by the APPS schema and standard JAI responsibilities.