<?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>idea Batch remove multiple domains from FC in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idi-p/1540373</link>
    <description>&lt;P&gt;ArcGIS Pro 2.9.5; mobile geodatabase:&lt;/P&gt;&lt;P&gt;I have a feature class that has dozens of domains. I want to remove most of the domains from the FC.&lt;/P&gt;&lt;P&gt;Instead of manually choosing the blank option from the domain picklist for each applicable field in the Fields View, I want to batch-remove multiple domains using a single action, such as a window with a list of field domains and checkboxes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bud_0-1726754434531.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/115435iF50CD9921710219E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bud_0-1726754434531.png" alt="Bud_0-1726754434531.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 19 Sep 2024 14:19:55 GMT</pubDate>
    <dc:creator>Bud</dc:creator>
    <dc:date>2024-09-19T14:19:55Z</dc:date>
    <item>
      <title>Batch remove multiple domains from FC</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idi-p/1540373</link>
      <description>&lt;P&gt;ArcGIS Pro 2.9.5; mobile geodatabase:&lt;/P&gt;&lt;P&gt;I have a feature class that has dozens of domains. I want to remove most of the domains from the FC.&lt;/P&gt;&lt;P&gt;Instead of manually choosing the blank option from the domain picklist for each applicable field in the Fields View, I want to batch-remove multiple domains using a single action, such as a window with a list of field domains and checkboxes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bud_0-1726754434531.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/115435iF50CD9921710219E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bud_0-1726754434531.png" alt="Bud_0-1726754434531.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 14:19:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idi-p/1540373</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2024-09-19T14:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Batch remove multiple domains from FC</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idc-p/1540434#M32163</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/351335"&gt;@Bud&lt;/a&gt;, you can accomplish this via a Python arcpy script. You can download my Pro ArcToolbox from this link&amp;nbsp;&lt;A href="https://esriis-my.sharepoint.com/:u:/g/personal/marc3932_esri_com/Ee0K62m0X-FJrVWVZTfUHQEBANK0Y3cx0oufXNUtmyKvJw" target="_blank"&gt;gdb_tools_pro_2023_11_03.zip.&lt;/A&gt;&amp;nbsp; I hope this helps.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 15:37:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idc-p/1540434#M32163</guid>
      <dc:creator>MarceloMarques</dc:creator>
      <dc:date>2024-09-19T15:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Batch remove multiple domains from FC</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idc-p/1540609#M32172</link>
      <description>&lt;P&gt;Thanks for the Idea&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/351335"&gt;@Bud&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Cell operations like this aren't currently supported with multiselect in any of the design view UI's.&amp;nbsp; There are a few other Ideas related to this type of functionality eg. &lt;A href="https://desktopqa/sftriage#/Ideas/1401669" target="_blank" rel="noopener"&gt;Changing all domain split policies at once&lt;/A&gt;.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;A quick way to to do this be in the python window.&amp;nbsp; This also lets you remove domains from specific subtypes as well using the subtype parameter of the &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/remove-domain-from-field.htm" target="_blank" rel="noopener"&gt;Remove Domain from Field&lt;/A&gt; GP tool&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;in_table = r"c:\temp\temp.gdb\class"

for field in arcpy.ListFields(in_table):
    arcpy.management.RemoveDomainFromField(in_table, field.name)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 19:39:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idc-p/1540609#M32172</guid>
      <dc:creator>SSWoodward</dc:creator>
      <dc:date>2024-09-19T19:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Batch remove multiple domains from FC</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idc-p/1540620#M32173</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/604859"&gt;@SSWoodward&lt;/a&gt;.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;Cell operations like this aren't currently supported with multiselect in any of the design view UI's.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Is there a reason we can select multiple fields (row headers) in the Fields View and delete the fields, but we can't select multiple fields and remove the domain? Those two operations seem similar.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 19:55:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idc-p/1540620#M32173</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2024-09-19T19:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: Batch remove multiple domains from FC</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idc-p/1540623#M32174</link>
      <description>&lt;P&gt;Deleting a row is a row operation, but changing the values of specific cells in the selected rows is a cell operation.&amp;nbsp; Cell operations aren't supported with multiselect in the data design views.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 20:01:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/batch-remove-multiple-domains-from-fc/idc-p/1540623#M32174</guid>
      <dc:creator>SSWoodward</dc:creator>
      <dc:date>2024-09-19T20:01:58Z</dc:date>
    </item>
  </channel>
</rss>

