<?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 Fabric Dataflow Gen2 - Dynamic data sources are not supported in Dataflow</title>
    <link>https://community.fabric.microsoft.com/t5/Dataflow/Fabric-Dataflow-Gen2-Dynamic-data-sources-are-not-supported/m-p/4326804#M4700</link>
    <description>&lt;P&gt;Hello, I am what would probably be considered an intermediate citizen developer.&amp;nbsp; I'm getting a "dynamic data sources are not supported" error when publishing a Dataflow Gen 2 to the Fabric service.&amp;nbsp; After using Copilot, ChatGPT, and Google/Bing searches, I see other have a similar issue, but have been unable to glean a solid solution.&amp;nbsp; I'm basically trying to get the Latitude and Longiture based on address information stored in a SQL database.&amp;nbsp; I use a service (much like the Google Maps API) to provide the address and drop the Lat and Long into newly created column in the Dataflow.&amp;nbsp; It all works fine until I publish and get the error.&amp;nbsp; I know the reason why based on all my research, but I've been unable to find a solution which I can contain to the Dataflow.&amp;nbsp; Below is my M code.&amp;nbsp; Any help on how to do a work around would be gratly appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;let&lt;BR /&gt;// Original query to get the Property table&lt;BR /&gt;Source = Sql.Database("ServerName", "CorpRealEstate"),&lt;BR /&gt;Navigation1 = Source{[Schema = "dbo", Item = "Property"]}[Data],&lt;BR /&gt;&lt;BR /&gt;// Add FullAddress column&lt;BR /&gt;AddedFullAddress = Table.AddColumn(Navigation1, "FullAddress", each [Address] &amp;amp; ", " &amp;amp; [City] &amp;amp; ", " &amp;amp; [State] &amp;amp; ", " &amp;amp; [ZipCode] &amp;amp; ", " &amp;amp; [Country]),&lt;BR /&gt;&lt;BR /&gt;// Add GetLatLongURL column&lt;BR /&gt;AddedGetLatLongURL = Table.TransformColumnTypes(Table.AddColumn(AddedFullAddress, "GetLatLongURL", each "&lt;A href="https://locationservices-aws.com/home/places?address=" target="_blank" rel="noopener"&gt;https://locationservices-aws.com/home/places?address=&lt;/A&gt;" &amp;amp; [FullAddress]), {{"GetLatLongURL", type text}}),&lt;BR /&gt;&lt;BR /&gt;// Add a custom column to make the web request and get the latitude and longitude&lt;BR /&gt;AddLatLong = Table.AddColumn(AddedGetLatLongURL, "LatLong", each let&lt;BR /&gt;BaseUrl = "&lt;A href="https://locationservices-aws.com/" target="_blank" rel="noopener"&gt;https://locationservices-aws.com/&lt;/A&gt;",&lt;BR /&gt;RelativePath = "home/places",&lt;BR /&gt;Query = [address = [FullAddress]],&lt;BR /&gt;Source = Json.Document(Web.Contents(BaseUrl, [RelativePath = RelativePath, Query = Query])),&lt;BR /&gt;Latitude = Source{1},&lt;BR /&gt;Longitude = Source{0}&lt;BR /&gt;in&lt;BR /&gt;[Latitude = Latitude, Longitude = Longitude]),&lt;BR /&gt;&lt;BR /&gt;// Expand the LatLong column into separate Latitude and Longitude columns&lt;BR /&gt;ExpandLatLong = Table.ExpandRecordColumn(AddLatLong, "LatLong", {"Latitude", "Longitude"})&lt;BR /&gt;in&lt;BR /&gt;ExpandLatLong&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
    <pubDate>Thu, 12 Dec 2024 22:06:03 GMT</pubDate>
    <dc:creator>Pete_Hr</dc:creator>
    <dc:date>2024-12-12T22:06:03Z</dc:date>
    <item>
      <title>Fabric Dataflow Gen2 - Dynamic data sources are not supported</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Fabric-Dataflow-Gen2-Dynamic-data-sources-are-not-supported/m-p/4326804#M4700</link>
      <description>&lt;P&gt;Hello, I am what would probably be considered an intermediate citizen developer.&amp;nbsp; I'm getting a "dynamic data sources are not supported" error when publishing a Dataflow Gen 2 to the Fabric service.&amp;nbsp; After using Copilot, ChatGPT, and Google/Bing searches, I see other have a similar issue, but have been unable to glean a solid solution.&amp;nbsp; I'm basically trying to get the Latitude and Longiture based on address information stored in a SQL database.&amp;nbsp; I use a service (much like the Google Maps API) to provide the address and drop the Lat and Long into newly created column in the Dataflow.&amp;nbsp; It all works fine until I publish and get the error.&amp;nbsp; I know the reason why based on all my research, but I've been unable to find a solution which I can contain to the Dataflow.&amp;nbsp; Below is my M code.&amp;nbsp; Any help on how to do a work around would be gratly appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;let&lt;BR /&gt;// Original query to get the Property table&lt;BR /&gt;Source = Sql.Database("ServerName", "CorpRealEstate"),&lt;BR /&gt;Navigation1 = Source{[Schema = "dbo", Item = "Property"]}[Data],&lt;BR /&gt;&lt;BR /&gt;// Add FullAddress column&lt;BR /&gt;AddedFullAddress = Table.AddColumn(Navigation1, "FullAddress", each [Address] &amp;amp; ", " &amp;amp; [City] &amp;amp; ", " &amp;amp; [State] &amp;amp; ", " &amp;amp; [ZipCode] &amp;amp; ", " &amp;amp; [Country]),&lt;BR /&gt;&lt;BR /&gt;// Add GetLatLongURL column&lt;BR /&gt;AddedGetLatLongURL = Table.TransformColumnTypes(Table.AddColumn(AddedFullAddress, "GetLatLongURL", each "&lt;A href="https://locationservices-aws.com/home/places?address=" target="_blank" rel="noopener"&gt;https://locationservices-aws.com/home/places?address=&lt;/A&gt;" &amp;amp; [FullAddress]), {{"GetLatLongURL", type text}}),&lt;BR /&gt;&lt;BR /&gt;// Add a custom column to make the web request and get the latitude and longitude&lt;BR /&gt;AddLatLong = Table.AddColumn(AddedGetLatLongURL, "LatLong", each let&lt;BR /&gt;BaseUrl = "&lt;A href="https://locationservices-aws.com/" target="_blank" rel="noopener"&gt;https://locationservices-aws.com/&lt;/A&gt;",&lt;BR /&gt;RelativePath = "home/places",&lt;BR /&gt;Query = [address = [FullAddress]],&lt;BR /&gt;Source = Json.Document(Web.Contents(BaseUrl, [RelativePath = RelativePath, Query = Query])),&lt;BR /&gt;Latitude = Source{1},&lt;BR /&gt;Longitude = Source{0}&lt;BR /&gt;in&lt;BR /&gt;[Latitude = Latitude, Longitude = Longitude]),&lt;BR /&gt;&lt;BR /&gt;// Expand the LatLong column into separate Latitude and Longitude columns&lt;BR /&gt;ExpandLatLong = Table.ExpandRecordColumn(AddLatLong, "LatLong", {"Latitude", "Longitude"})&lt;BR /&gt;in&lt;BR /&gt;ExpandLatLong&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 12 Dec 2024 22:06:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Fabric-Dataflow-Gen2-Dynamic-data-sources-are-not-supported/m-p/4326804#M4700</guid>
      <dc:creator>Pete_Hr</dc:creator>
      <dc:date>2024-12-12T22:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Dataflow Gen2 - Dynamic data sources are not supported</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Fabric-Dataflow-Gen2-Dynamic-data-sources-are-not-supported/m-p/4326864#M4701</link>
      <description>&lt;P&gt;Please follow the documentation. Use RelativePath and Query parameters.&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/powerquery-m/web-contents#example-1" target="_blank"&gt;https://learn.microsoft.com/en-us/powerquery-m/web-contents#example-1&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 23:34:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Fabric-Dataflow-Gen2-Dynamic-data-sources-are-not-supported/m-p/4326864#M4701</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-12-12T23:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Fabric Dataflow Gen2 - Dynamic data sources are not supported</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Fabric-Dataflow-Gen2-Dynamic-data-sources-are-not-supported/m-p/4342931#M4720</link>
      <description>&lt;P&gt;Hi there, thanks for the suggestion. &amp;nbsp;However, after trying multiple ways, I continue to get the same error. &amp;nbsp;It seems as though this might be an issue with Fabric Dataflow Gen 2. &amp;nbsp;This works if I do it in Power BI desktop and publish to the Power BI service.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Dec 2024 14:00:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Fabric-Dataflow-Gen2-Dynamic-data-sources-are-not-supported/m-p/4342931#M4720</guid>
      <dc:creator>Pete_Hr</dc:creator>
      <dc:date>2024-12-25T14:00:25Z</dc:date>
    </item>
  </channel>
</rss>

