<?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: How to get Base Enum values  and not its id(numbers) on sql table (BYOD, D365 FO) in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/How-to-get-Base-Enum-values-and-not-its-id-numbers-on-sql-table/m-p/3438140#M44533</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have been trying to get enums out of D365 to the DataLake. I had found SRSAnalysisEnums and for the most part it does what I need. However, I have encountered a few instances where certain enum types are not sent to this table. eg&amp;nbsp;&lt;/P&gt;&lt;P&gt;330 UnitOfMeasureCodeSymbol&lt;BR /&gt;4360 UnitOfMeasureSystemOfUnits&lt;/P&gt;&lt;P&gt;Is there another way to get at this data? eg is there a way to have the tables&amp;nbsp;ENUMIDTABLE and&amp;nbsp;ENUMVALUETABLE made exportable? How big a change would it be?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Graham&lt;/P&gt;</description>
    <pubDate>Tue, 19 Sep 2023 11:14:44 GMT</pubDate>
    <dc:creator>gpcottle</dc:creator>
    <dc:date>2023-09-19T11:14:44Z</dc:date>
    <item>
      <title>How to get Base Enum values  and not its id(numbers) on sql table (BYOD, D365 FO)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-get-Base-Enum-values-and-not-its-id-numbers-on-sql-table/m-p/2196761#M32993</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need your help guys &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using &lt;STRONG&gt;BYOD&lt;/STRONG&gt; and&amp;nbsp;&lt;SPAN&gt;Export services of Dynamics 365 for Finance and Operations (&lt;STRONG&gt;D365 F&amp;amp;O&lt;/STRONG&gt;) to prepare sql Tables.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The problem is with fields that have &lt;STRONG&gt;Base Enum data type,&lt;/STRONG&gt; those fields are loaded in sql table as numbers (index: 0,1,2....) and not with their label value (String value).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How can I solve this issue?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The field should contain values (such as sales, purch....) but the field in sql Table contains (0,1.......)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VFPowerBI_0-1637244125672.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/633280i68EFF7A4D9F59A0C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VFPowerBI_0-1637244125672.png" alt="VFPowerBI_0-1637244125672.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you, I will appreciate any information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Nov 2021 14:09:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-get-Base-Enum-values-and-not-its-id-numbers-on-sql-table/m-p/2196761#M32993</guid>
      <dc:creator>VFPowerBI</dc:creator>
      <dc:date>2021-11-18T14:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Base Enum values  and not its id(numbers) on sql table (BYOD, D365 FO)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-get-Base-Enum-values-and-not-its-id-numbers-on-sql-table/m-p/2200975#M33050</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/302862"&gt;@VFPowerBI&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please review the content in the following links and check whether that is what you are looking for.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://alexvoy.blogspot.com/2019/05/how-to-see-enum-values-in-d365.html?m=1" target="_self"&gt;&lt;STRONG&gt;How to see enum values in D365&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;USE [xxDB]
&lt;SPAN&gt;GO&lt;/SPAN&gt;
&lt;SPAN&gt;SELECT&lt;/SPAN&gt; * &lt;SPAN&gt;from&lt;/SPAN&gt; &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ENUMVALUETABLE&lt;/STRONG&gt;&lt;/FONT&gt;
 &lt;SPAN&gt;join&lt;/SPAN&gt; &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;ENUMIDTABLE&lt;/FONT&gt;&lt;/STRONG&gt;
 &lt;SPAN&gt;on&lt;/SPAN&gt; enumid = id
 &lt;SPAN&gt;and&lt;/SPAN&gt; ENUMIDTABLE.NAME = &lt;SPAN&gt;'xxx'&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://community.dynamics.com/365/financeandoperations/f/dynamics-365-for-finance-and-operations-forum/315520/export-all-enums-over-data-entity-to-byod" target="_self"&gt;&lt;STRONG&gt;Export all enums over data entity to BYOD&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_1-1637570168738.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/634319i1059047028A2A386/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_1-1637570168738.png" alt="yingyinr_1-1637570168738.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;A style="font-family: inherit; background-color: #ffffff;" href="https://d365foe.blogspot.com/2020/06/how-to-use-enum-values-instead-of.html" target="_self"&gt;&lt;STRONG&gt;How to: Use enum values instead of integers in BI reports for Dynamics 365 finance and operations&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Also, you can try to go to the BYOD product support team, they will give you more professional advice or solution.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 08:40:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-get-Base-Enum-values-and-not-its-id-numbers-on-sql-table/m-p/2200975#M33050</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-22T08:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Base Enum values  and not its id(numbers) on sql table (BYOD, D365 FO)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-get-Base-Enum-values-and-not-its-id-numbers-on-sql-table/m-p/3438140#M44533</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have been trying to get enums out of D365 to the DataLake. I had found SRSAnalysisEnums and for the most part it does what I need. However, I have encountered a few instances where certain enum types are not sent to this table. eg&amp;nbsp;&lt;/P&gt;&lt;P&gt;330 UnitOfMeasureCodeSymbol&lt;BR /&gt;4360 UnitOfMeasureSystemOfUnits&lt;/P&gt;&lt;P&gt;Is there another way to get at this data? eg is there a way to have the tables&amp;nbsp;ENUMIDTABLE and&amp;nbsp;ENUMVALUETABLE made exportable? How big a change would it be?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Graham&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 11:14:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-get-Base-Enum-values-and-not-its-id-numbers-on-sql-table/m-p/3438140#M44533</guid>
      <dc:creator>gpcottle</dc:creator>
      <dc:date>2023-09-19T11:14:44Z</dc:date>
    </item>
  </channel>
</rss>

