Search Results extended_amount
Overview
APPS.AR_INVOICE_TOTALS_V is a reporting view in the Oracle E-Business Suite Receivables (AR) module that consolidates invoice line amounts into summary totals per transaction. It categorizes amounts into tax, freight, and other line components using the LINE_TYPE discriminator found on receivable transaction lines. The view is defined only over transactions whose complete flag is set and whose transaction type is configured with a primary printing option, which restricts the result set to finalized, printable invoices.
Because it aggregates at the CUSTOMER_TRX_ID level, the view is typically consumed in reporting, dashboards, and downstream integrations that require header-level financial totals without traversing the line detail. The line_type column that a user searches for is the central pivot of the view's DECODE logic, determining whether a given line's extended amount is attributed to tax, freight, or ordinary line amounts.
Underlying Base Objects
The view is defined over three base objects, each referenced through an APPS synonym in the 12.2.2 metadata:
- RA_CUSTOMER_TRX — the transaction header table, supplying
CUSTOMER_TRX_ID,CUST_TRX_TYPE_ID, andCOMPLETE_FLAG. - RA_CUSTOMER_TRX_LINES — the line detail table, supplying
LINE_TYPE,EXTENDED_AMOUNT, and the join keyCUSTOMER_TRX_ID. - RA_CUST_TRX_TYPES — the transaction type table, supplying
DEFAULT_PRINTING_OPTION, which filters to types marked for primary printing.
The three objects are joined on CUSTOMER_TRX_ID and CUST_TRX_TYPE_ID, and the header rows are further constrained by TRX.COMPLETE_FLAG = 'Y' and TYPES.DEFAULT_PRINTING_OPTION = 'PRI'.
Key Columns
- CUSTOMER_TRX_ID — the transaction identifier and the sole grouping key, linking each result row to its invoice header.
- TOTAL_TAX_AMOUNT — the sum of
EXTENDED_AMOUNTacross lines whereLINE_TYPE = 'TAX'. - TOTAL_FREIGHT_AMOUNT — the sum of
EXTENDED_AMOUNTacross lines whereLINE_TYPE = 'FREIGHT'. - TOTAL_LINE_AMOUNT — the sum of
EXTENDED_AMOUNTfor lines that are neither FREIGHT nor TAX, representing the core item line total. - TOTAL_AMOUNT — the sum of all
EXTENDED_AMOUNTvalues across every line, i.e., the aggregate transaction extended amount.
Note that LINE_TYPE itself is not projected as a column; it is used internally within DECODE expressions to partition the amounts.
Common Use Cases and Queries
Typical usage includes reconciling invoice headers against their line detail, building AR reporting extracts, and validating printing eligibility. A representative query retrieving totals for a single transaction is:
SELECT customer_trx_id, total_line_amount, total_tax_amount, total_freight_amount, total_amount FROM apps.ar_invoice_totals_v WHERE customer_trx_id = :trx_id;
To compare the view's tax total against an independently computed line-level tax amount:
SELECT t.customer_trx_id, t.total_tax_amount, SUM(l.extended_amount) line_tax FROM apps.ar_invoice_totals_v t, apps.ra_customer_trx_lines l WHERE t.customer_trx_id = l.customer_trx_id AND l.line_type = 'TAX' GROUP BY t.customer_trx_id, t.total_tax_amount;
Because the view filters on COMPLETE_FLAG and DEFAULT_PRINTING_OPTION = 'PRI', results exclude incomplete transactions and transaction types not marked for primary printing, which should be accounted for when reconciling against AR aging or standard receipt-based reports.
-
VIEW: APPS.AR_INVOICE_TOTALS_V
12.2.2
-
VIEW: APPS.AR_INVOICE_TOTALS_V
12.1.1
-
VIEW: AR.AR_CONS_INV_TRX_LINES_ALL#
12.2.2
-
VIEW: FV.FV_SF1080_DETAIL_TEMP#
12.2.2
-
VIEW: APPS.AR_INVOICE_INSTALLMENTS_V
12.1.1
-
VIEW: APPS.AR_INVOICE_INSTALLMENTS_V
12.2.2
-
View: AR_INVOICE_TOTALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_TOTALS_V, object_name:AR_INVOICE_TOTALS_V, status:VALID, product: AR - Receivables , description: Collects the total amount of charges for a transaction , implementation_dba_data: APPS.AR_INVOICE_TOTALS_V ,
-
View: AR_INVOICE_TOTALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_TOTALS_V, object_name:AR_INVOICE_TOTALS_V, status:VALID, product: AR - Receivables , description: Collects the total amount of charges for a transaction , implementation_dba_data: APPS.AR_INVOICE_TOTALS_V ,
-
VIEW: GML.OP_ORDR_CHG#
12.2.2
-
APPS.ARP_CTL_SUM_PKG SQL Statements
12.1.1
-
APPS.ARP_CTL_SUM_PKG SQL Statements
12.2.2
-
VIEW: JA.JAI_AR_TRX_INS_LINES_T#
12.2.2
-
View: AR_INVOICE_INSTALLMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_INSTALLMENTS_V, object_name:AR_INVOICE_INSTALLMENTS_V, status:VALID, product: AR - Receivables , description: Collects invoice installment information , implementation_dba_data: APPS.AR_INVOICE_INSTALLMENTS_V ,
-
APPS.IBY_AR_UTILS SQL Statements
12.1.1
-
View: AR_INVOICE_INSTALLMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_INSTALLMENTS_V, object_name:AR_INVOICE_INSTALLMENTS_V, status:VALID, product: AR - Receivables , description: Collects invoice installment information , implementation_dba_data: APPS.AR_INVOICE_INSTALLMENTS_V ,
-
APPS.GML_ORAKRP_XMLP_PKG SQL Statements
12.1.1
-
APPS.GML_ORAKRP_XMLP_PKG SQL Statements
12.2.2
-
VIEW: CN.CN_TRX_LINES_ALL#
12.2.2
-
View: BIC_INVLINE_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: AR.RA_CM_REQUEST_LINES_ALL#
12.2.2
-
View: BIC_INVLINE_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_INVLINE_DETAIL_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKL_CS_VENDOR_INVOICE_DTLS_UV
12.2.2
-
VIEW: APPS.OKL_CS_ACCOUNT_CONT_INV_UV
12.2.2
-
View: BIC_INVLINE_DETAIL_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKL_CS_ACCOUNT_CONT_INV_UV
12.1.1
-
PACKAGE BODY: APPS.ARP_CTL_SUM_PKG
12.1.1
-
VIEW: FV.FV_SF1080_DETAIL_TEMP#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_SF1080_DETAIL_TEMP#, status:VALID,
-
View: OKX_CUST_TRX_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUST_TRX_LINES_V, object_name:OKX_CUST_TRX_LINES_V, status:VALID, product: OKX - Contracts Integration , description: Customer invoice, debit memo, chargeback, credit memo and commitment lines , implementation_dba_data: APPS.OKX_CUST_TRX_LINES_V ,
-
View: SO_COMMITMENTS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_COMMITMENTS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKL_CS_AR_TAX_LINES_UV
12.1.1
-
VIEW: APPS.IEX_CUSTOMER_TRX_LINES_V
12.1.1
-
VIEW: APPS.OKL_CS_AR_TAX_LINES_UV
12.2.2
-
PACKAGE BODY: APPS.ARP_CTL_SUM_PKG
12.2.2
-
View: OKX_CUST_TRX_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUST_TRX_LINES_V, object_name:OKX_CUST_TRX_LINES_V, status:VALID, product: OKX - Contracts Integration , description: Customer invoice, debit memo, chargeback, credit memo and commitment lines , implementation_dba_data: APPS.OKX_CUST_TRX_LINES_V ,
-
VIEW: APPS.OKL_AR_TAX_LINES_ALL_UV
12.2.2
-
VIEW: APPS.IEX_CUSTOMER_TRX_LINES_V
12.2.2
-
VIEW: APPS.OKX_CUST_TRX_LINES_V
12.2.2
-
VIEW: APPS.OKL_AR_TAX_LINES_ALL_UV
12.1.1
-
VIEW: APPS.OKX_CUST_TRX_LINES_V
12.1.1
-
VIEW: APPS.AR_XML_INVOICE_V
12.1.1
-
APPS.PMI_SALES_PKG SQL Statements
12.1.1
-
VIEW: APPS.AR_XML_INVOICE_V
12.2.2
-
VIEW: AR.AR_CONS_INV_TRX_LINES_ALL#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_CONS_INV_TRX_LINES_ALL#, status:VALID,
-
VIEW: APPS.AR_TAX_SUMM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TAX_SUMM_V, object_name:AR_TAX_SUMM_V, status:VALID,
-
APPS.PMI_SALES_PKG SQL Statements
12.2.2
-
VIEW: APPS.AR_TAX_SUMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TAX_SUMM_V, object_name:AR_TAX_SUMM_V, status:VALID,
-
APPS.ECE_CDMO_UTIL SQL Statements
12.1.1
-
APPS.ECE_CDMO_UTIL SQL Statements
12.2.2