Тёмный
Salesforce Flowsome!
Salesforce Flowsome!
Salesforce Flowsome!
Подписаться
An awesome place to learn everything about flow.
【For new starter】: Go through the Intro and Important Concepts playlist
【For learning-by-doing】: Go through the Practice playlist, and search for the unclear concepts in this channel
【FlowFest】 | How To Prepare!
4:00
2 года назад
【Flow】 | Work with Debug Log
13:59
2 года назад
Комментарии
@amandlathree
@amandlathree 9 дней назад
So this just expands on the sort order in the Get Record element, is that right?
@rameeshar707
@rameeshar707 5 месяцев назад
Excellent Explanation!
@Jjjordannn_wade
@Jjjordannn_wade 8 месяцев назад
This was so helpful and clear I'm wondering how I can have her teach me everything I need to know for the rest of my life. This is exactly how my brain needs to be taught concepts!!! THANK YOU SO MUCH FOR THIS.
@sharmilajennas3469
@sharmilajennas3469 10 месяцев назад
Wonderful Steps that connected the dots for me. Thanks again Melody.
@tornubarikoboo8074
@tornubarikoboo8074 10 месяцев назад
Hi Flowsome, If I create the flow for one object, would I still need to follow step 2: Plot the data model? For example, I want the flow to run on the contact object only.
@marilyndelbosque5869
@marilyndelbosque5869 11 месяцев назад
Okay but how can we then update or create a record based on this sorting?
@armin8459
@armin8459 Год назад
Helpful!
@SalesforceHowToSeries
@SalesforceHowToSeries Год назад
Hey Melody, thank you so much for your video. But how do we go about this if the field to update is a picklist?
@user-qt1bq5bw6i
@user-qt1bq5bw6i Год назад
Appreciate this wonderful video!
@user-qt1bq5bw6i
@user-qt1bq5bw6i Год назад
Very well made! Thank you for creating this.
@MegaJoshX
@MegaJoshX Год назад
You're helping me understand flows very well. I appreciate it! Excellent channel!
@rkrangara9014
@rkrangara9014 Год назад
Really helpful
@jitkaobrien2813
@jitkaobrien2813 Год назад
Fantastic video, thank you Melody.
@ayeshafathima2728
@ayeshafathima2728 Год назад
Thank you 😊.. you are kind and generous
@levon9
@levon9 Год назад
Super, nice conceptual framework to think about and tackle flows - thank you. Also subscribed :)
@secureclients7570
@secureclients7570 Год назад
Awesome Content!
@nischaysingh
@nischaysingh Год назад
Thanks. Very informative
@user-oq8mn3fi8u
@user-oq8mn3fi8u Год назад
This is so helpful. Learning flow as an admin is very difficult and it is hard to make my brain think this way. These videos make coding with point and click easier to understand in plain language.
@amyutkan
@amyutkan Год назад
had to listen a few times to get it! so cool!
@smritisharan-sfdcamplified
@smritisharan-sfdcamplified Год назад
why will we debug from debug log when flow itself has debug in built?
@nepzsalesforce
@nepzsalesforce Год назад
Debug option in the flow will show Input/Output values for all nodes/elements in the flow. But, if one needs to look at detailed logs containing get/update/delete operations on records & limits info, 'debug logs' is essential.
@erdincucar129
@erdincucar129 Год назад
Very nice video, but background music is terrible because I don't understand what is she saying in the video? So, I think removing background music and better than it new session.
@DrWho123
@DrWho123 Год назад
Ok, it is very clear how to make a loop. Thanks! But, 1. It would be better to check if any record found before we do any update or even loop (good practice to check null values, null collections). Even if we know it wont fail when no Cases found - it is still a very good practice. Ask developers :) 2. Why we actually do so many actions if we could do just one update action? Like I"m a new flow guy and it looks for me that we overcomplicate the staff that could be done with just 1 action. Or get/decision/update to check null decision and waste 2 operations (2 as on the video - get + update, but still no need to overcomplicate with a loop). Would it be better to show example that is more illustrative as the only one flow solution? E.g. When you need to update found record with 2 different logic based on the data on the same records - but even then, you will have 1 get and 1 update, that is not better than having just 2 separate update actions. So you whether select an example when you make a loop to do 3 different updates (assignments) to the same set group of records (1 actions < 3 update actions for sure more optimized), OR make an example where you need to have a more complex logic of updates (when you need not only filter records to update, but take value from each separate record in the loop and use it in the calculation of the new value to be)
@DrWho123
@DrWho123 Год назад
So, on the last challenge you show a flow with 2 get records, loop inside another loop, 4 update records and you say there is only 2 errors? doesn't it all looks like a complete mess? It can be done better: 1. Get all Accounts. 2. Loop through Accs and save names in the Text collection 3. Get open Leads 4. Loop through Leads 4.a. decision (check if acc name collections contains current Lead Company) 4.a.yes branch - assign new status, add to lead collection for update 4.a.no branch - assign priority based on the formula that calculates based on the number of employee (don't forget to handle null value), add to lead collection for update 5. update all leads in the collection So we have: 1. Just 1 update action, no 4 ones 2. 2 separate loops, no nested loops It is actually frustrating to see that representative of Flow Expert contest makes flows that cause a lot of questions (like this situation and also see below). All together it add concerns how fair and professional the whole competition is. Like do you count all best practices, how optimized the flows and ready for production? or you judge just by: it works in the current org, it doesn't have obvious issues like dml inside loop, it was done fast and in time?
@DrWho123
@DrWho123 Год назад
​ @Salesforce Flowsome! any comments?
@DrWho123
@DrWho123 Год назад
and even more questioned the solution, if you think like how this flow is triggered? how often? would it make sense to trigger 2 flows when lead created/updated (company name/status/number of employee changed) or account created/updated (name changed). This way you would deal with one lead and one account at a time. Or one account and couple of related leads. But not with the whole set of Accs in the org (that could be thousands) and all set of Open leads (that can be also quite a lot). Moreover, on Lead level you would have just a before flow, that is more optimized than after flows.
@DrWho123
@DrWho123 6 месяцев назад
​ @salesforceflowsome any chance to see your reply?
@DrWho123
@DrWho123 Год назад
Why is it legal to use beta features? They are not yet released. So if you are going to award best flow experts, it makes sense to award if their flows will work for the customers. And customers definitely use not a sandbox or dev edition org for their business.
@DrWho123
@DrWho123 Год назад
#15. Where in requirements it is said you need to copy all values from the original account? You use recordId var to create a child account - so it copies all values, inc. address, any custom fields you have (e.g. External System Id), AccountNumber, etc. Why it is considered to be correct if it wasn't mentioned in requirements? Moreover, AccountNumber as well as External System Id definitely should be different. I would create a child Account record by manually assigning just 3 fields from the screen and parent account id.
@palsingh5700
@palsingh5700 Год назад
Thank you. it was easy to understand
@mihacarr7996
@mihacarr7996 Год назад
Thanks Melody for your video, I experienced an error on this "This error occurred when the flow tried to create records: INVALID_FIELD_FOR_INSERT_UPDATE: Account: bad field names on insert/update call:" I was able to trace it to person account fields which are not allowing me to update. How do I manage this
@93875.
@93875. Год назад
Hi , when I tried this SOQL queries are not visible in debug logs of flows
@NhiNguyen-io3tj
@NhiNguyen-io3tj Год назад
I'm so happy to find your channel on RU-vid. Your website and content are very awesome. Thank you so much for making it.
@lyrem14
@lyrem14 Год назад
For challenge #19, could we use the fields component instead of individual screen components instead or fields would not support creating multiple records?
@salesforceflowsome
@salesforceflowsome Год назад
Fields component should work as well:)
@DrWho123
@DrWho123 Год назад
@@salesforceflowsome please check new comments under your video
@grimreaper_650
@grimreaper_650 Год назад
I need to update child accounts from parent account how to get all child accounts record and update a field on those child record
@nicolamitcham5986
@nicolamitcham5986 Год назад
Wow one of the best flow videos I’ve seen - awesome thanks and can’t wait to try out the custom loop!!
@david57989
@david57989 Год назад
Please make more videos. Your videos are awesome!
@meushi
@meushi Год назад
Found this channel from a reddit thread and I just have to say THANK you. I love that you actually go through and explain the individual parts of a flow and why you would use them. I can't stand guides that just say "go do x" without ever explaining how they arrived at that decision in the first place.
@bojanford
@bojanford Год назад
Thank you! Exactly what I needed.
@theobrandon9873
@theobrandon9873 Год назад
Video quality was very pixelated, had a hard time watching
@anitadonko7546
@anitadonko7546 2 года назад
Wow, I finally found this! Easier to understand it in this way, thank you!
@marilyndelbosque5869
@marilyndelbosque5869 2 года назад
I don't understand why the disclaimer of having the record IDs be blank is there. We are creating NEW records.. Umm..
@svetlanaklein3025
@svetlanaklein3025 2 года назад
Great video, would be better without the music
@helpfulsalesforceadmin9159
@helpfulsalesforceadmin9159 2 года назад
I just went through the exercises. There is nothing I found difficult but I think the time to do the exercises would be tough. I didn't time myself, probably should have. Suggestion for people trying these exercises, activate the flows and save a new version. That way if you need to go back to the source you can easily do that. A suggestion for creating activities. Maybe try working in smaller groups leaving people out of the process for each activity. Let's say you have 9 people creating 6 exercises. Work in groups of 3 to create 2 exercises each. They the other 6 can try the exercises they did not create to get an idea how long each exercise takes to complete. If it takes 6 experts an hour to complete the exercises maybe they are too long. Just a thought. Looking forward to V3 if I am lucky enough to be chosen to compete.
@salesforceflowsome
@salesforceflowsome 2 года назад
Thanks for the constructive feedback! This is definitely something we want to improve for V3:)!
@DrWho123
@DrWho123 6 месяцев назад
​@@salesforceflowsome any chance to see your reply on separate comments above?
@suneethayeddanapudi9824
@suneethayeddanapudi9824 2 года назад
Really very nice explanaion!!!! Please keep updating some more videos plssss
@salesforceflowsome
@salesforceflowsome 2 года назад
Glad that you like it Suneetha and thanks for the nice words:D!
@jasonspencerphiladelphia
@jasonspencerphiladelphia 2 года назад
Great video but I'm getting a duplicate error. Any way to filter them out?
@salesforceflowsome
@salesforceflowsome 2 года назад
Hi Jason, what kind of duplicate error are you getting? Is it that you update the same record multiple time or you have duplicate records in your org? This might because your flow logic is conflicting with your duplicate rules, so I’d recommend modifying the flow logic so that the rules don’t get triggered
@semiheser
@semiheser 2 года назад
Thank you so much, guys! Much appreciated.
@salesforceflowsome
@salesforceflowsome 2 года назад
Our pleasure Semih😊!
@christopherbaker6210
@christopherbaker6210 2 года назад
quick question. Does marking the variable as output even if you don't need to case errors/issues?
@salesforceflowsome
@salesforceflowsome 2 года назад
Hi Christopher, I don't quite get this question - do you mind to elaborate a bit more?
@jeffreyjohnson7181
@jeffreyjohnson7181 2 года назад
Great video! Have you recorded any videos on pause element? I’m trying to learn more about when to use this and am not finding much
@salesforceflowsome
@salesforceflowsome 2 года назад
Thanks! I hope I get to upload a video about that soon.
@drpattycakes
@drpattycakes 2 года назад
@@salesforceflowsome That would be fantastic
@SalesforceBreak
@SalesforceBreak 2 года назад
FlowFest challenges demystified. Great work, Melody. Thank you.
@salesforceflowsome
@salesforceflowsome 2 года назад
Thanks Andy:)!
@kristianmesa8301
@kristianmesa8301 2 года назад
Love watching these types of videos, very insightful and clear! Was there new update that prevents you from clicking on the name of orchestration to view the current steps at 9:17?
@salesforceflowsome
@salesforceflowsome 2 года назад
Thanks Kristian for the kind words! Not that I can aware of - so I would recommend reaching out to Salesforce support to check if it's a bug
@jeffreyjohnson7181
@jeffreyjohnson7181 2 года назад
Great video, do you have anything on the pause element?
@salesforceflowsome
@salesforceflowsome 2 года назад
Thanks Jeffrey! Not at the moment, but I hope I can update it soon!
@stevesoltis5538
@stevesoltis5538 2 года назад
Thank You.
@sravansravan8548
@sravansravan8548 2 года назад
It's awesome..but decrease background music .. Thanks
@salesforceflowsome
@salesforceflowsome 2 года назад
Thanks for the feedback Sravan:)!