• akhil chintala
  • NEWBIE
  • -4 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies

We have a series of assignment rules that assigns owner (user) to the records on the lead table as well as the account table.  We have set up account teams for users.  I was wondering if it is possible to have a workflow that sends an email to the assigned lead owner, as well as the members of the account team?

 

Thanks,
Frank

Hello. I want to know how can i create a Map<String, CustomObject> where the key will not be the Id of the custom field but the Name field and without using a list and going through each record and puting in the map a pair.

If I use Map<String, CustomObject__c> myMap = new Map<String, CustomObject__c>([Select z.Name, z.Id From CustomObject__c z]); i have a map where the key is my CustomObject.Id and I want it to be CustomObject.Name.