Question
Software
Software
IN
Software
Posted: Mar 31, 2025
Last activity: Apr 1, 2025
Last activity: 1 Apr 2025 3:40 EDT
About Data Flows
I want to run a data flow dynamically means i am setting to a data flow name to parameter and i need to execute it !! how can i achieve it??
Hi @BOMMISETTYN16612583,
You cannot exactly pass the dataflow name dynamically as a Param because any the time of saving the activity the rule lookup of the step will fail as below.
Practical way to achieve this is to use WHEN and JUMP in activity steps, which gives you complete control on when to execute which dataflow and what to do post execute.
You can also parameterize this activity and use the param in When of step dataset-execute method.
Hope it helps !
Thanks, Ankit