My syntax is working fine select tranid,status fro...
# suiteql
s
My syntax is working fine select tranid,status from transaction where type='SalesOrd' and trunc(transaction.createddate) = trunc(SYSDATE) and status = "B" until I've added status = "B". What is the trick to use Status ?
s
Status is typically something like
"SalesOrd:B"
When reading from the results of the query, it can be like
"B"
, but as criteria it should be the longer version
s
interesting. And it worked. Thanks