Search Results interface_line_attribute9




Overview

ECE_CDMO_LINE_V is a private APPS-owned database view within the Oracle E-Business Suite e-Commerce Gateway (EC) module. It is the Credit/Debit Memo Line View, registered under the AR product and the AR_CREDIT BUSINESS_ENTITY category, and is used to extract line-level information for the outbound Credit/Debit Memo outbound transaction, documented as 812/CREADV/DEBADV. In the ETRM 12.2.2 lifecycle it carries an active status, and it is preserved in 12.1.1 as well. Its purpose is to flatten Receivables credit and debit memo lines into a transaction-ready structure that the e-Commerce Gateway interface programs can consume when building outbound 812 EDI documents.

Underlying Base Objects

The view's documented base objects include RA_CUSTOMER_TRX and RA_CUSTOMER_TRX_LINES, which supply the transaction header and line context (CUSTOMER_TRX_ID, CUSTOMER_TRX_LINE_ID, LINE_NUMBER, quantities, prices, and amounts). WSH_NEW_DELIVERIES, WSH_DELIVERY_LEGS, and WSH_DOCUMENT_INSTANCES are referenced to relate shipping/delivery context. OE_ORDER_HEADERS, OE_ORDER_LINES, and OE_PRICE_ADJUSTMENTS provide sales order linkage, while MTL_CUSTOMER_ITEMS and MTL_PARAMETERS supply item and inventory context. HR_ALL_ORGANIZATION_UNITS, HR_ALL_ORGANIZATION_UNITS_TL, and HR_LOCATIONS_ALL provide organization and location attributes. The view text excerpt confirms direct joins on RCT (RA_CUSTOMER_TRX), RCTL1 and RCTL2 (aliases of RA_CUSTOMER_TRX_LINES), producing the line-plus-credited-line relationship. FND_PROFILE is referenced for profile-based value resolution.

Key Columns

Common Use Cases and Queries

This view is primarily queried when troubleshooting or validating outbound 812 EDI credit/debit memo content, reconciling line amounts back to RA_CUSTOMER_TRX_LINES, and reviewing affected lines by credit reason code. A representative query:

SELECT transaction_id, transaction_line_id, line_number, item_id, ordered_quantity, quantity, unit_selling_price, line_amount, credit_memo_reason FROM apps.ece_cdmo_line_v WHERE transaction_id = :p_transaction_id ORDER BY line_number;

To review credits tied to a specific reason code: SELECT line_number, item_description, quantity, line_amount FROM apps.ece_cdmo_line_v WHERE credit_memo_reason = :p_reason AND transaction_id = :p_trx_id;

Because the view sources quantities from RA_CUSTOMER_TRX_LINES, the QUANTITY column reflects the invoiced or credited quantity rather than a warehouse shipment quantity in the strict shipping sense; where users expect a shipping_quantity value, they should map it to QUANTITY or ORDERED_QUANTITY as returned by the view, and cross-reference WSH delivery objects for physical shipment confirmation.

  • 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 Gatewaydescription: 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: 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 Gatewaydescription: 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