<?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: ApplySymbologyFromLayer Error 000800 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1153296#M64035</link>
    <description>&lt;P&gt;Did you try a simpler variant&lt;/P&gt;&lt;P&gt;... ("all_stations_joined", "all_stations_symbology_lyrx",&amp;nbsp; [["VALUE_FIELD", "#", "FinishedCallStation"]] ...&lt;/P&gt;&lt;P&gt;And the full paths to the inputs should be defined as variables.&lt;/P&gt;</description>
    <pubDate>Mon, 14 Mar 2022 10:42:02 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2022-03-14T10:42:02Z</dc:date>
    <item>
      <title>ApplySymbologyFromLayer Error 000800</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1153267#M64034</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="apply symbology error.PNG" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/36237i8EC21CC99BA0D99E/image-size/large?v=v2&amp;amp;px=999" role="button" title="apply symbology error.PNG" alt="apply symbology error.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The attached photo and below script shows the line of code that I am getting an error with. I am trying to run arcpy.management.ApplySymbologyFromLayer in arcpy. And am getting an error saying that "the value is not a member of " my shapefile. The name of the column I want to use to symbolize is "FinishedCallStation" for both the layer file and the shapefile. The error message shows that the column exists in my shapefile, so I don't know why I keep getting the 000800 error.&lt;/P&gt;&lt;P&gt;Below are 3 iterations of this line of code I've tried, but am getting the same "value is not a member" error for.&lt;/P&gt;&lt;P&gt;Version 1:&lt;/P&gt;&lt;P&gt;all_stations_visits = arcpy.management.ApplySymbologyFromLayer(in_layer=all_stations_joined, in_symbology_layer=all_stations_symbology_lyrx, symbology_fields=[["VALUE_FIELD", "FinishedCallStation", "&lt;STRONG&gt;FinishedCallStation&lt;/STRONG&gt;"]], update_symbology="MAINTAIN")[0]&lt;/P&gt;&lt;P&gt;Version 2:&lt;/P&gt;&lt;P&gt;all_stations_visits = arcpy.management.ApplySymbologyFromLayer(in_layer=all_stations_joined, in_symbology_layer=all_stations_symbology_lyrx, symbology_fields=[["VALUE_FIELD", "FinishedCallStation", "&lt;STRONG&gt;all_stations_joined.FinishedCallStation&lt;/STRONG&gt;"]], update_symbology="MAINTAIN")[0]&lt;/P&gt;&lt;P&gt;Version 3:&lt;/P&gt;&lt;P&gt;all_stations_visits = arcpy.management.ApplySymbologyFromLayer(in_layer=all_stations_joined, in_symbology_layer=all_stations_symbology_lyrx, symbology_fields=[["VALUE_FIELD", "&lt;STRONG&gt;all_stations_symbology_lyrx.FinishedCallStation", "all_stations_joined.FinishedCallStation&lt;/STRONG&gt;"]], update_symbology="MAINTAIN")[0]&lt;/P&gt;&lt;P&gt;I saw that there was a similar question to this from 2017 but I didn't see a solution marked and the suggestions did not work for me. &lt;A href="https://community.esri.com/t5/arcgis-pro-sdk-questions/building-proper-syntax-for-importing-lyr-symbology/m-p/817600#M2662" target="_blank"&gt;https://community.esri.com/t5/arcgis-pro-sdk-questions/building-proper-syntax-for-importing-lyr-symbology/m-p/817600#M2662&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Any help and assistance is appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 06:30:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1153267#M64034</guid>
      <dc:creator>GloriaDesanker</dc:creator>
      <dc:date>2022-03-14T06:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Error 000800</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1153296#M64035</link>
      <description>&lt;P&gt;Did you try a simpler variant&lt;/P&gt;&lt;P&gt;... ("all_stations_joined", "all_stations_symbology_lyrx",&amp;nbsp; [["VALUE_FIELD", "#", "FinishedCallStation"]] ...&lt;/P&gt;&lt;P&gt;And the full paths to the inputs should be defined as variables.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 10:42:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1153296#M64035</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-03-14T10:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Error 000800</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1153488#M64044</link>
      <description>&lt;P&gt;Hi Dan, thanks for the suggestion. I tried simplifying but I'm getting the same error. Also my arguments are being read in as paths, see below:&lt;/P&gt;&lt;P&gt;All_Call_Stations_gdb= path to my gdb&lt;/P&gt;&lt;P&gt;all_stations_joined = All_Call_Stations_gdb + "\\all_stations_joined"&lt;/P&gt;&lt;P&gt;all_stations_symbology_lyrx = "C:\\...\\all_stations_finished_symbology.lyrx"&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 19:12:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1153488#M64044</guid>
      <dc:creator>GloriaDesanker</dc:creator>
      <dc:date>2022-03-14T19:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Error 000800</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1153497#M64045</link>
      <description>&lt;P&gt;Does the input not need to be a layer?&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 19:37:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1153497#M64045</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2022-03-14T19:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Error 000800</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1154576#M64086</link>
      <description>&lt;P&gt;I realized that the visibility for the field I was trying to use to symbolize the feature layer. So I had turned the visibility off for &lt;STRONG&gt;all_stations_joined.FinishedCallStation&lt;/STRONG&gt; in the ArcPro attribute table and I guess that also impacted arcpy.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 23:15:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-error-000800/m-p/1154576#M64086</guid>
      <dc:creator>GloriaDesanker</dc:creator>
      <dc:date>2022-03-16T23:15:21Z</dc:date>
    </item>
  </channel>
</rss>

