You need to sign in to do that
Don't have an account?
divya1234
not counting reacord through flow and process builder
Hi All,
I need someone 's help who is expert in the flow. i want to count the task(where ingenus task check box is fals) on lead objcet. i cfreated flow and calling flow into process builder but not getting result on lead . here are the screenshots of flow and process builder
I need someone 's help who is expert in the flow. i want to count the task(where ingenus task check box is fals) on lead objcet. i cfreated flow and calling flow into process builder but not getting result on lead . here are the screenshots of flow and process builder
You're very close. It looks like you did everything right, but I think you're passing the wrong Id field into your flow. Instead of passing [Task].Id (which is the Id of the Task itself), pass in the WhoId field, which will end up looking something like [Task].WhoId.
With that said, I do want to make sure that you're aware that the WhoId field is what they call a polymorphic field. That's just a fancy way of saying that that lookup can refer to more than one object, in this case, the Contact and Lead Objects. One thing that I'd advise you do is set a criteria in Process Builder that says something like "[Task].WhoId Starts with '00Q'". If you're not familiar with it already, Salesforce Ids always start with a key prefix, that is, three characters that denote what object that record belongs to. Contact Ids begin with "003", while Leads begin with "00Q". So if you make sure that the WhoId starts with "00Q", you would then only launch the flow when it's a Lead in the WhoId field instead of a Contact, thereby saving system resources.
Let me know if this works for you.
Regards,
Parker
Thanks for your reply i tried to pass whoid into variable as below. i am not sure where i can pass Leads begin with "00Q into process builder.
still it is not working can you please help me what i am missing
Everything in your Process Builder looks right. I gave your Flow screenshots a second look, and in your Fast Lookup, you're looking for Tasks that have an Id equal to what we've now set to be the Lead's Id, which is an impossibility. The fix is easy, just change the field from Id to WhoId in your Fast Lookup and hopefully everything should work as expected.
Let me know if that works for you, or if another problem arises.
Best,
Parker