Search Results excise_invoice_date
Overview
APPS.JAI_RCV_RG_QUANTITY_V is a reporting view in Oracle E-Business Suite that consolidates receipt-based quantity information captured in the Indian excise registers maintained by the JAI (India Localization) module. It presents a unified, read-only projection of goods received quantities drawn from three separate statutory register tables, exposing them through a single consistent column set. In Oracle EBS 12.1.1 and 12.2.2, this view is primarily used to support excise and VAT reporting, reconciliation of receipt quantities against register balances, and downstream reporting or integration queries that require a normalized quantity figure regardless of which register originally held the transaction.
A defining characteristic of the view is the TRANSACTION_SOURCE_NUM = 18 filter applied to every branch of the underlying UNION, which restricts the result set to receipt-based movements. This aligns the view with Receiving (RCV) activity, consistent with its JAI_RCV naming prefix.
Underlying Base Objects
The view is defined over three documented base objects, all accessed through public synonyms owned by APPS:
- JAI_CMN_RG_23AC_I_TRXS — the RG23A and RG23C Part I register transaction table. The view decodes
REGISTER_TYPEto distinguish the two registers ('A'becomes'RG23A - PartI', otherwise'RG23C - PartI') and exposesRECEIPT_REFas the transaction identifier. - JAI_CMN_RG_I_TRXS — the RG-I register transaction table. Here the transaction identifier is sourced from
REF_DOC_NO, the register label is hard-coded as'RG-I', and the quantity is derived from theMANUFACTURED_QTYcolumn. - JAI_CMN_RG_23D_TRXS — the RG23D register transaction table. The transaction identifier is
TO_CHAR(RECEIPT_REF), the register label is'RG23D', and the invoice reference comes fromCOMM_INVOICE_NOandCOMM_INVOICE_DATE.
The three branches are combined with UNION ALL for the first two and UNION for the third, yielding a de-duplicated, register-agnostic result set. All three branches apply the same source-number filter.
Key Columns
- TRANSACTION_ID — the receipt reference or document number identifying the movement.
- REGISTER — the statutory register name (RG23A-PartI, RG23C-PartI, RG-I, or RG23D).
- ORGANIZATION_ID / LOCATION_ID — the inventory organization and location context.
- FIN_YEAR — the financial year of the register entry.
- SLNO / REGISTER_ID — the serial number and register instance identifier.
- EXCISE_INVOICE_NUMBER / EXCISE_INVOICE_DATE — excise or commercial invoice reference (mapped from
EXCISE_INVOICE_NO,COMM_INVOICE_NO, and the corresponding date columns). - CREATION_DATE — truncated creation date of the register record.
- PRIMARY_UOM / TRANSACTION_UOM — the primary and transaction units of measure.
- QUANTITY_RECEIVED — the central measure, sourced from
QUANTITY_RECEIVEDin the RG23A/C and RG23D tables and fromMANUFACTURED_QTYin the RG-I branch.
Common Use Cases and Queries
Typical scenarios include tracing the register context of a received quantity, reconciling excise register totals against receipt data, and generating quantity-based audit extracts.
SELECT register, transaction_id, quantity_received
FROM apps.jai_rcv_rg_quantity_v
WHERE organization_id = :org_id
AND fin_year = :fin_year;
Aggregation by register is common for statutory summaries:
SELECT register, SUM(quantity_received) total_qty
FROM apps.jai_rcv_rg_quantity_v
GROUP BY register;
Because the view is a UNION, queries filtering on EXCISE_INVOICE_NUMBER or TRANSACTION_ID are effective for locating a specific movement across registers. As with all such views, no DML is permitted; it is intended strictly for query and reporting purposes.
-
VIEW: APPS.JAI_RCV_RG_QUANTITY_V
12.1.1
-
VIEW: APPS.JAI_RCV_RG_QUANTITY_V
12.2.2
-
View: JAI_RCV_RG_QUANTITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RG_QUANTITY_V, object_name:JAI_RCV_RG_QUANTITY_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_RCV_RG_QUANTITY_V ,
-
VIEW: JA.JAI_RCV_RTV_DTLS#
12.2.2
-
VIEW: JA.JAI_RCV_INTERFACE_TRXS#
12.2.2
-
View: JAI_RCV_RG_QUANTITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RG_QUANTITY_V, object_name:JAI_RCV_RG_QUANTITY_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_RCV_RG_QUANTITY_V ,
-
APPS.JA_JAIN23P2_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.JAI_RCV_RG_AMOUNT_V
12.1.1
-
VIEW: JA.JAI_PO_RMA_RTN_LINES#
12.2.2
-
VIEW: JA.JAI_PA_DRAFT_INVOICES#
12.2.2
-
APPS.JA_JAIN23P2_XMLP_PKG SQL Statements
12.2.2
-
View: JAI_RCV_RG_AMOUNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RG_AMOUNT_V, object_name:JAI_RCV_RG_AMOUNT_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_RCV_RG_AMOUNT_V ,
-
VIEW: APPS.JAI_RCV_RG_AMOUNT_V
12.2.2
-
VIEW: JA.JAI_RETRO_LINE_CHANGES#
12.2.2
-
View: JAI_RCV_RG_AMOUNT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RG_AMOUNT_V, object_name:JAI_RCV_RG_AMOUNT_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_RCV_RG_AMOUNT_V ,
-
VIEW: JA.JAI_CMN_RG_ROUND_HDRS#
12.2.2
-
VIEW: JA.JAI_RCV_HEADERS#
12.2.2
-
VIEW: JA.JAI_RCV_LINES#
12.2.2
-
VIEW: JA.JAI_CMN_RG_23AC_II_TRXS#
12.2.2
-
VIEW: JA.JAI_AR_TRX_LINES#
12.2.2
-
VIEW: JA.JAI_CMN_RG_I_TRXS#
12.2.2
-
VIEW: JA.JAI_OM_WSH_LINES_ALL#
12.2.2
-
VIEW: JA.JAI_RCV_TRANSACTIONS#
12.2.2
-
VIEW: JA.JAI_CMN_RG_23AC_I_TRXS#
12.2.2
-
VIEW: JA.JAI_RCV_INTERFACE_TRXS#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_RCV_INTERFACE_TRXS#, status:VALID,
-
VIEW: JA.JAI_RCV_RTV_DTLS#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_RCV_RTV_DTLS#, status:VALID,
-
VIEW: JA.JAI_PO_RMA_RTN_LINES#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_PO_RMA_RTN_LINES#, status:VALID,
-
VIEW: APPS.JAI_RCV_RG_AMOUNT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RG_AMOUNT_V, object_name:JAI_RCV_RG_AMOUNT_V, status:VALID,
-
VIEW: APPS.JAI_RCV_RG_AMOUNT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RG_AMOUNT_V, object_name:JAI_RCV_RG_AMOUNT_V, status:VALID,
-
VIEW: JA.JAI_PA_DRAFT_INVOICES#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_PA_DRAFT_INVOICES#, status:VALID,
-
VIEW: APPS.JAI_RCV_RG_QUANTITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RG_QUANTITY_V, object_name:JAI_RCV_RG_QUANTITY_V, status:VALID,
-
VIEW: APPS.JAI_RCV_RG_QUANTITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RG_QUANTITY_V, object_name:JAI_RCV_RG_QUANTITY_V, status:VALID,
-
VIEW: JA.JAI_CMN_RG_ROUND_HDRS#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_CMN_RG_ROUND_HDRS#, status:VALID,
-
TABLE: JA.JAI_RCV_INTERFACE_TRXS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_INTERFACE_TRXS, object_name:JAI_RCV_INTERFACE_TRXS, status:VALID,
-
TABLE: JA.JAI_RCV_INTERFACE_TRXS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_INTERFACE_TRXS, object_name:JAI_RCV_INTERFACE_TRXS, status:VALID,
-
VIEW: JA.JAI_RETRO_LINE_CHANGES#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_RETRO_LINE_CHANGES#, status:VALID,
-
VIEW: JA.JAI_RCV_HEADERS#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_RCV_HEADERS#, status:VALID,
-
VIEW: APPS.JAI_RCV_RECEIVE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RECEIVE_LINES_V, object_name:JAI_RCV_RECEIVE_LINES_V, status:VALID,
-
TABLE: JA.JAI_RCV_HEADERS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_HEADERS, object_name:JAI_RCV_HEADERS, status:VALID,
-
TABLE: JA.JAI_RCV_RTV_DTLS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_RTV_DTLS, object_name:JAI_RCV_RTV_DTLS, status:VALID,
-
TABLE: JA.JAI_RCV_RTV_DTLS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_RTV_DTLS, object_name:JAI_RCV_RTV_DTLS, status:VALID,
-
PACKAGE: APPS.JA_JAINMCEN_XMLP_PKG
12.1.1
-
VIEW: JA.JAI_CMN_RG_23AC_II_TRXS#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_CMN_RG_23AC_II_TRXS#, status:VALID,
-
VIEW: JA.JAI_RCV_LINES#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_RCV_LINES#, status:VALID,
-
PACKAGE: APPS.JA_JAINMCEN_XMLP_PKG
12.2.2
-
TABLE: JA.JAI_PO_RMA_RTN_LINES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_RMA_RTN_LINES, object_name:JAI_PO_RMA_RTN_LINES, status:VALID,
-
View: JAI_PROJECT_INV_AEL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_PROJECT_INV_AEL_V, object_name:JAI_PROJECT_INV_AEL_V, status:VALID, product: JA - Asia/Pacific Localizations , description: Base view for projects , implementation_dba_data: APPS.JAI_PROJECT_INV_AEL_V ,
-
View: JAI_PO_REC_MTL_AEL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_PO_REC_MTL_AEL_V, object_name:JAI_PO_REC_MTL_AEL_V, status:VALID, product: JA - Asia/Pacific Localizations , description: Fetch accounting entries for Deliver event with Source 'Inventory India', Category 'MTL' , implementation_dba_data: APPS.JAI_PO_REC_MTL_AEL_V ,
-
VIEW: JA.JAI_AR_TRX_LINES#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_AR_TRX_LINES#, status:VALID,
-
PACKAGE BODY: APPS.JA_JAIN23P2_XMLP_PKG
12.2.2