Search Results cln_3c3_invoice_line_v
Overview
CLN_3C3_INVOICE_LINE_V is an APPS-owned database view in the Oracle E-Business Suite Release 12.1.1 and 12.2.2 environment, registered under the Supply Chain Trading Connector for RosettaNet (CLN) product family. Its documented purpose is to expose invoice line details required to generate outbound RosettaNet 3C3 business documents — the standard message used for invoice notification and reconciliation between trading partners. The view denormalizes transactional invoice line data from Oracle Receivables into a flat, integration-friendly shape so that the RosettaNet message generation logic can retrieve quantity, pricing, item, and sales order context in a single query without navigating multiple application tables.
Underlying Base Objects
The view text is defined over four documented base objects:
- RA_CUSTOMER_TRX_LINES_ALL (SYNONYM) — the primary source of invoice/credit memo lines, aliased as
L. This is the driving table. - AR_MEMO_LINES_ALL_VL (VIEW) — supplies memo-line names and descriptions for lines linked to a credit or memo line, aliased as
M. - MTL_SYSTEM_ITEMS (SYNONYM) — provides inventory item descriptions, aliased as
I. - FA_RX_FLEX_PKG (PACKAGE) — invoked through
FA_RX_FLEX_PKG.GET_VALUE(401, 'MSTK', ...)to resolve the item value for non-memo lines.
Joins are outer ((+)) for the item and memo lookups, with org_id correlation enforced between the line, item, and memo records. The view filters to LINK_TO_CUST_TRX_LINE_ID IS NULL and LINE_TYPE = 'LINE', thereby excluding tax, freight, and other non-line components, and eliminating lines that are linked to a parent line.
Key Columns
The view exposes sixteen columns. The most operationally significant are:
- CUSTOMER_TRX_ID / CUSTOMER_TRX_LINE_ID — the invoice and invoice line surrogate keys, forming the record identity.
- QUANTITY — derived as
NVL(L.QUANTITY_INVOICED, QUANTITY_CREDITED), meaning the invoiced quantity is used for standard invoice lines, and the credited quantity is substituted when the invoiced quantity is null. This is the column directly relevant to searches for quantity_credited. - LINE_AMOUNT / UNIT_SELLING_PRICE — extended amount and unit price for the line.
- ITEM / ITEM_DESCRIPTION — resolved from the flexfield package or memo line name, and from inventory item or memo description respectively.
- REFERENCE_NUMBER — a constructed key
':'||CUSTOMER_TRX_ID||':'||CUSTOMER_TRX_LINE_IDused as the RosettaNet line reference. - SALES_ORDER_NUMBER, SALES_ORDER_REVISION, SALES_ORDER_LINE_NUMBER — sales order context for order-to-invoice traceability.
- DESCRIPTION, UOM, LINE_TYPE, LINE_NUMBER — descriptive and sequencing attributes.
Common Use Cases and Queries
The principal use case is outbound 3C3 invoice generation, where the connector reads line quantity and pricing to populate the RosettaNet message payload. A typical query retrieves lines for a given transaction:
SELECT customer_trx_line_id,
line_number,
quantity,
unit_selling_price,
line_amount,
item,
uom
FROM apps.cln_3c3_invoice_line_v
WHERE customer_trx_id = :p_trx_id
ORDER BY line_number;
A second scenario validates credited quantities, since quantity falls back to QUANTITY_CREDITED when invoiced quantity is null. Reconciliation queries joining the view to RA_CUSTOMER_TRX_ALL by customer_trx_id allow partners to confirm credit memo lines. Finally, the view supports troubleshooting of RosettaNet interface errors by exposing the exact item, reference number, and sales order attributes transmitted in the outbound document.
-
View: CLN_3C3_INVOICE_LINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_3C3_INVOICE_LINE_V, object_name:CLN_3C3_INVOICE_LINE_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View of invoice lines which is used ot generate 3C3 outbound , implementation_dba_data: APPS.CLN_3C3_INVOICE_LINE_V ,
-
View: CLN_3C3_INVOICE_LINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_3C3_INVOICE_LINE_V, object_name:CLN_3C3_INVOICE_LINE_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View of invoice lines which is used ot generate 3C3 outbound , implementation_dba_data: APPS.CLN_3C3_INVOICE_LINE_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CLN_3C3_INVOICE_LINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_3C3_INVOICE_LINE_V, object_name:CLN_3C3_INVOICE_LINE_V, status:VALID,
-
PACKAGE: APPS.FA_RX_FLEX_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FA_RX_FLEX_PKG, status:VALID,
-
VIEW: APPS.CLN_3C3_INVOICE_LINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_3C3_INVOICE_LINE_V, object_name:CLN_3C3_INVOICE_LINE_V, status:VALID,
-
PACKAGE: APPS.FA_RX_FLEX_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FA_RX_FLEX_PKG, status:VALID,
-
VIEW: APPS.AR_MEMO_LINES_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_MEMO_LINES_ALL_VL, object_name:AR_MEMO_LINES_ALL_VL, status:VALID,
-
VIEW: APPS.AR_MEMO_LINES_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_MEMO_LINES_ALL_VL, object_name:AR_MEMO_LINES_ALL_VL, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_LINES_ALL, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_LINES_ALL, status:VALID,
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,