Це відео не доступне.
Перепрошуємо.

Record Trigger Flow to update related Opportunities of an Account | Salesforce flow Scenario 2

Поділитися
Вставка
  • Опубліковано 18 сер 2024

КОМЕНТАРІ • 40

  • @praywithpio6028
    @praywithpio6028 2 роки тому

    I like how you showed a mistake. Seeing how to address mistakes is more valuable than seeing an example that is perfect.

  • @fernandzuili1001
    @fernandzuili1001 2 роки тому

    Thank you so much for sharing your knowledge. Greetings from Mexico.

  • @scottwiedeback8606
    @scottwiedeback8606 Рік тому

    Greetings from Denver! Thank you for helping us learn about Salesforce flows. I can see the potential in this, but I’m not a programmer.
    In short, I’ve basically been sucked in to programming our Salesforce model for our sales organization.
    I’m trying to find specific steps that will enable our sales reps to select an event type, and some of the custom event types will trigger A) the creation of a new custom opportunity (linked to a specific account) & B) and then the custom opportunity stage will be auto-updated when certain custom event types are selected. Again, the opportunity stage being updated will be linked to the same account.
    I hope that makes sense. Basically, entering a new event will sometimes trigger an opportunity to be created, and entering other events will trigger the opportunity stages to automatically advance forward.
    I do not intend to use the opportunity stages closed lost or closed won. I would also like the opportunity stages to be bi-directional, meaning a move to a new opportunity stage wouldn’t necessarily be permanent. The opportunity stage is completely dependent on the selection of custom event types, in other words.
    Thank you in advance for any help you can give a struggling new Salesforce admin ;).

  • @bayethencube807
    @bayethencube807 2 роки тому

    Thanks so much, you explain really well.

  • @kalaiarasanthangarasu9863
    @kalaiarasanthangarasu9863 2 роки тому

    Really Helpfull,Thank you.

  • @suryasv3801
    @suryasv3801 Рік тому +1

    Hii shubam In this scenario u already do that directly condition to update related record that is very useful but my question is which is good practise this video or that old video(update record)?

    • @salesforcegeek
      @salesforcegeek  Рік тому

      The one which we use only single update record element

  • @antiintruderapp9206
    @antiintruderapp9206 2 роки тому

    Thanks for explaining loop with assignment in flow.
    But in this scenario I think we can do it without loop, flow will handle the bulkification.
    Steps-
    1) On start we can use the conditions for the flow to execute,
    2) Just add an update record element selecting third option i.e. 'specify conditions to identify records and set field individually'.
    In object pick Opp and inside 'condition requirements to update record', we can set as AccountId Equals {!$Record.Id}
    And rest null checks.
    That's it!!
    I have tested this by updating 160 records at once, didn't get any SOQL or DML exception.
    Please correct me in case I am going wrong.
    Regards!!

    • @salesforcegeek
      @salesforcegeek  2 роки тому

      Hey 👋 Yes you are right
      As it’s a series of videos I already include this approach please check this out
      Optimized Record-Triggered flow
      ua-cam.com/video/Myzj_-cHzb8/v-deo.html

  • @ravikant2878
    @ravikant2878 2 роки тому +2

    What if there are more than 50000 records of Account. How Flow handles that? What can be done if we come across such scenario?

    • @salesforcegeek
      @salesforcegeek  2 роки тому

      Please checkout this thread salesforce.stackexchange.com/questions/328829/do-record-triggered-flows-run-on-multiple-records

  • @rimzid8538
    @rimzid8538 2 роки тому

    Your videos are so very helpful. Thanks! I'm trying to solve one problem using flow but I'm just got stuck, it would be great if you could able to solve it for me please xx
    This is the scenerio: i'd like to update the opportunity stage depending on the quote status for example when a quote status is presented, the opportunity stage will be updated to proposal when the quote status is won, the opportunity stage will be updated to closed won...

  • @aryaaditya4643
    @aryaaditya4643 Рік тому

    in first you didn't use loop, then what happened why didn't it work, please reply

  • @KyleYocky
    @KyleYocky Рік тому

    I am trying to write a flow that pushes the Account Phone Number and Email to the Opportunity Same fields without using Formula fields on the Opportunity. Can you do a video on how to do this?

  • @sunilmishra9492
    @sunilmishra9492 Рік тому

    we can finish in update record element.

  • @shivanshbhatnagar5140
    @shivanshbhatnagar5140 2 роки тому

    Just wanted to know why we used Decision element there ? Is it necessary or you can make the flow run without the decision element?

    • @pavanisistla5970
      @pavanisistla5970 Рік тому +1

      Decision element is like if else , tonmake sure which path the flow should take depending on a decision.

    • @salesforcegeek
      @salesforcegeek  Рік тому +1

      Yes also in decison only the first outcome is executed which returns true let say we have 3 outcomes and outcome 2 is true then it will not Check for the outcome 3 same if outcome 1 is true then it will not check for the 2 and 3.

  • @nawazkhan-or4ex
    @nawazkhan-or4ex 2 роки тому

    I am using a similar approach but using person account.. Here in get opty record it is not returning anything when I am mapping account with opportunity.. Any thoughts?

    • @salesforcegeek
      @salesforcegeek  2 роки тому

      Did you check that whether the filter returning some records or not?

  • @dheerajkumar-yj6xh
    @dheerajkumar-yj6xh Рік тому

    Hi there please help me to solve this problem
    Create a 'Confirmed no. of mentees on all projects' field in Contracts & Pipeline object.
    For each Project related to a Contract there is a User Engagement related list.
    In each User Engagement related list there is a mentee record and a mentor record. We need to know the number of registered mentees on each project which can be taken from 'Total Registered Mentees'
    The 'Confirmed no. of mentees on all projects' field (at Contacts level) should contain the sum of all 'Total registered users' for each User Engagement record where Type = Mentee
    Would be great if this could be done using Flow builder -

  • @DSV009
    @DSV009 Рік тому

    36 triggered scenarios 2 nd pblm

  • @madhaviedman3680
    @madhaviedman3680 2 роки тому

    Hi, How would I use the Record Trigger flow to copy the address from an org record (if it's identified as Primary-by checkbox) over to a new contact record and also update the address type (picklist).

    • @salesforcegeek
      @salesforcegeek  2 роки тому +1

      Yes you can if you can identify a record from which you want to get values.

  • @shaikhsaniya8016
    @shaikhsaniya8016 2 роки тому

    Could you please help me how I can prevent duplicate record in custom object using workflow rule/flow?

    • @salesforcegeek
      @salesforcegeek  2 роки тому

      What's you criteria for the duplication how you are identifying that the record is dupliucate

  • @DSV009
    @DSV009 Рік тому

    Bro i was selected 1 pblm from your website and i tried it in flow but i cant can u plz do it bro

  • @antarapal20
    @antarapal20 2 роки тому

    Can we create a flow to update a checkbox when a attachment is found in a record?

    • @salesforcegeek
      @salesforcegeek  2 роки тому

      Yes we can!

    • @antarapal20
      @antarapal20 2 роки тому

      @@salesforcegeek can you pls give us any link where we can follow it for our understanding.. It will be very helpful to us☺

  • @abhijithkdas3431
    @abhijithkdas3431 2 роки тому

    Hey I would like to know what happens if there is a bulk import of data..How to handle that using flow?

    • @salesforcegeek
      @salesforcegeek  2 роки тому

      Please checkout this thread salesforce.stackexchange.com/questions/328829/do-record-triggered-flows-run-on-multiple-records

    • @abhijithkdas3431
      @abhijithkdas3431 2 роки тому

      @@salesforcegeek Due to the bulkification there will be duplicate records created right??Is there a workaround for that?

    • @salesforcegeek
      @salesforcegeek  2 роки тому

      Why duplicate?