Topic by tsans
Hoping to get a little help with some ROQL.
May 2013, Connect Web Services SOAP, C#, QueryCSV.
I need the query to return all Incident refnum’s/Contact id's for a specific organization (via primary contact) for a specific day.
Something like:
select
i.referencenumber
,i.primarycontact.contact.id
from
incident i
where
i.createtime >= ‘01/15/2015’
and i.createtime < ‘01/16/2015’
and i.primarycontact.contact.organization.id = 1234
It seems simple enough but I’ve tried it a dozen different ways and still no luck.
Thanks,
Todd