<?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: Mashup Exception: Any ideas to try? in Dataflow</title>
    <link>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3621803#M1498</link>
    <description>&lt;P&gt;OK.&amp;nbsp; I had two calls with Microsoft Support without a resolution yet. But in the meanwhile I found a way around it, as I was able to get closer to the core issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The function GetRelated(id) was accepting id as any. Changing this to text fixed the issue. I also had to create another version when I needed&amp;nbsp; to call the function with a record.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe this will help someone...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ruchan&lt;/P&gt;</description>
    <pubDate>Mon, 08 Jan 2024 08:11:52 GMT</pubDate>
    <dc:creator>RZ</dc:creator>
    <dc:date>2024-01-08T08:11:52Z</dc:date>
    <item>
      <title>Mashup Exception: Any ideas to try?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3605636#M1451</link>
      <description>&lt;P&gt;I have been trying to solve a MashUp exception error for some time now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have managed to simply the problem as follows. I have a main and related table, they have a common id between themselves. For debugging purposes the main table has only one column "id" and one row.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I have a function GetRelated(id) that retrieves the related records from an API given an id. When I add a column with a call to this function referencing the id and then remove the column; DataFlow gives a MashUp Exception when published but looks fine in the PowerQuery Editor. Just a note: the error is the same if I dont remove the column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fail&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;let
    Source = mainTable,
    #"Invoked Custom Function" = Table.AddColumn(Source, "related", each GetRelated([id])),
  #"Removed columns" = Table.RemoveColumns(#"Invoked Custom Function", {"related"})
in
    #"Removed columns"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&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;However if I retrieve the related records outside the failing query in another table...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GetRelatedInAdvance:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;let
  Source = GetRelated("98035f6c-e16f-46cd-9fea-08db04f8aa2f")
in
  Source&lt;/LI-CODE&gt;&lt;P&gt;And then add this table into a column&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;let
    Source = mainTable,
    #"Invoked Custom Function" = Table.AddColumn(Source, "related", each GetRelatedInAdvance),
  #"Removed columns" = Table.RemoveColumns(#"Invoked Custom Function", {"related"})
in
    #"Removed columns"&lt;/LI-CODE&gt;&lt;P&gt;The flow works. Looks the same as the failing one in the editor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What else should I look into?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ruchan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2023 14:23:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3605636#M1451</guid>
      <dc:creator>RZ</dc:creator>
      <dc:date>2023-12-28T14:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup Exception: Any ideas to try?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3606558#M1455</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="510818" data-lia-user-login="RZ" class="lia-mention lia-mention-user"&gt;RZ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for using Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;Apologies for the issue you have been facing.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This might require a deeper investigation from our engineering team and they can guide you better.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please go ahead and raise a support ticket to reach our support team:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://support.fabric.microsoft.com/support" target="_blank" rel="noopener nofollow noreferrer"&gt;https://support.fabric.microsoft.com/support&lt;/A&gt;&lt;BR /&gt;Please provide the ticket number here as we can keep an eye on it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Dec 2023 07:10:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3606558#M1455</guid>
      <dc:creator>v-cboorla-msft</dc:creator>
      <dc:date>2023-12-29T07:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup Exception: Any ideas to try?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3606602#M1456</link>
      <description>&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the ticket#&amp;nbsp;&lt;SPAN&gt;2312290050000243&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Happy new year&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;I was hoping&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Dec 2023 07:59:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3606602#M1456</guid>
      <dc:creator>RZ</dc:creator>
      <dc:date>2023-12-29T07:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup Exception: Any ideas to try?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3621803#M1498</link>
      <description>&lt;P&gt;OK.&amp;nbsp; I had two calls with Microsoft Support without a resolution yet. But in the meanwhile I found a way around it, as I was able to get closer to the core issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The function GetRelated(id) was accepting id as any. Changing this to text fixed the issue. I also had to create another version when I needed&amp;nbsp; to call the function with a record.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe this will help someone...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ruchan&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2024 08:11:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3621803#M1498</guid>
      <dc:creator>RZ</dc:creator>
      <dc:date>2024-01-08T08:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup Exception: Any ideas to try?</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3626130#M1515</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="510818" data-lia-user-login="RZ" class="lia-mention lia-mention-user"&gt;RZ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Glad to know that you got a work around for your query.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please continue using Fabric Community for any help regarding your queries.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2024 11:44:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Mashup-Exception-Any-ideas-to-try/m-p/3626130#M1515</guid>
      <dc:creator>v-cboorla-msft</dc:creator>
      <dc:date>2024-01-09T11:44:03Z</dc:date>
    </item>
  </channel>
</rss>

