Search Results unit_standard_price
Overview
APPS.OZF_X_INVOICE_LINE_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite, documented under FND Design Data as OZF.OZF_X_INVOICE_LINE_V. Its status is VALID in both Release 12.1.1 and 12.2.2. The view presents a flattened, line-level projection of Oracle Receivables invoice data, combining header attributes from RA_CUSTOMER_TRX_ALL with line attributes from RA_CUSTOMER_TRX_LINES_ALL. The "OZF" prefix associates the object with the Oracle Trade Management (formerly Oracle Marketing) product family, and the "X" designation indicates it is an extension or cross-product integration view rather than a core transactional table.
The view exists primarily to support Trade Management accrual, settlement, and deduction processing, where invoice lines must be evaluated for quantity, price, and extended amount. The ETRM metadata carries an explicit Oracle Internal Use Only warning: Oracle does not support direct access to this object except from standard Oracle Applications programs. Consequently, it should be treated as an internal interface rather than a published, supported integration surface, and any custom code depending on it carries upgrade risk.
Underlying Base Objects
The view is defined over two APPS synonyms resolving to the core Receivables tables:
- RA_CUSTOMER_TRX_ALL — the invoice header table, supplying TRX_NUMBER and CUSTOMER_TRX_ID.
- RA_CUSTOMER_TRX_LINES_ALL — the invoice line table, supplying CUSTOMER_TRX_LINE_ID, LINE_NUMBER, LINE_TYPE, INVENTORY_ITEM_ID, the quantity columns, the price columns, and EXTENDED_AMOUNT.
ORG_ID is the multi-org operating unit discriminator, consistent with the _ALL suffix convention on the base tables. The ETRM dependency listing records no downstream database objects referencing this view, confirming it is a terminal reporting/integration artifact rather than a building block for other views. All joins are internal to the view definition; consumers query it as a single relation and need not reproduce the header-to-line join.
Key Columns
- TRX_NUMBER (VARCHAR2(20)) — the user-visible invoice number.
- CUSTOMER_TRX_ID / CUSTOMER_TRX_LINE_ID (NUMBER(15)) — primary and foreign key identifiers for the header and line respectively.
- LINE_NUMBER / LINE_TYPE — line sequence and classification, distinguishing, for example, line-level versus tax or freight lines.
- INVENTORY_ITEM_ID (NUMBER(15)) — inventory item reference where the line is item-based; null for non-item lines.
- QUANTITY_ORDERED, QUANTITY_CREDITED, QUANTITY_INVOICED — quantity measures used in accrual and deduction calculations.
- UNIT_STANDARD_PRICE — the standard (list or base) unit price for the line, the field most commonly searched in this context. It provides the reference price against which actual selling price and negotiated accruals are compared.
- UNIT_SELLING_PRICE — the actual invoiced unit selling price.
- EXTENDED_AMOUNT — the line amount, typically quantity multiplied by unit selling price, net of line-level adjustments.
- ORG_ID (NUMBER(15)) — operating unit identifier for multi-org filtering.
Common Use Cases and Queries
Typical scenarios include reconciling Trade Management accruals to invoiced quantities, auditing the variance between UNIT_STANDARD_PRICE and UNIT_SELLING_PRICE, and extracting invoice line detail for deductions or chargebacks analysis.
Reconciling price variance for a given item and operating unit:
SELECT TRX_NUMBER, LINE_NUMBER, INVENTORY_ITEM_ID,
QUANTITY_INVOICED, UNIT_STANDARD_PRICE,
UNIT_SELLING_PRICE, EXTENDED_AMOUNT
FROM APPS.OZF_X_INVOICE_LINE_V
WHERE INVENTORY_ITEM_ID = :item_id
AND ORG_ID = :org_id
AND UNIT_STANDARD_PRICE <> UNIT_SELLING_PRICE;
Retrieving line detail for a specific invoice:
SELECT LINE_NUMBER, LINE_TYPE, QUANTITY_INVOICED,
UNIT_STANDARD_PRICE, UNIT_SELLING_PRICE, EXTENDED_AMOUNT
FROM APPS.OZF_X_INVOICE_LINE_V
WHERE TRX_NUMBER = :trx_number
ORDER BY LINE_NUMBER;
Because Oracle does not support direct access, report developers should prefer supported Receivables views or the Trade Management public APIs, and treat queries against OZF_X_INVOICE_LINE_V as diagnostic or interim only. Any dependency should be revalidated during upgrade from 12.1.1 to 12.2.2.
-
VIEW: APPS.OZF_X_INVOICE_LINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_X_INVOICE_LINE_V, object_name:OZF_X_INVOICE_LINE_V, status:VALID,
-
VIEW: APPS.OZF_X_INVOICE_LINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_X_INVOICE_LINE_V, object_name:OZF_X_INVOICE_LINE_V, status:VALID,
-
TABLE: AR.AR_INV_API_LINES_GT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_INV_API_LINES_GT, object_name:AR_INV_API_LINES_GT, status:VALID,
-
TABLE: AR.AR_INV_API_LINES_GT
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_INV_API_LINES_GT, object_name:AR_INV_API_LINES_GT, status:VALID,
-
VIEW: AR.RA_CUSTOMER_TRX_LINES_ALL#
12.2.2
-
View: BIC_REVENUE_TRX_DETAIL_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ECE_INO_LINE_V
12.2.2
-
View: BIC_REVENUE_TRX_DETAIL_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ECE_INO_LINE_V
12.1.1
-
VIEW: APPS.ECE_CDMO_LINE_V
12.2.2
-
View: ECE_CDMO_LINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_CDMO_LINE_V, object_name:ECE_CDMO_LINE_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts line informationfor the outbound Credit/Debit Memo (812/CREADV/DEBADV) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Credit/Debit Memo Line View@rep:category BUSINESS_ENTITY AR_CREDIT_ , implementation_dba_data: APPS.ECE_CDMO_LINE_V ,
-
VIEW: APPS.ECE_CDMO_LINE_V
12.1.1
-
View: OZF_X_INVOICE_LINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_X_INVOICE_LINE_V, object_name:OZF_X_INVOICE_LINE_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_X_INVOICE_LINE_V ,
-
View: ECE_CDMO_LINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_CDMO_LINE_V, object_name:ECE_CDMO_LINE_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts line informationfor the outbound Credit/Debit Memo (812/CREADV/DEBADV) transaction.@rep:scope private@rep:product AR@rep:lifecycle active@rep:displayname Credit/Debit Memo Line View@rep:category BUSINESS_ENTITY AR_CREDIT_ , implementation_dba_data: APPS.ECE_CDMO_LINE_V ,
-
View: OZF_X_INVOICE_LINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_X_INVOICE_LINE_V, object_name:OZF_X_INVOICE_LINE_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_X_INVOICE_LINE_V ,
-
APPS.AR_TRX_BULK_PROCESS_LINES SQL Statements
12.2.2
-
APPS.AR_TRX_BULK_PROCESS_LINES SQL Statements
12.1.1
-
VIEW: EC.ECE_AR_TRX_LINES#
12.2.2
-
View: AR_TRX_DIST_LINE_REP_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TRX_DIST_LINE_REP_ITF_V, object_name:AR_TRX_DIST_LINE_REP_ITF_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_TRX_DIST_LINE_REP_ITF_V ,
-
View: AR_TRX_DIST_LINE_REP_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TRX_DIST_LINE_REP_ITF_V, object_name:AR_TRX_DIST_LINE_REP_ITF_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_TRX_DIST_LINE_REP_ITF_V ,
-
APPS.AR_TRX_GLOBAL_PROCESS_LINES SQL Statements
12.2.2
-
VIEW: APPS.AR_TRX_DIST_LINE_REP_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TRX_DIST_LINE_REP_ITF_V, object_name:AR_TRX_DIST_LINE_REP_ITF_V, status:VALID,
-
TABLE: AR.AR_TRX_LINES_TMP_GT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRX_LINES_TMP_GT, object_name:AR_TRX_LINES_TMP_GT, status:VALID,
-
TABLE: AR.AR_TRX_LINES_TMP_GT
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRX_LINES_TMP_GT, object_name:AR_TRX_LINES_TMP_GT, status:VALID,
-
VIEW: APPS.ARBPA_CUSTOMER_TRX_LINE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ARBPA_CUSTOMER_TRX_LINE, object_name:ARBPA_CUSTOMER_TRX_LINE, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_LINES_RA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_RA_V, object_name:RA_CUSTOMER_TRX_LINES_RA_V, status:VALID,
-
VIEW: APPS.ARBPA_CUSTOMER_TRX_LINE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ARBPA_CUSTOMER_TRX_LINE, object_name:ARBPA_CUSTOMER_TRX_LINE, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_LINES_RA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_RA_V, object_name:RA_CUSTOMER_TRX_LINES_RA_V, status:VALID,
-
VIEW: AR.RA_INTERFACE_LINES_ALL#
12.2.2
-
VIEW: APPS.IEX_INVOICE_LINES2_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_INVOICE_LINES2_V, status:VALID,
-
VIEW: APPS.IEX_INVOICE_LINES2_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_INVOICE_LINES2_V, status:VALID,
-
View: RA_CUST_TRX_LN_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUST_TRX_LN_ALL_MRC_V, object_name:RA_CUST_TRX_LN_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUST_TRX_LN_ALL_MRC_V ,
-
VIEW: APPS.AR_TRX_DIST_LINE_REP_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TRX_DIST_LINE_REP_ITF_V, object_name:AR_TRX_DIST_LINE_REP_ITF_V, status:VALID,
-
APPS.AR_TRX_GLOBAL_PROCESS_LINES SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AR_TRX_BULK_PROCESS_LINES
12.2.2
-
TABLE: AR.AR_TRX_LINES_GT
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRX_LINES_GT, object_name:AR_TRX_LINES_GT, status:VALID,
-
VIEW: APPS.AR_TRX_DIST_LINE_REP_ITF_V
12.1.1
-
PACKAGE BODY: APPS.AR_TRX_BULK_PROCESS_LINES
12.1.1
-
VIEW: APPS.IEX_INVOICE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_INVOICE_LINES_V, status:VALID,
-
VIEW: APPS.AR_TRX_DIST_LINE_REP_ITF_V
12.2.2
-
View: RA_CUST_TRX_LN_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUST_TRX_LN_ALL_MRC_V, object_name:RA_CUST_TRX_LN_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUST_TRX_LN_ALL_MRC_V ,
-
TABLE: AR.AR_TRX_LINES_GT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRX_LINES_GT, object_name:AR_TRX_LINES_GT, status:VALID,
-
VIEW: APPS.IEX_INVOICE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_INVOICE_LINES_V, status:VALID,
-
APPS.ARP_EBS_AUTOINV_PREPROC SQL Statements
12.2.2
-
VIEW: APPS.RA_CUSTOMER_TRX_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_V, object_name:RA_CUSTOMER_TRX_LINES_V, status:VALID,
-
View: RA_CUSTOMER_TRX_LINES_RA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_RA_V, object_name:RA_CUSTOMER_TRX_LINES_RA_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUSTOMER_TRX_LINES_RA_V ,
-
APPS.ARP_EBS_AUTOINV_PREPROC SQL Statements
12.1.1
-
View: RA_CUSTOMER_TRX_LINES_RA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_RA_V, object_name:RA_CUSTOMER_TRX_LINES_RA_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUSTOMER_TRX_LINES_RA_V ,
-
VIEW: APPS.RA_CUSTOMER_TRX_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_V, object_name:RA_CUSTOMER_TRX_LINES_V, status:VALID,
-
TABLE: AR.RA_CUSTOMER_TRX_LINES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_ALL, object_name:RA_CUSTOMER_TRX_LINES_ALL, status:VALID,