<?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: Populate lookup column in dynamics 365 ce in Pipelines</title>
    <link>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4654918#M7528</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1259257" data-lia-user-login="Shaxa" class="lia-mention lia-mention-user"&gt;Shaxa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We really apologies for the inconvenience, after reviewing the issue of&amp;nbsp;the pipeline runs successfully but the lookup column in Dataverse is still empty, here are a few things worth double-checking:&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;In your mapping, there’s a small typo,&amp;nbsp; it looks like you wrote fm_transction@EntityReference instead of fm_transaction@EntityReference. Just adding that missing “a” can make a difference, so be sure to correct it.&lt;/P&gt;
&lt;P&gt;In the reference string you’re building (e.g., /fm_transactions(GUID)), make sure the table name matches the actual plural name of the Dataverse table ,exactly as it appears in Dataverse, including casing.&lt;/P&gt;
&lt;P&gt;Since you're already using the @EntityReference format, make sure the original fm_transaction GUID column isn’t included in the mapping. Having both can confuse Dataverse and prevent the lookup from being set.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;If this post was helpful, please give us Kudos and consider marking &lt;STRONG&gt;Accept as solution&lt;/STRONG&gt; to assist other members in finding it more easily.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 16 Apr 2025 06:27:24 GMT</pubDate>
    <dc:creator>v-menakakota</dc:creator>
    <dc:date>2025-04-16T06:27:24Z</dc:date>
    <item>
      <title>Populate lookup column in dynamics 365 ce</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4651048#M7510</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using copy activity in fabrics pipeline . My source is fabrics warehouse , destination is dataverse . I am trying to populate column called fm_transaction in Transaction Line Item , which is related to Transaction table .&amp;nbsp;&lt;/P&gt;&lt;P&gt;My query is&amp;nbsp; :&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SELECT&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; tli.&lt;/SPAN&gt;&lt;SPAN&gt;*&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CASE&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;WHEN&lt;/SPAN&gt;&lt;SPAN&gt; fm_transaction &lt;/SPAN&gt;&lt;SPAN&gt;IS&lt;/SPAN&gt; &lt;SPAN&gt;NULL&lt;/SPAN&gt; &lt;SPAN&gt;THEN&lt;/SPAN&gt; &lt;SPAN&gt;NULL&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ELSE&lt;/SPAN&gt; &lt;SPAN&gt;'/fm_transactions('&lt;/SPAN&gt; &lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;CAST&lt;/SPAN&gt;&lt;SPAN&gt;(fm_transaction &lt;/SPAN&gt;&lt;SPAN&gt;AS&lt;/SPAN&gt;&lt;SPAN&gt; NVARCHAR(&lt;/SPAN&gt;&lt;SPAN&gt;100&lt;/SPAN&gt;&lt;SPAN&gt;)) &lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt; &lt;SPAN&gt;')'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;END&lt;/SPAN&gt; &lt;SPAN&gt;AS&lt;/SPAN&gt; &lt;SPAN&gt;'fm_transaction@EntityReference'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;FROM&lt;/SPAN&gt;&lt;SPAN&gt; dbo.TransactionLineItem tli&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&lt;STRONG&gt;Mapping :&amp;nbsp;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;A href="mailto:fm_transaction@EntityReference" target="_blank" rel="noopener"&gt;fm_transaction@EntityReference&lt;/A&gt;&amp;nbsp;- &lt;A href="mailto:fm_transction@EntityReference" target="_blank" rel="noopener"&gt;fm_transction@EntityReference&lt;/A&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I have remove column which is directly populate GUID ( fm_transaction) from mapping&amp;nbsp; , it cause issue . Before i was able to acoomplish this in ADF using&amp;nbsp;@odata.bind , but here pipeline runs successfully but lookup column still empty ,however related table has value .&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 14 Apr 2025 09:49:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4651048#M7510</guid>
      <dc:creator>Shaxa</dc:creator>
      <dc:date>2025-04-14T09:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Populate lookup column in dynamics 365 ce</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4654918#M7528</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1259257" data-lia-user-login="Shaxa" class="lia-mention lia-mention-user"&gt;Shaxa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We really apologies for the inconvenience, after reviewing the issue of&amp;nbsp;the pipeline runs successfully but the lookup column in Dataverse is still empty, here are a few things worth double-checking:&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;In your mapping, there’s a small typo,&amp;nbsp; it looks like you wrote fm_transction@EntityReference instead of fm_transaction@EntityReference. Just adding that missing “a” can make a difference, so be sure to correct it.&lt;/P&gt;
&lt;P&gt;In the reference string you’re building (e.g., /fm_transactions(GUID)), make sure the table name matches the actual plural name of the Dataverse table ,exactly as it appears in Dataverse, including casing.&lt;/P&gt;
&lt;P&gt;Since you're already using the @EntityReference format, make sure the original fm_transaction GUID column isn’t included in the mapping. Having both can confuse Dataverse and prevent the lookup from being set.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;If this post was helpful, please give us Kudos and consider marking &lt;STRONG&gt;Accept as solution&lt;/STRONG&gt; to assist other members in finding it more easily.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 06:27:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4654918#M7528</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-04-16T06:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Populate lookup column in dynamics 365 ce</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4660339#M7563</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1259257" data-lia-user-login="Shaxa" class="lia-mention lia-mention-user"&gt;Shaxa&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;&lt;BR /&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 05:11:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4660339#M7563</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-04-21T05:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Populate lookup column in dynamics 365 ce</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4665925#M7595</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1259257" data-lia-user-login="Shaxa" class="lia-mention lia-mention-user"&gt;Shaxa&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 05:02:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4665925#M7595</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-04-24T05:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Populate lookup column in dynamics 365 ce</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4669916#M7626</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1259257" data-lia-user-login="Shaxa" class="lia-mention lia-mention-user"&gt;Shaxa&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;I hope the information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please &lt;STRONG&gt;Accept it as a solution&lt;/STRONG&gt; and give it a '&lt;STRONG&gt;Kudos&lt;/STRONG&gt;' so others can find it easily.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 05:08:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Populate-lookup-column-in-dynamics-365-ce/m-p/4669916#M7626</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-04-28T05:08:03Z</dc:date>
    </item>
  </channel>
</rss>

