Search Results gmd_coa_headers




Overview

GMD.GMD_COA_HEADERS is the Certificate of Analysis (COA) report header table within the Oracle Process Manufacturing (OPM) Product Development module. In Oracle EBS 12.1.1 and 12.2.2, it stores the header-level context required to generate COA documents that accompany shipments of process-manufactured goods. Each row represents one COA header, tying together order, customer, shipment, item, lot, and quality specification references so that a printable certificate can be produced for a specific delivered lot or sublot.

The table physically resides in the GMD schema and, per the 12.2.2 ETRM documentation, contains 52 columns. Because the object is a header record for a transactional COA event, it functions as a transactional satellite in Data Vault terms. The heuristic classification supplied in the metadata is "standalone," reflecting that the only documented foreign-key relationship is the BOL_ID reference to OP_BILL_LAD, with no other enforced FK dependencies. In practice, however, the table behaves as a hub-anchored satellite keyed on surrogate COA identity and natural business keys drawn from order, customer, item, and lot.

Key Information Stored

The primary surrogate identifier is GMD_COA_ID, which uniquely identifies each COA header record. Business-key candidates include ORDER_NO combined with LINE_ID, CUST_NO with CUST_ID, and LOT_NO with SUBLOT_NO, which together describe the delivery context of the certificate.

Common Use Cases and Queries

Typical usage includes regenerating historical COAs, auditing lot traceability to customers, and reporting shipment-level quality documentation. A common query pattern joins the header to its bill of lading and quality results:

  • Retrieve all COA headers for a given order: SELECT * FROM GMD.GMD_COA_HEADERS WHERE ORDER_NO = :order_no;
  • Trace certificates by lot: SELECT GMD_COA_ID, ORDER_NO, CUST_NAME, SHIPDATE FROM GMD.GMD_COA_HEADERS WHERE LOT_NO = :lot_no;
  • Link to bill of lading details: SELECT h.*, b.* FROM GMD.GMD_COA_HEADERS h JOIN OP_BILL_LAD b ON h.BOL_ID = b.BOL_ID;
  • Report shipped quantities in dual UOM: select SHIP_QTY1, SHIP_UOM1, SHIP_QTY2, SHIP_UOM2 filtered by SHIPDATE range.

Related Objects