stalbert
09/14/2021, 8:01 PMstalbert
09/14/2021, 8:02 PMMike Robbins
09/14/2021, 8:21 PMstalbert
09/14/2021, 8:23 PMtdietrich
09/15/2021, 7:49 AMSELECT
Transaction.TranID,
Transaction.TranDate,
TransactionLine.Location,
BUILTIN.DF( TransactionLine.Location ) AS LocationName
FROM
Transaction
INNER JOIN TransactionLine ON
( TransactionLine.Transaction = Transaction.ID )
AND ( TransactionLine.MainLine = 'T' )
WHERE
( Transaction.Type = 'SalesOrd' )
Mike Robbins
09/15/2021, 1:46 PMMainLine = 'T'
that I was missing. I’ve worked extensively with the ODBC tables which has location on the transactions table so I wasn’t expecting this.stalbert
09/15/2021, 2:31 PM