Within my ADF Data Flow I want to add the pipeline runID as a column. It is not possible within the Data Flow to add a dynamic value referring to the pipeline runId.
Are there any other ways to achieve this?
Yes, you can add a parameter in Data Flow and set it's value as @pipeline().RunId
. Then create a DerivedColumn activity and add a column which's value is $pipelineRunId
.
Details: