<?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 Add Feature Class to Map in ArcGIS Pro in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64852#M5322</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I&amp;nbsp;add a feature class from an SDE to a Map in Pro?&amp;nbsp;This is where most of our data is stored.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I've tried:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
p &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISProject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"CURRENT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
map &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; p&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listMaps&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#this returned a ValueError&lt;/SPAN&gt;
map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;addLayer&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"Database Connections\path\to\gisedit.DBO.Address_Points"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 

&lt;SPAN class="comment token"&gt;#this returned a RuntimeError&lt;/SPAN&gt;
map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;addDataFromPath&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"Database Connections\path\to\gisedit.DBO.Address_Points"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the methods for using classes seem to be referencing layer files, and nowhere do I see a reference to feature classes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/arcpy/mapping/alphabeticallistofclasses.htm#GUID-7BA5DCF9-FEA6-4358-BE54-67719038CD88" title="http://pro.arcgis.com/en/pro-app/arcpy/mapping/alphabeticallistofclasses.htm#GUID-7BA5DCF9-FEA6-4358-BE54-67719038CD88" rel="nofollow noopener noreferrer" target="_blank"&gt;Alphabetical list of arcpy.mp classes—ArcPy | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT:&lt;/P&gt;&lt;P&gt;The confusing thing is that when feature classes from the SDE are in the Map they're referred to as layers. The CURRENT project I'm testing on already has two feature classes from an SDE in it. You can list them with the following:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; lyrname &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyrname&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;name&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 22:29:54 GMT</pubDate>
    <dc:creator>JaredPilbeam2</dc:creator>
    <dc:date>2021-12-10T22:29:54Z</dc:date>
    <item>
      <title>Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64852#M5322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I&amp;nbsp;add a feature class from an SDE to a Map in Pro?&amp;nbsp;This is where most of our data is stored.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I've tried:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
p &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISProject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"CURRENT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
map &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; p&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listMaps&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#this returned a ValueError&lt;/SPAN&gt;
map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;addLayer&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"Database Connections\path\to\gisedit.DBO.Address_Points"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; 

&lt;SPAN class="comment token"&gt;#this returned a RuntimeError&lt;/SPAN&gt;
map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;addDataFromPath&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"Database Connections\path\to\gisedit.DBO.Address_Points"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the methods for using classes seem to be referencing layer files, and nowhere do I see a reference to feature classes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/arcpy/mapping/alphabeticallistofclasses.htm#GUID-7BA5DCF9-FEA6-4358-BE54-67719038CD88" title="http://pro.arcgis.com/en/pro-app/arcpy/mapping/alphabeticallistofclasses.htm#GUID-7BA5DCF9-FEA6-4358-BE54-67719038CD88" rel="nofollow noopener noreferrer" target="_blank"&gt;Alphabetical list of arcpy.mp classes—ArcPy | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT:&lt;/P&gt;&lt;P&gt;The confusing thing is that when feature classes from the SDE are in the Map they're referred to as layers. The CURRENT project I'm testing on already has two feature classes from an SDE in it. You can list them with the following:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; lyrname &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyrname&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;name&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:29:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64852#M5322</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2021-12-10T22:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64853#M5323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From the interactive Python window in ArcGIS Pro, the following code works for me, i.e., adds a feature class as a new layer in an open map window:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy

fc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# path to feature class&lt;/SPAN&gt;

p &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISProject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"CURRENT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
map &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; p&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listMaps&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;addDataFromPath&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fc&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Layer object at &lt;SPAN class="number token"&gt;0x000002549A35FF28&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you getting errors?&amp;nbsp; What version of Pro are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:29:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64853#M5323</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-10T22:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64854#M5324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using Pro 2.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you look at line 9 above that's what I did pretty much (also noted the errors above)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is your feature class coming from a FGDB? Because I'm able to add a feature class from a FGDB. The thing is I'm trying to bring in a feature class from an SDE.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2019 20:54:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64854#M5324</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2019-01-29T20:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64855#M5325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, FGDB feature class.&amp;nbsp; Regarding your error, it is helpful to provide the full error with traceback.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2019 21:37:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64855#M5325</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-01-29T21:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64856#M5326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, Thanks. I'll have to get back to this on Thursday. Our building is being closed because of the cold weather.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2019 21:49:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64856#M5326</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2019-01-29T21:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64857#M5327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joshua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ran the same few lines of code that you have, but instead I'm directing the path to a Feature Class in an .SDE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the full error:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Traceback (most recent call last):
  File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;
  File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\_mp.py", line 1248, in addDataFromPath
    return convertArcObjectToPythonObject(self._arc_object.addDataFromPath(*gp_fixargs((data_path,), True)))
RuntimeError‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:30:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64857#M5327</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2021-12-10T22:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64858#M5328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your original post, it looked like you are using the 'Database Connections' ArcGIS application alias.&amp;nbsp; Have you tried specifying the full Windows file system path to the SDE connection file and feature class?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2019 20:53:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64858#M5328</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-01-31T20:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64859#M5329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that's correct. I copied the path from ArcCatalog. This path is what I used in ArcGIS for Desktop Arcpy scripts and it always worked fine. I'm not sure how to specify the full Windows file system path?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2019 21:40:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64859#M5329</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2019-01-31T21:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64860#M5330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will it matter, &lt;SPAN style="text-decoration: line-through;"&gt;possibly not&lt;/SPAN&gt; it could.&amp;nbsp; Since the effort to specify the full path is trivial, it is good to test it to make sure the issue isn't related. 'Database Connections' is an application-level alias, and ArcGIS Pro doesn't have a similar construct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried using a newer version of Pro?&amp;nbsp; Pro 2.0 is very old by Pro standards, and Esri has been addressing issues in 2.2.x and 2.3 with Oracle enterprise geodatabases.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2019 21:49:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64860#M5330</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-01-31T21:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Add Feature Class to Map in ArcGIS Pro</title>
      <link>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64861#M5331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was working on the same problem with a SQL enterprise geodatabase. I had to use the fully qualified feature class name for it to be added to the map:&amp;nbsp; DatabaseName.SchemaName.FeatureClassName.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 00:04:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-feature-class-to-map-in-arcgis-pro/m-p/64861#M5331</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2019-11-25T00:04:01Z</dc:date>
    </item>
  </channel>
</rss>

