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'
Yes, those table are linked by those fields.
relationship is only valid if Item Reference in PO is Sales
Sohaib Cheema
745
User Group Leader
Martin Dráb
597
Most Valuable Professional
André Arnaud de Cal...
580
Super User 2025 Season 2