<?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 SearchCursor on Web Feature Layer in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/searchcursor-on-web-feature-layer/m-p/1139869#M7072</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is there a specific syntax to use&amp;nbsp;SearchCursor with a web feature layer in an arcgis pro map ?&lt;/P&gt;&lt;P&gt;And after save after edited...&lt;/P&gt;&lt;P&gt;Or another Strategy ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;with arcpy.da.SearchCursor(fc_name, ["objectid", "globalid", "SHAPE@"]) as ag_search_cursor:


---------------------------------------------------------------------------
RuntimeError                              Traceback (most recent call last)
In  [42]:
Line 3:     with arcpy.da.SearchCursor(fc_name, ["objectid", "globalid", "SHAPE@"]) as ag_search_cursor:

RuntimeError: cannot open 'lineaire'
---------------------------------------------------------------------------&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;c Thanks for your help&lt;/P&gt;&lt;P&gt;Rémy&lt;/P&gt;</description>
    <pubDate>Wed, 02 Feb 2022 15:39:43 GMT</pubDate>
    <dc:creator>Rémy_Gourrat</dc:creator>
    <dc:date>2022-02-02T15:39:43Z</dc:date>
    <item>
      <title>SearchCursor on Web Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/searchcursor-on-web-feature-layer/m-p/1139869#M7072</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is there a specific syntax to use&amp;nbsp;SearchCursor with a web feature layer in an arcgis pro map ?&lt;/P&gt;&lt;P&gt;And after save after edited...&lt;/P&gt;&lt;P&gt;Or another Strategy ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;with arcpy.da.SearchCursor(fc_name, ["objectid", "globalid", "SHAPE@"]) as ag_search_cursor:


---------------------------------------------------------------------------
RuntimeError                              Traceback (most recent call last)
In  [42]:
Line 3:     with arcpy.da.SearchCursor(fc_name, ["objectid", "globalid", "SHAPE@"]) as ag_search_cursor:

RuntimeError: cannot open 'lineaire'
---------------------------------------------------------------------------&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;c Thanks for your help&lt;/P&gt;&lt;P&gt;Rémy&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 15:39:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/searchcursor-on-web-feature-layer/m-p/1139869#M7072</guid>
      <dc:creator>Rémy_Gourrat</dc:creator>
      <dc:date>2022-02-02T15:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: SearchCursor on Web Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/searchcursor-on-web-feature-layer/m-p/1140148#M7076</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/467236"&gt;@Rémy_Gourrat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;This indicates that the layer (fc_name) is not accessible from ArcGIS Pro's python.&lt;/P&gt;&lt;P&gt;You can do a simple test such as buffering the same layer with python to double check. If still not accessible, you need to make sure you have the permissions to access the feature layer from your machine.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Feb 2022 01:23:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/searchcursor-on-web-feature-layer/m-p/1140148#M7076</guid>
      <dc:creator>MehdiPira1</dc:creator>
      <dc:date>2022-02-03T01:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: SearchCursor on Web Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/searchcursor-on-web-feature-layer/m-p/1141058#M7091</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/43250"&gt;@MehdiPira1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it was the right way.&lt;/P&gt;&lt;P&gt;I designated my layer like this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;fc_name = "lineaire"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when i add my feature layer to my map, the webfeature layer become a layer group.&lt;/P&gt;&lt;P&gt;So now, i must design my layer like this and it's running now :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;fc_name = "myWebFetaureLayer_Name\lineaire"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Feb 2022 14:27:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/searchcursor-on-web-feature-layer/m-p/1141058#M7091</guid>
      <dc:creator>Rémy_Gourrat</dc:creator>
      <dc:date>2022-02-06T14:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: SearchCursor on Web Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/searchcursor-on-web-feature-layer/m-p/1141449#M7097</link>
      <description>&lt;P&gt;Good to hear that&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/467236"&gt;@Rémy_Gourrat&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Feb 2022 00:55:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/searchcursor-on-web-feature-layer/m-p/1141449#M7097</guid>
      <dc:creator>MehdiPira1</dc:creator>
      <dc:date>2022-02-08T00:55:47Z</dc:date>
    </item>
  </channel>
</rss>

