Hi,
I want to add a custom field to the Shipment Lines.
This field needs to refer to the field ‘Customer PO No’ on the header of a customer order.
I did build a SQL query to fetch desired field:
SELECT c.customer_po_no
FROM Customer_Order c, Shipment_Line s
WHERE c.order_no = s.source_ref1
I don’t know what I need to add in the field ‘Arguments’. Can someone help?