Topic by Guru Prasad H
Hi,
How can we get all the Incidents available in RightNow.
I need to fetch the all Incidents from RightNow and push to third party application. i am able to get one incident by passing ID in query object. But unable to get all incidents irrespective of contatcs.
below is the query used to get all incidents raised by one contact.
"SELECT Contact.PrimaryContactIncidents FROM Contact where ID=1907;"
Above query gives incidents objects submitted by one contact(1907). I tried using query "SELECT Incident From Incident;" this throws nullpointerException.
Here i need to fetch all Incidents.
Thanks.