<?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: Export feature class from ArcMap (or ArcCatalog) to ArcGIS Pro in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618111#M74277</link>
    <description>&lt;P&gt;I don't encounter the problem like shown in the screenshot if I do this directly from ArcMap or ArcCatalog.&lt;/P&gt;</description>
    <pubDate>Fri, 23 May 2025 21:21:23 GMT</pubDate>
    <dc:creator>DN_GIS_Analyst</dc:creator>
    <dc:date>2025-05-23T21:21:23Z</dc:date>
    <item>
      <title>Export feature class from ArcMap (or ArcCatalog) to ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618104#M74274</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When working directly with ArcMap or ArcCatalog, I'm able to export a feature class from its SDE to a geodatabase in ArcGIS Pro, it works fine.&lt;/P&gt;&lt;P&gt;However, I encountered a problem in exporting the feature class via a python script. I frequently get the Error 000210.&lt;/P&gt;&lt;LI-CODE lang="c"&gt;import arcpy

arcpy.env.workspace = r"C:\Users\My_SDE.sde\GISUtility.ARC.Electric"
output_gdb = r"C:\Users\My_GDB.gdb"

# Feature class names you care about
target_fcs = ["GISUtility.ARC.ePriOHConductor", "GISUtility.ARC.ePriUGConductor"]

for fc_name in arcpy.ListFeatureClasses():
    if fc_name in target_fcs:
        out_name = "Primary_OH_Exported" if "OH" in fc_name else "Primary_UG_Exported"
        out_path = f"{output_gdb}\\{out_name}"

        if arcpy.Exists(out_path):
            arcpy.Delete_management(out_path)

        print(f"?? Exporting {fc_name} to {out_path}")
        arcpy.FeatureClassToFeatureClass_conversion(fc_name, output_gdb, out_name)&lt;/LI-CODE&gt;&lt;P&gt;For whatever reasons, I cannot get it to work properly. I would like to automate this step rather than manually opening ArcMap or ArcCatalog to export the data over to the Pro.&lt;/P&gt;&lt;P&gt;I set the env path to the feature dataset in the SDE. Previously I tested this by adding a arcpy.ListFeatureClasses(), and it was able to list the feature classes, so I knew it could read the feature classes. However, I'm unable to do anything like exporting the feature class from ArcMap or ArcCatalog to ArcGIS Pro.&lt;/P&gt;&lt;P&gt;I am using ArcMap 10.8 and ArcGIS Pro 3.2.2&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 21:05:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618104#M74274</guid>
      <dc:creator>DN_GIS_Analyst</dc:creator>
      <dc:date>2025-05-23T21:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Export feature class from ArcMap (or ArcCatalog) to ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618107#M74275</link>
      <description>&lt;P&gt;I feel like I'm missing something. Why do you need to "export to ArcGIS Pro"? Pro should be able to read the files itself, shouldn't it?&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 21:10:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618107#M74275</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-05-23T21:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Export feature class from ArcMap (or ArcCatalog) to ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618110#M74276</link>
      <description>&lt;P&gt;Because of the screenshot below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Add_Data_Problem.png" style="width: 406px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133205iBD1D7DFACEE81309/image-size/large?v=v2&amp;amp;px=999" role="button" title="Add_Data_Problem.png" alt="Add_Data_Problem.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 21:20:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618110#M74276</guid>
      <dc:creator>DN_GIS_Analyst</dc:creator>
      <dc:date>2025-05-23T21:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Export feature class from ArcMap (or ArcCatalog) to ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618111#M74277</link>
      <description>&lt;P&gt;I don't encounter the problem like shown in the screenshot if I do this directly from ArcMap or ArcCatalog.&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 21:21:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618111#M74277</guid>
      <dc:creator>DN_GIS_Analyst</dc:creator>
      <dc:date>2025-05-23T21:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Export feature class from ArcMap (or ArcCatalog) to ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618387#M74284</link>
      <description>&lt;P&gt;Something to consider:&lt;BR /&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/conversion/feature-class-to-feature-class.htm" target="_blank" rel="noopener"&gt;Feature Class to Feature Class conversion&lt;/A&gt; has been deprecated for a while. Esri replaced that with the new &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/conversion/export-features.htm" target="_blank" rel="noopener"&gt;Export Features tool&lt;/A&gt; an iteration or two before your Pro version. Although legacy tools may still be functional, try the new Export Features tool and see if the behavior improves.&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2025 20:49:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618387#M74284</guid>
      <dc:creator>David_Lindsey</dc:creator>
      <dc:date>2025-05-26T20:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Export feature class from ArcMap (or ArcCatalog) to ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618487#M74285</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/780461"&gt;@DN_GIS_Analyst&lt;/a&gt;&amp;nbsp;it looks like your Enterprise Geodatabase is using ArcFM?&amp;nbsp; Or, possibly some other customization that is not supported in ArcGIS Pro.&amp;nbsp; I would recommend copying all data to a File Geodatabase via ArcMap, and then paste into a new Enterprise Geodatabase.&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 11:28:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1618487#M74285</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2025-05-27T11:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Export feature class from ArcMap (or ArcCatalog) to ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1619051#M74296</link>
      <description>&lt;P&gt;I discovered that ArcMap uses ArcFM objects, so in order to use them, ArcFM Convertor tool is needed to convert them into ESRI objects. I didn't know about this until I had a conversation with someone from IT GIS team. Fortunately, they already had made conversion a part of their QA process but never communicated that to me until I talked about my trouble. So, it's been resolved.&lt;/P&gt;</description>
      <pubDate>Wed, 28 May 2025 19:35:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-feature-class-from-arcmap-or-arccatalog-to/m-p/1619051#M74296</guid>
      <dc:creator>DN_GIS_Analyst</dc:creator>
      <dc:date>2025-05-28T19:35:03Z</dc:date>
    </item>
  </channel>
</rss>

