This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Get Cases followed by User | |
SELECT Id, CaseNumber, Subject, Owner.Name, Status, CreatedDate, ClosedDate | |
FROM Case | |
WHERE Id IN (SELECT ParentId FROM EntitySubscription WHERE SubscriberId = '') | |
ORDER BY CreatedDate | |
//Get User Signatures by Profile | |
SELECT id, FirstName, LastName, email, FederationIdentifier, LastLoginDate, Profile.Name, UserRole.Name, Signature | |
FROM user | |
where IsActive = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.cProfileCon>div{ | |
display:none !important; | |
} | |
.topicLabel { | |
font-size:200% !important; | |
font-weight:normal !important; | |
} | |
.test { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AssignmentGroup_LeadRoundRobin { | |
public static void AssignLead(boolean IsUpdate, List<Lead> Leads, Map<Id, Lead> oldMap_Leads){ | |
// | |
//Check if assignment owner has changed | |
// | |
Map<Integer,Id> queueIds = new Map<Integer,Id>(); //Trigger index --> Queue ID | |
Integer idx = 0; | |
for (lead l : Leads) |