Queues allow groups of users to manage a shared workload more
effectively. A queue is a location where records can be routed to await
processing by a group member. The records remain in the queue until a
user accepts them for processing or they are transferred to another
queue. You can specify the set of objects that are supported by each
queue, as well as the set of users that are allowed to retrieve records
from the queue.
Queues available in almost all Salesforce.com edition, from: Contact Manager, Group, Professional, Enterprise, Unlimited, and Developer. Queues can be created for Leads, Cases, Knowledge article version, Service contract and custom object which not a child object in a master-detail relationship.
SOQL to query all queue:
Select g.Id, g.Name, g.Email from Group g where g.Type = 'Queue'
A queue can assign into one or many objects, here SQOL to retrieve object assigned in a queue:
Select q.Id, q.QueueId, q.Queue.Name, q.SobjectType from QueueSobject q
Note: you can you Apex Data Loader to mass insert or mass update the data in Group and QueueSobject object.
Click here for Salesforce.com help link for queues overview.
Queues available in almost all Salesforce.com edition, from: Contact Manager, Group, Professional, Enterprise, Unlimited, and Developer. Queues can be created for Leads, Cases, Knowledge article version, Service contract and custom object which not a child object in a master-detail relationship.
SOQL to query all queue:
Select g.Id, g.Name, g.Email from Group g where g.Type = 'Queue'
A queue can assign into one or many objects, here SQOL to retrieve object assigned in a queue:
Select q.Id, q.QueueId, q.Queue.Name, q.SobjectType from QueueSobject q
Note: you can you Apex Data Loader to mass insert or mass update the data in Group and QueueSobject object.
Click here for Salesforce.com help link for queues overview.
2 comments:
GOOD BLOG
Network security
Network Security Projects for CSE
JavaScript Training in Chennai
Project Centers in Chennai
JavaScript Training in Chennai
Post a Comment