Toggle Side Panel

  • Home
  • Articles
    • All Articles
    • Blogs
    • Videos
    • Infographics
  • Consultants
    • Salesforce Product Expertise
      • Top Salesforce ConsultantsTop Salesforce Consultants
      • Marketing Cloud ConsultantsMarketing Cloud Consultants
      • Service Cloud ConsultantsService Cloud Consultants
      • Experience Cloud ConsultantsExperience Cloud Consultants
      • Analytics Cloud ConsultantsAnalytics Cloud Consultants
    • Salesforce Industry Expertise
      • Non-Profit Cloud ConsultantsNon-Profit Cloud Consultants
      • Financial Service Cloud ConsultantsFinancial Service Cloud Consultants
      • Health Cloud ConsultantsHealth Cloud Consultants
      • Commerce Cloud ConsultantsCommerce Cloud Consultants
      • Manufacturing Cloud ConsultantsManufacturing Cloud Consultants
    • Salesforce Experts by Location
      • USATop Salesforce Consultants in USA
      • IndiaTop Salesforce Consultants in India
      • AustraliaTop Salesforce Consultants in Australia
      • United KingdomTop Salesforce Consultants in UK
      • CanadaTop Salesforce Consultants in Canada
  • Webinars
  • Marketplace
  • Advertise With Us
  • Contact Us
  • Discussions
More options
    Sign in Sign up
    • Home
    • Articles
      • All Articles
      • Blogs
      • Videos
      • Infographics
    • Consultants
      • Salesforce Product Expertise
        • Top Salesforce ConsultantsTop Salesforce Consultants
        • Marketing Cloud ConsultantsMarketing Cloud Consultants
        • Service Cloud ConsultantsService Cloud Consultants
        • Experience Cloud ConsultantsExperience Cloud Consultants
        • Analytics Cloud ConsultantsAnalytics Cloud Consultants
      • Salesforce Industry Expertise
        • Non-Profit Cloud ConsultantsNon-Profit Cloud Consultants
        • Financial Service Cloud ConsultantsFinancial Service Cloud Consultants
        • Health Cloud ConsultantsHealth Cloud Consultants
        • Commerce Cloud ConsultantsCommerce Cloud Consultants
        • Manufacturing Cloud ConsultantsManufacturing Cloud Consultants
      • Salesforce Experts by Location
        • USATop Salesforce Consultants in USA
        • IndiaTop Salesforce Consultants in India
        • AustraliaTop Salesforce Consultants in Australia
        • United KingdomTop Salesforce Consultants in UK
        • CanadaTop Salesforce Consultants in Canada
    • Webinars
    • Marketplace
    • Advertise With Us
    • Contact Us
    • Discussions
    Close search

    Activity › Forums › Salesforce® Discussions › How we get List of sibling Contact in a Salesforce Trigger?

    Tagged: Account, Contact Record, Salesforce List, Salesforce Trigger

    • Salesforce® Discussions

      How we get List of sibling Contact in a Salesforce Trigger?

      Posted by Shubham on August 4, 2017 at 6:41 AM

      I want a trigger on contact which prevent delete if there 3 more contact in same Account, please Write Trigger for it.

      • This discussion was modified 8 years, 8 months ago by  Shubham.
      • This discussion was modified 8 years, 7 months ago by  Forcetalks.
      • This discussion was modified 8 years, 7 months ago by  Forcetalks.
      Parul replied 7 years, 6 months ago 3 Members · 2 Replies
      • Account
      • Contact Record
      • Salesforce List
      • Salesforce Trigger
    • 2 Replies
    • saloni gupta

      Member
      August 4, 2017 at 6:55 AM

      Hi Shubham,

      You can refer this code for getting all the siblings of any contact.

       

      Set<id> accid = new Set<id>();
      for(Contact c : Trigger.old){
      accid.add(c.AccountId);
      }
      List<contact> con = [select id, accountid, Start_Date__c, End_Date__c from contact where Account.Id in : accid AND Id not IN : Trigger.old];

      Map<id,List<Contact>> mapAccIdCont = new Map<id,List<Contact>>();

      for(Contact c :con){
      if(mapAccIdCont.containsKey(c.Accountid)){
      List<Contact> conList = mapAccIdCont.get(c.AccountId);
      conList.add(c);
      mapAccIdCont.put(c.AccountId, conList);

      }
      else{
      List<Contact> conList = new List<Contact>();
      conList.add(c);
      mapAccIdCont.put(c.AccountId, conList);

      }
      }

    • Parul

      Member
      September 16, 2018 at 3:00 PM

      Trigger AreaCode on Contact (before insert) {

      Set <String> InitialContact Name = new Set <String> ();

      for(Contact Contact NameLoop : trigger.New)
      {
      if(ContactNameLoop.Area_Code__c != null){
      InitialContactName.add(ContactNameLoop.Area_Code__c);
      }

      }

      Map <String, Area_Code__c> matchingAreaCodeMap = new Map <String, Area_Code__c> ();

      for (Area_Code__c Record : [Select Id, Name, Market__c From Area_Code__c Where Name IN :InitialContactName])
      {
      matchingAreaCodeMap.put(Record.name, record);
      }

      for(Contact ContactNameLoop : trigger.New)
      {

      ContactNameLoop.Contact_Market__c = matchingAreaCodeMap.get(ContactNameLoop.Area_Code__c).Market__c;

      }

      }

       

      Thanks

    Log In to reply.

    • Public
    • All Members
    • My Connections
    • Only Me
    • Public
    • All Members
    • My Connections
    • Only Me
    • Public
    • All Members
    • My Connections
    • Only Me

    application solution

    Popular Salesforce Blogs

    FlexDeploy Loves Salesforce: Deploy Salesforce Apps and Metadata Objects

    Blog in Salesforce integration

    As you likely know by now, FlexDeploy is an Enterprise DevOps platform with fully integrated support for Salesforce apps, metadata customizations, integrations and more. This…

    Flexagon Jan 6, 2022
    2,580  Views
    Protect your Data in Salesforce All You Need to Know

    Protect your Data in Salesforce | All You Need to Know

    Blog in Others

    Salesforce is a powerful cloud-based customer relationship management (CRM) system that helps you manage your customers, leads, accounts, and more. It can also be a…

    Authy, Automated Tools, Backups, Breaches, Customizations
    Kapil May 11, 2023
    1,375  Views

    How to Choose the Right Salesforce Implementation Partner in the USA?

    Blog in Salesforce Implementation

    Partnering with the right Salesforce Implementation Partner in the USA is a pivotal step in ensuring the seamless adoption and optimization of the Salesforce platform…

    Assess Needs, budget, Change Management, Client References, Collaboration
    Kizzy Consulting Oct 9, 2023
    1,324  Views

    Popular Salesforce Videos

    The Salesforce and Stripe Integration Solution

    The Salesforce and Stripe Integration Solution

    Video in Salesforce Integration

    Salesforce professionals choose us because we’re different. Our intuitive software connects Salesforce with Stripe and is simple to set up and configure and safe and…

    Salesforce Training, Salesforce Tutorial, Salesforce Integration, salesforce, Salesforce Video
    Algoworks Jul 28, 2021
    1,510  Views
    How To Use Salesforce Campaigns in Pardot

    How To Use Salesforce Campaigns in Pardot

    Video in Salesforce Stories

    Learn campaign basics to help you plan your marketing strategy. In this video, Pardot experts guide you in: - Defining campaigns in Pardot and Salesforce…

    Salesforce Training, salesforce, Salesforce Video, Campaign Members, Salesforce Learning
    Pooja May 19, 2021
    3,133  Views
    Sharing and Visibility With Salesforce

    Sharing and Visibility With Salesforce

    Video in Salesforce Stories, Salesforce Training

    Watch this amazing to understand the Salesforce sharing model, and how to structure profiles, roles, and sharing rules to control visibility. Do let us know…

    Salesforce Training, salesforce, Salesforce Video, Salesforce Learning, Sharing and Visibility
    Jogender Nov 20, 2020
    1,839  Views
    Footer Forcetalks logo

    support@forcetalks.com

    • twitterx

    Quick Links

    Advertise with Us

    Salesforce® Articles

    Dreamforce 2023

    Top Salesforce® Bloggers 2023

    Top Salesforce Consultants

    Get Listed

    Company

    Contact Us

    About Us

    Privacy Policy

    Terms & Conditions

    InsightHub

    Salesforce Blogs

    Salesforce Videos

    Salesforce Groups

    Salesforce Jobs

    © 2026 - Forcetalks ● All Rights Reserved

    Salesforce® is a trademark of Salesforce® Inc. No claim is made to the exclusive right to use “Salesforce”. Any services offered within the Forcetalks website/app are not sponsored or endorsed by Salesforce®.

    Try AuditMyCRM - It is a Salesforce CRM Audit tool which comprehensively scans your Salesforce org and gives you the list of errors or warnings you need to take care of.
    We use cookies to enhance your browsing experience. Please see our privacy policy if you'd like more information on our use of cookies.