I am working on a Mod, where I need to capture addition information on a SalesLine at time of order. I am writing out this data to a table. The table will have a reference to the SalesLine. When the PO is created, I am updating this table with a reference to the PurchLine.
Is it safe to link these 2 tables using SalesLine.INVENTTRANSID to PurchLine.INVENTREFTRANSID?
Or is it safer to use RecIds to link these tables?
SELECT sl.SALESID, sl.INVENTREFID, sl.INVENTTRANSID, sl.INVENTREFTRANSID, p.INVENTREFID, p.PURCHID, p.INVENTREFTRANSID, p.INVENTTRANSID FROM SALESLINE sl INNER JOIN PURCHLINE p ON p.INVENTREFTRANSID = sl.INVENTTRANSID WHERE sl.INVENTTRANSID = 'LOT000386'