
I need to export the queue names and queue id from the system. I dont have the sys.admin rights.
Can anyone tell me whats theeaisest way to export.
Thanks,
Srinivas
6 answers
I am sure the problem is with the SOQL, try changin the SOQL select statement to something like this:
Select Id, SobjectType, QueueId, Queue.Name From QueueSobject.
The key here using the "Queue.Name" in the select statement to get the queue names column populated.
Hope this helps!