<?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 Custom BI Connector - Create UI parameters dynamically in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Custom-BI-Connector-Create-UI-parameters-dynamically/m-p/4860663#M63582</link>
    <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm developing a custom BI connector and I can show input parameters (e.g. date) in this here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RaBu78_0-1761656066166.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1305955i14365CECC5CE12A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RaBu78_0-1761656066166.png" alt="RaBu78_0-1761656066166.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do this via this code in M:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;       let        

                dataFunction = (param1 as any, optional param2 as any) as table =&amp;gt;
                    GetData(actions, params, {param1, param2}, serverUrl),              

   
                typeParam = type function (
                    param1 as (type date meta [
                        Documentation.FieldCaption = "Start Date",
                        Documentation.FieldDescription = "Start of time range",
                        Documentation.SampleValues = {#date(2024, 1, 1)}
                    ]),
                    optional param2 as (type date meta [
                        Documentation.FieldCaption = "End Date",
                        Documentation.FieldDescription = "End of time range",
                        Documentation.SampleValues = {#date(2024, 12, 31)}
                    ])
                ) as table
         
            in
                Value.ReplaceType(dataFunction, typeParam)&lt;/LI-CODE&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;That works without any problem :).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;So now the problem is: I get a parameter list via json with each entry like [ Name = "StartDate", Type = "type date", IsOptional = "false"... ] and I want to create the parameters for the UI dynamically by the data of the parameter list. That means the parameter count is not the same, the parameter types are not always the same and the optional parameter can be different. How can I create the UI parameter inputs by the definition of the json.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Does anybody have a solution for this?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Best regards&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;Rainer&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&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;</description>
    <pubDate>Tue, 28 Oct 2025 13:52:42 GMT</pubDate>
    <dc:creator>RaBu78</dc:creator>
    <dc:date>2025-10-28T13:52:42Z</dc:date>
    <item>
      <title>Custom BI Connector - Create UI parameters dynamically</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-BI-Connector-Create-UI-parameters-dynamically/m-p/4860663#M63582</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm developing a custom BI connector and I can show input parameters (e.g. date) in this here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RaBu78_0-1761656066166.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1305955i14365CECC5CE12A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RaBu78_0-1761656066166.png" alt="RaBu78_0-1761656066166.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do this via this code in M:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;       let        

                dataFunction = (param1 as any, optional param2 as any) as table =&amp;gt;
                    GetData(actions, params, {param1, param2}, serverUrl),              

   
                typeParam = type function (
                    param1 as (type date meta [
                        Documentation.FieldCaption = "Start Date",
                        Documentation.FieldDescription = "Start of time range",
                        Documentation.SampleValues = {#date(2024, 1, 1)}
                    ]),
                    optional param2 as (type date meta [
                        Documentation.FieldCaption = "End Date",
                        Documentation.FieldDescription = "End of time range",
                        Documentation.SampleValues = {#date(2024, 12, 31)}
                    ])
                ) as table
         
            in
                Value.ReplaceType(dataFunction, typeParam)&lt;/LI-CODE&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;That works without any problem :).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;So now the problem is: I get a parameter list via json with each entry like [ Name = "StartDate", Type = "type date", IsOptional = "false"... ] and I want to create the parameters for the UI dynamically by the data of the parameter list. That means the parameter count is not the same, the parameter types are not always the same and the optional parameter can be different. How can I create the UI parameter inputs by the definition of the json.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Does anybody have a solution for this?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Best regards&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;Rainer&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&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;</description>
      <pubDate>Tue, 28 Oct 2025 13:52:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-BI-Connector-Create-UI-parameters-dynamically/m-p/4860663#M63582</guid>
      <dc:creator>RaBu78</dc:creator>
      <dc:date>2025-10-28T13:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Custom BI Connector - Create UI parameters dynamically</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-BI-Connector-Create-UI-parameters-dynamically/m-p/4860977#M63591</link>
      <description>&lt;LI-CODE lang="markup"&gt;I want to create the parameters for the UI dynamically&lt;/LI-CODE&gt;
&lt;P&gt;I don't think you can do that. Parameters need to be static.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 19:28:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-BI-Connector-Create-UI-parameters-dynamically/m-p/4860977#M63591</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-10-28T19:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Custom BI Connector - Create UI parameters dynamically</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-BI-Connector-Create-UI-parameters-dynamically/m-p/4862123#M63613</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1380328"&gt;@RaBu78&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;for the prompt response.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I wanted to check if you had the opportunity to review the information provided and resolve the issue..?Please let us know if you need any further assistance.We are happy to help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 06:36:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-BI-Connector-Create-UI-parameters-dynamically/m-p/4862123#M63613</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-10-30T06:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Custom BI Connector - Create UI parameters dynamically</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-BI-Connector-Create-UI-parameters-dynamically/m-p/4864858#M63662</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1380328"&gt;@RaBu78&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? Please let us know if you have any further issues, we are happy to help.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 10:27:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-BI-Connector-Create-UI-parameters-dynamically/m-p/4864858#M63662</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-11-03T10:27:07Z</dc:date>
    </item>
  </channel>
</rss>

