How To Use Sample Data From Similar Flows

How To Use Sample Data From Similar Flows

Comments

  • Hi, I have some flows with the same input types. I have some flows that all accept an Account as an input, and I have Remember to the Recent List checked in their respective debuggers, but the sample data for them isnt available between them. How can I have sample data for flows with similar inputs to be available for all of my flows that take in the same set of data?

  • Sample data from flow executions are only made available as inputs in other flows debuggers if both the data types and data names match.

    Given the following two flows:

    Flow1 - inputs
    [ul][li]Data Name:Acc Type:[Account][/li][li]Data Name:Str Type:[String][/li][li]Data Name:Bool Type:[Boolean][/li][/ul]
    Flow2 - inputs

    [ul][li]Data Name:Account Type:[Account][/li][li]Data Name:Str Type:[String][/li][li]Data Name:Bool Type:[Boolean][/li][/ul]

    The sample data from Flow1 will not be accessible to Flow2, since one of the data names differ from those of Flow1. If Flow2s Account input was named Acc, Flow1s sample data would be available to it in the debugger. If Flow2 did not have the input Bool, the sample data from Flow1 would also not be available.

Sign In or Register to comment.