Does anyone know how to tell if a purchase order i...
# suiteql
c
Does anyone know how to tell if a purchase order is a “Special Order” or “Drop Ship” order in suiteql?
c
Copy code
SELECT
    dropship,
    specialorder
FROM transactionline
WHERE createdpo = {poInternalId}
🙌 1
Will return null if it's neither
c
Thank you man that is exactly what I needed
c
Great to hear! 😄