Find Largest Opportunity Amount - Flow Sorting Records - FlowFestv1 Challenge 1

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ส.ค. 2024
  • Join me as I walk through the first challenge in FlowFest v1.
    I use flows to get the record with the largest number/currency amount and update a related record.
    Subscribe for more videos like this: bit.ly/2ZjoZ8h
    All FlowFest v1 challenges drive.google.com/file/d/1wiX3...
    FlowFest v2 Sign up forceanywhere.force.com/s/flo...
    What is FlowFest?
    FlowFest is a virtual, live-streamed event hosted by Salesforce Ben and Ohanaly that will test the skills of competitors, and skill up those who are looking to dip their toes into the world of Flow. The event will be a 50-minute, hack-a-thon style competition, where competitors will be battling it out to create a series of Flows, each getting more and more complicated. We have a panel of Flow experts who will be judging the solutions being created, ensuring each one works and follows best practices.
    Want to take your #Salesforce Knowledge to the next level? Go to salesforcementor.teachable.com/ new course content every week to keep you fresh.
    If this video was helpful consider supporting me.
    / salesforcementor
    Patrons get access to all my source code, an exclusive discord, and Daily Force Primer for exam questions.
    Check out www.salesforcementor.com for additional Salesforce content.
    Thanks for watching.
    Follow me on twitter / thewalters954
    Connect with me on LinkedIn / walters954
    Join the Salesforce Exchange Discord join.sfxd.org
    ---------------------------------------------------------------------------------
    Recommended Books
    Advanced Apex Programming amzn.to/2X8hZb4
    Clean Code amzn.to/2X8iaTM
    Salesforce Platform App Builder Certification amzn.to/3eZOGPj
    Practical Salesforce Development Without Code amzn.to/30tDXsD

ความคิดเห็น • 6

  • @Walters954
    @Walters954  ปีที่แล้ว

    👩🏿‍💻 Want to become a dev but don't know where to get started?
    👉🏿 Check out my course on Apex Fundamentals tinyurl.com/LEARNSFDEV

  • @justsumgame
    @justsumgame 2 ปีที่แล้ว +3

    First!
    Welcome back to TH-cam.
    If you are bad at Flow like me, you can just do this:
    Opportunity opp = [SELECT Amount, AccountId FROM Opportunity WHERE StageName = "Closed Won" AND AccountId = :selectedAccountId ORDER BY Amount DESC LIMIT 1];
    insert new Account(Id = opp.AccountId, AnnualRevenue = opp.Amount, LargestWonOpportunity=opp.Id);
    decorate w/ @InvocableMethod
    bulkify using map
    let rest for about 4 minutes
    garnish with documentation
    serve to Flow creators so they can reuse the action in other Flows in just one node (...or just make a subflow of what's shown in the video LOL)

    • @Walters954
      @Walters954  2 ปีที่แล้ว

      Maybe we can do a collaboration implementing the code version of this and comparing it to the flow version.

  • @swapgud151
    @swapgud151 2 ปีที่แล้ว +1

    Thank you Warren. Getting Good practises from you. Need more and more scenario based flows. Thank so much

  • @pedroprada1
    @pedroprada1 2 ปีที่แล้ว +1

    Hey Warren, what a great surprise to see you again in the channel providing value! I really like your FLOW exercises.... thanks for posting!

    • @Walters954
      @Walters954  2 ปีที่แล้ว

      Happy to be back. Thanks for the support Pedro.