Search Results ece_ino_line_tax_v
Overview
The ECE_INO_LINE_TAX_V view is a private, active database object owned by the APPS schema within the Oracle E-Business Suite e-Commerce Gateway (EC) product. It is classified under the AR_INVOICE business entity and carries the display name Invoice Line Tax View. Its documented purpose is to extract line-level tax information for the outbound Invoice transaction, specifically the 810 (ANSI X12) and INVOIC (EDIFACT) message formats.
In the Oracle EBS architecture, the e-Commerce Gateway relies on a series of extraction views to assemble the flat, transaction-oriented data structures required by outbound EDI and XML interfaces. Rather than reading directly from the base Receivables tables, the gateway selects from views such as this one, which pre-join, alias, and format the relevant columns. This abstraction allows the gateway to map internal column names (for example, TAX_EXEMPT_REASON_CODE) to the canonical fields defined in the EDI mapping for the invoice tax segment. The view therefore serves as the bridge between Oracle Receivables transaction data and the outbound invoice tax payload, and it is especially relevant to users searching for tax_exempt_reason_code, since that attribute is projected directly from the transaction line.
Underlying Base Objects
The documented base objects referenced by ECE_INO_LINE_TAX_V are:
- RA_CUSTOMER_TRX — the Receivables transaction header table, providing the transaction identifier.
- RA_CUSTOMER_TRX_LINES — the transaction line table, supplying line numbers, line types, tax amounts, tax rates, tax precedence, and the exemption attributes.
- ZX_RATES_B and ZX_RATES_TL — the E-Business Tax rate definition tables (base and translation), used to resolve tax rate details.
- ZX_TAXES_B — the E-Business Tax tax regime/configuration table, providing tax codes, tax types, descriptions, VAT transaction types, and descriptive flexfield attributes.
The view joins the transaction header in RA_CUSTOMER_TRX to two aliases of RA_CUSTOMER_TRX_LINES: one representing the inventory line (aliased RCTL1) and one representing the tax line (aliased RCTL2). Tax configuration attributes are drawn from the ZX tables. All base objects are accessed through synonyms in the APPS schema, consistent with standard EBS view definition practice.
Key Columns
- TRANSACTION_ID — the customer transaction identifier (from RA_CUSTOMER_TRX.CUSTOMER_TRX_ID).
- LINE_NUMBER / TAX_LINE_NUMBER — the parent line number and the tax line number, respectively.
- LINE_TYPE — identifies the line as a tax line (typically TAX).
- TAX_AMOUNT / TAX_RATE / TAX_PRECEDENCE — the extracted tax amount, rate, and calculation precedence.
- TAX_CODE, TAX_TYPE, DESCRIPTION — from ZX_TAXES_B, describing the tax applied.
- LINK_TO_CUST_TRX_LINE_ID — links the tax line back to the inventory line it taxes.
- TAX_EXEMPT_FLAG, TAX_EXEMPT_NUMBER, and TAX_EXEMPT_REASON_CODE — the exemption indicators, certificate number, and reason code for exempt transactions.
- VAT_TRANSACTION_TYPE, VAT_TAX_ATTRIBUTE1–12 — VAT-specific attributes from E-Business Tax.
- TAX_ATTRIBUTE_CATEGORY and TAX_ATTRIBUTE1–15 — the transaction line descriptive flexfield context and values.
Common Use Cases and Queries
This view is primarily consumed by the e-Commerce Gateway extraction program that builds the outbound 810/INVOIC file. Developers also query it directly to troubleshoot tax lines or to confirm exemption data before transmission.
To retrieve tax lines with exemption details for a transaction:
SELECT transaction_id, line_number, tax_line_number, tax_amount, tax_code, tax_exempt_flag, tax_exempt_reason_code FROM apps.ece_ino_line_tax_v WHERE transaction_id = :p_trx_id ORDER BY tax_line_number;
To audit exempt invoices for the outbound interface:
SELECT transaction_id, tax_line_number, tax_exempt_number, tax_exempt_reason_code FROM apps.ece_ino_line_tax_v WHERE tax_exempt_flag = 'Y';
These queries confirm that the view exposes the exemption reason code requested in the user's search, making it the correct object for resolving tax_exempt_reason_code at the invoice tax-line level.
-
View: ECE_INO_LINE_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_INO_LINE_TAX_V, object_name:ECE_INO_LINE_TAX_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts line tax informationfor the outbound Invoice (810/INVOIC) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Invoice Line Tax View@rep:category BUSINESS_ENTITY AR_INVOICE , implementation_dba_data: APPS.ECE_INO_LINE_TAX_V ,
-
View: ECE_INO_LINE_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_INO_LINE_TAX_V, object_name:ECE_INO_LINE_TAX_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts line tax informationfor the outbound Invoice (810/INVOIC) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Invoice Line Tax View@rep:category BUSINESS_ENTITY AR_INVOICE , implementation_dba_data: APPS.ECE_INO_LINE_TAX_V ,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.ZX_RATES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ZX_RATES_TL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.AR_VAT_TAX
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_VAT_TAX, status:VALID,
-
SYNONYM: APPS.ZX_TAXES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ZX_TAXES_B, status:VALID,
-
SYNONYM: APPS.ZX_RATES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ZX_RATES_B, status:VALID,
-
VIEW: APPS.ECE_INO_LINE_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_INO_LINE_TAX_V, object_name:ECE_INO_LINE_TAX_V, status:VALID,
-
VIEW: APPS.ECE_INO_LINE_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_INO_LINE_TAX_V, object_name:ECE_INO_LINE_TAX_V, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_LINES, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_LINES, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX, status:VALID,
-
eTRM - EC Tables and Views
12.1.1
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
eTRM - EC Tables and Views
12.2.2
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - EC Tables and Views
12.2.2
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
eTRM - EC Tables and Views
12.1.1
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,