Search Results ship_attribute2




Overview

APPS.JAI_RCV_CLAIM_MODVAT_V is a validity-checked Oracle E-Business Suite view owned by the APPS schema and registered in the applications design data as JA.JAI_RCV_CLAIM_MODVAT_V. It belongs to the India Localization (JAI) family of objects and consolidates receiving transaction data with the MODVAT/CENVAT excise claim information required for Indian indirect tax processing. The view exposes one row per receipt transaction line, joining core Oracle Purchasing receiving entities to the JAI CENVAT claim tables and JAI inventory organization setup so that duty credit eligibility, claimed amounts, and item classification can be reported together.

The object is documented as an Internal view type. Oracle's standard notice applies: Oracle Corporation does not support direct access to applications data through this object except from standard Oracle Applications programs. Consequently, reporting and integration should treat JAI_RCV_CLAIM_MODVAT_V as a read-only, localization-owned construct. It is available in both EBS 12.1.1 and 12.2.2, with the 12.2.2 metadata confirming the current referenced base objects. The user search term "ship_attribute1" corresponds directly to the SHIP_ATTRIBUTE1 column (VARCHAR2 150), which carries shipment-level descriptive attribute data used by Indian localization to hold claim-related or document reference identifiers alongside the receipt.

Underlying Base Objects

The 12.2.2 documented dependency list identifies the following referenced objects:

The view therefore unites the standard Purchasing receiving model with the India Localization tax extension tables, filtered by inventory organization setup.

Key Columns

Common Use Cases and Queries

Typical scenarios include reconciling CENVAT claimed versus eligible amounts per receipt, validating item setup against actual claims, and extracting receipt data for indirect tax returns or third-party reporting. Because SHIP_ATTRIBUTE1 is frequently used to store claim or document references, it is a common filter.

SELECT receipt_num,
       transaction_id,
       ship_attribute1,
       item_id,
       item_modvat_flag,
       claim_modvat_flag,
       cenvat_amount,
       cenvat_claimed_amt,
       cenvat_claimed_ptg
FROM   apps.jai_rcv_claim_modvat_v
WHERE  transaction_date >= :p_from_date
AND    claim_modvat_flag = 'Y';
SELECT receipt_num,
       ship_attribute1,
       SUM(cenvat_claimed_amt) claimed
FROM   apps.jai_rcv_claim_modvat_v
WHERE  ship_attribute1 IS NOT NULL
GROUP  BY receipt_num, ship_attribute1;

Queries should be executed under a responsibility with India Localization access, and results treated as read-only reporting output per Oracle's internal-use restriction.