<?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: Set parameter for scheduled run in Pipelines</title>
    <link>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/3403246#M629</link>
    <description>&lt;P&gt;Not yet, but please vote for a new feature if it doesnt already exist.&lt;/P&gt;&lt;P&gt;&lt;A href="https://ideas.fabric.microsoft.com/" target="_blank"&gt;https://ideas.fabric.microsoft.com/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Aug 2023 00:32:20 GMT</pubDate>
    <dc:creator>ajarora</dc:creator>
    <dc:date>2023-08-29T00:32:20Z</dc:date>
    <item>
      <title>Set parameter for scheduled run</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/3399524#M611</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to set pipeline parameter on a schedule? I want to schedule the same pipeline three times a day, every time with a different parameter. The parameter is used in a lookup activity to get the metadata for a for each loop.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 16:17:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/3399524#M611</guid>
      <dc:creator>cw88</dc:creator>
      <dc:date>2023-08-25T16:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Set parameter for scheduled run</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/3399708#M612</link>
      <description>&lt;P&gt;No you cant set parameter on a schedule.&lt;/P&gt;&lt;P&gt;But you can create 3 pipeline parameters, and use the right one conditionally based on an "if" activity.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 18:23:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/3399708#M612</guid>
      <dc:creator>ajarora</dc:creator>
      <dc:date>2023-08-25T18:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Set parameter for scheduled run</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/3401838#M621</link>
      <description>&lt;P&gt;Thanks for your answer!&lt;/P&gt;&lt;P&gt;Is there a plan to implement this feature in the future? it already limits the usage if the parameters cannot be set from outside (comparable to ssis packages)&lt;/P&gt;</description>
      <pubDate>Mon, 28 Aug 2023 08:47:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/3401838#M621</guid>
      <dc:creator>cw88</dc:creator>
      <dc:date>2023-08-28T08:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Set parameter for scheduled run</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/3403246#M629</link>
      <description>&lt;P&gt;Not yet, but please vote for a new feature if it doesnt already exist.&lt;/P&gt;&lt;P&gt;&lt;A href="https://ideas.fabric.microsoft.com/" target="_blank"&gt;https://ideas.fabric.microsoft.com/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 00:32:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/3403246#M629</guid>
      <dc:creator>ajarora</dc:creator>
      <dc:date>2023-08-29T00:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Set parameter for scheduled run</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/4839453#M8587</link>
      <description>&lt;P&gt;Hi, I have a solution for your requirement:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Create a &lt;STRONG&gt;dictionary table&lt;/STRONG&gt; in your Lakehouse or SQL DB and map each schedule run with the relevant parameter values.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;In your pipeline, use a &lt;STRONG&gt;Lookup activity&lt;/STRONG&gt; to query this table.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;After the Lookup activity, add a &lt;STRONG&gt;Filter activity&lt;/STRONG&gt; to filter the results by the current run time (you can catch it with @pipeline().TriggerTime) and get the relevant parameter values.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Define &lt;STRONG&gt;Set Variable&lt;/STRONG&gt; activities in the pipeline and assign these values to variables (ideally use the same names as your parameters for clarity).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Use these variables instead of parameters everywhere in your pipeline.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;P&gt;If you also want a separate behavior when the pipeline is run &lt;STRONG&gt;manually&lt;/STRONG&gt; instead of by schedule:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Add an &lt;STRONG&gt;If Condition activity&lt;/STRONG&gt; before the above steps to check if the pipeline is running manually (use @pipeline().TriggerType).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;If it’s manual, skip the dictionary lookup and directly set your variables with manual values.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Then use these variables in your pipeline logic.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;P&gt;This way you don’t need to duplicate pipelines or schedules—you centralize the parameter mapping in one place and control behavior dynamically.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2025 23:41:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Set-parameter-for-scheduled-run/m-p/4839453#M8587</guid>
      <dc:creator>Yazdan</dc:creator>
      <dc:date>2025-09-30T23:41:15Z</dc:date>
    </item>
  </channel>
</rss>

