Create the 2 parameters in the source and the destination. Then you create a new pipeline, where you add the source dataflow activity.
In the settings of the dataflow activity, map the parameters as needed.
After the source dataflow activity, add a Set Variable activity to store the output value. For example, if you need to pass an ID or any value, capture it here.
Use dynamic expressions to capture the output. For example, @activity('SourceDataflowActivity').output.value
.
Then, add the destination dataflow activity.
In the settings of the dataflow activity, map the parameters using the variables set from the previous activity.
Then you pass the parameters between pipelines :
- If the dataflows are in the same pipeline, directly use the output of the source dataflow in the destination dataflow activity.
- If the dataflows are in separate pipelines, use a combination of Execute Pipeline activity to call the second pipeline and pass the necessary parameters.