Skip to main content
Hi,

 

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
  1. Jul 20, 2011, 7:18 PM
    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!
0/9000