Search Results prod_txn_code




Overview

The CSD_PRODUCT_TXNS_IRO_V view is a Depot Repair (CSD) reporting object that exposes product transaction activity related to repair orders in Oracle E-Business Suite 12.1.1 and 12.2.2. It consolidates material movement, repair-line, order, and item metadata so that shipping, receiving, and integration events tied to a repair order can be queried in a single denormalized record. The view is owned by the APPS schema and is documented as VALID in the ETRM metadata.

A distinguishing feature is its interaction with order management entities. The view joins to OE_ORDER_HEADERS_ALL, OE_ORDER_LINES_ALL, and OE_TRANSACTION_TYPES_TL, and exposes flags such as INTERFACE_TO_OM_FLAG, BOOK_SALES_ORDER_FLAG, RELEASE_SALES_ORDER_FLAG, and SHIP_SALES_ORDER_FLAG. These columns indicate whether a repair product transaction has been interfaced to Order Management, booked, released, or shipped, making the view particularly relevant to integrators searching for order-line related data (for example, users searching for OE_ORDER_LINES_V).

Underlying Base Objects

The view is defined over, or resolves references to, the following documented base objects:

Key Columns

Common Use Cases and Queries

Typical scenarios include reviewing repair order shipment/receipt activity, tracking OM interfacing status for repair transactions, and reconciling lot/serial controlled item movements. A basic query follows:

  • SELECT repair_number, item, item_desc, action_code, prod_txn_status, ship_sales_order_flag FROM csd_product_txns_iro_v WHERE repair_number = :p_repair_number;
  • SELECT product_transaction_id, inventory_item_id, sub_inventory, sub_inventory_rcvd, lot_number, lot_number_rcvd FROM csd_product_txns_iro_v WHERE interface_to_om_flag = 'Y' AND book_sales_order_flag <> 'Y';
  • SELECT r.repair_number, r.ro_status, r.ro_quantity_shipped, r.ro_quantity_rcvd, t.action_type FROM csd_product_txns_iro_v t, csd_repairs r WHERE t.repair_line_id = r.repair_line_id;

Because the view exposes both repair and order management context, it is frequently joined back to OE_ORDER_LINES_ALL or OE_ORDER_LINES_V on inventory item and order identifiers when full sales order line detail is required, since the view itself surfaces only the OM flags and item/UOM derivations.