<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline in Pipelines</title>
    <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4817312#M8433</link>
    <description>&lt;P&gt;I am facing the same issue. It would be helpful if the known issue(&lt;A href="https://support.fabric.microsoft.com/known-issues/" target="_blank"&gt;https://support.fabric.microsoft.com/known-issues/&lt;/A&gt;) is updated with the same so we can track the same properly and plan the deployment accrodingly.&lt;/P&gt;</description>
    <pubDate>Thu, 04 Sep 2025 18:11:46 GMT</pubDate>
    <dc:creator>MSProfessional</dc:creator>
    <dc:date>2025-09-04T18:11:46Z</dc:date>
    <item>
      <title>Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4681735#M7727</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;I'm working with &lt;STRONG&gt;Microsoft Fabric pipelines&lt;/STRONG&gt; and using a &lt;STRONG&gt;Variable Library&lt;/STRONG&gt; to dynamically assign values to the Dataflow activity, specifically for workspaceId and dataflowId.&lt;/P&gt;&lt;H4&gt;&lt;STRONG&gt;My Setup:&lt;/STRONG&gt;&lt;/H4&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;I've created a Variable Library with the following variables:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;env: contains the Workspace ID (GUID)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;movex_customers: contains the Dataflow ID (GUID)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;dataflow_type: contains the value "DataflowFabric"&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;img /&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H4&gt;&lt;STRONG&gt;In the pipeline Dataflow activity:&lt;/STRONG&gt;&lt;/H4&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Workspace ID:&lt;BR /&gt;@pipeline().libraryVariables.env&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Dataflow ID:&lt;BR /&gt;@pipeline().libraryVariables.movex_customers&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;img /&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H4&gt;&lt;STRONG&gt;The Problem:&lt;/STRONG&gt;&lt;/H4&gt;&lt;P&gt;When I use these variables, the Dataflow activity fails with the following error:&lt;/P&gt;&lt;PRE&gt;{
  "error": {
    "code": "InvalidRequest",
    "message": "Unexpected dataflow error"
  }
}&lt;/PRE&gt;&lt;P&gt;Fabric doesn't know it should treat the activity as a &lt;STRONG&gt;Dataflow&lt;/STRONG&gt;, so it throws a &lt;STRONG&gt;generic internal error&lt;/STRONG&gt; instead of a clear validation failure. This error &lt;STRONG&gt;goes away only when I add&lt;/STRONG&gt; the following field to the activity configuration &lt;STRONG&gt;manually in JSON view&lt;/STRONG&gt;:&lt;/P&gt;&lt;PRE&gt;"dataflowType": "DataflowFabric"&lt;/PRE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the Fabric pipeline UI &lt;STRONG&gt;does not expose a field for dataflowType&lt;/STRONG&gt; when using dynamic inputs — only when selecting a Dataflow statically.&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&lt;STRONG&gt;What I’ve Tried:&lt;/STRONG&gt;&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Variable substitution via expression:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Created a variable: dataflow_type = "DataflowFabric"&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Referenced in activity: @pipeline().libraryVariables.dataflow_type&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;→ Field still missing in UI or has no effect&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Set Variable / Script activity workaround:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Used a Set Variable or Script activity to define:&lt;/P&gt;&lt;PRE&gt;resolved_dataflow_type = "DataflowFabric"&lt;/PRE&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Referenced: @variables('resolved_dataflow_type')&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;→ Still not picked up; there's no place to plug it in via UI&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Hardcoding works:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Manually typing Workspace ID and Dataflow ID → activity runs successfully&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Adding dataflowType via JSON works&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;When dynamic expressions are used for IDs &lt;STRONG&gt;and&lt;/STRONG&gt; dataflowType is not set, it fails with “Unexpected dataflow error”&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;H3&gt;&lt;STRONG&gt;What I'm Looking For:&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;Why is Fabric not recognizing the activity as a DataFlow?&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;How can I dynamically set dataflowType = "DataflowFabric" when using a Variable Library?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Is there a hidden property, advanced field, or workaround to inject this value in the UI?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Is there a future update planned to make dataflowType configurable from the designer?&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;P&gt;Happy to share screenshots or test results if needed.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 May 2025 10:30:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4681735#M7727</guid>
      <dc:creator>Darshan22</dc:creator>
      <dc:date>2025-05-06T10:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4682752#M7733</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1271398" data-lia-user-login="Darshan22" class="lia-mention lia-mention-user"&gt;Darshan22&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please refer to below similar solved thread from community and let me know if this helps?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Data-Pipeline/dynamic-library-variables/m-p/4663725/highlight/true" target="_blank" rel="noopener"&gt;https://community.fabric.microsoft.com/t5/Data-Pipeline/dynamic-library-variables/m-p/4663725/highlight/true&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 07:24:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4682752#M7733</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-05-07T07:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4688550#M7770</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1271398" data-lia-user-login="Darshan22" class="lia-mention lia-mention-user"&gt;Darshan22&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 07:00:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4688550#M7770</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-05-12T07:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4688951#M7771</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1271398" data-lia-user-login="Darshan22" class="lia-mention lia-mention-user"&gt;Darshan22&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 10:22:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4688951#M7771</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-05-12T10:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4689034#M7772</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="845241" data-lia-user-login="v-prasare" class="lia-mention lia-mention-user"&gt;v-prasare&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The solution provided focus on dynamically setting Library variables. Whereas in this case the Library variables are static, they do not change. This query concerns with dynamically defining the Dataflow id and Workspace Id using Library variables. So no, it doesn't really answer my question.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Darshan&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 10:57:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4689034#M7772</guid>
      <dc:creator>Darshan22</dc:creator>
      <dc:date>2025-05-12T10:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4702317#M7865</link>
      <description>&lt;P&gt;I am running into this exact same problem, feels like it should work given you can dynamically populate the Dataflow ID...but something isn't wired correctly. I noticed the only real difference is the missing&amp;nbsp;&lt;SPAN&gt;dataflowType = "DataflowFabric"&amp;nbsp;when you compare the inputs.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 20:05:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4702317#M7865</guid>
      <dc:creator>bsmithUI</dc:creator>
      <dc:date>2025-05-21T20:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4703490#M7871</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1271398" data-lia-user-login="Darshan22" class="lia-mention lia-mention-user"&gt;Darshan22&lt;/a&gt;&amp;nbsp;,If your blocked here in this scenario i suggest you to raise a support ticket here. so, that they can assit you in addressing the issue you are facing. please follow below link on how to raise a support ticket:&lt;/P&gt;
&lt;P&gt;&lt;A class="" title="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank" rel="noreferrer noopener" aria-label="Link How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn"&gt;How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Prashanth&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 12:14:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4703490#M7871</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-05-22T12:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4810145#M8393</link>
      <description>&lt;P&gt;Hi Darshan,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are facing the same issue, did you find a solution?&amp;nbsp; The thread mentions "solved" but it doesn't seem like it.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2025 10:18:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4810145#M8393</guid>
      <dc:creator>CSERRA</dc:creator>
      <dc:date>2025-08-28T10:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4817300#M8432</link>
      <description>&lt;P&gt;I am facing the same challenge. It would be helpful if the above error is added to the known issue(&lt;A href="https://support.fabric.microsoft.com/known-issues/" target="_blank"&gt;https://support.fabric.microsoft.com/known-issues/&lt;/A&gt;) so we can track the same properly and plan the deployment accordingly.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Sep 2025 18:09:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4817300#M8432</guid>
      <dc:creator>MSProfessional</dc:creator>
      <dc:date>2025-09-04T18:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4817312#M8433</link>
      <description>&lt;P&gt;I am facing the same issue. It would be helpful if the known issue(&lt;A href="https://support.fabric.microsoft.com/known-issues/" target="_blank"&gt;https://support.fabric.microsoft.com/known-issues/&lt;/A&gt;) is updated with the same so we can track the same properly and plan the deployment accrodingly.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Sep 2025 18:11:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4817312#M8433</guid>
      <dc:creator>MSProfessional</dc:creator>
      <dc:date>2025-09-04T18:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Not Running with dynamic variables from Variable Library in Fabric Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4817330#M8434</link>
      <description>&lt;P&gt;The solution to the above issue can be manually adding below from "View" Menu &amp;gt; "Edit JSON code" option until it is fixed from MS.&lt;BR /&gt;"dataflowType": "DataflowFabric"&lt;/P&gt;</description>
      <pubDate>Thu, 04 Sep 2025 18:26:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Dataflow-Not-Running-with-dynamic-variables-from-Variable/m-p/4817330#M8434</guid>
      <dc:creator>MSProfessional</dc:creator>
      <dc:date>2025-09-04T18:26:19Z</dc:date>
    </item>
  </channel>
</rss>

