<?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: Adding feature class and applying symbology in ArcGIS Pro using arcpy in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/1119795#M48229</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I'm new to Python but I think I may have (somewhat accidentally) found a workaround for those encountering this error within a Python Toolbox. I saved my output symbology template (.lyrx) in the same folder as my Python Toolbox. After defining my parameters in the getParameterInfo(self) method of the tool, I added the following 2 lines:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fig 6.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/28147iE90A7DB78B796FD4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Fig 6.png" alt="Fig 6.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When I ran the tool, the correct symbology was applied to the output. This worked on my own laptop and my University's remote server, so I feel confident that it's a viable solution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The difference that I've noticed is that I applied they symbology in the getParameterInfo method rather than the execute method of the tool.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I ran the tool countless times (and received countless errors) over a few days when trying to update my output symbology. During my trial and error, I do recall receiving an "Attribute Error: 'str' has no attribute 'symbology'". I still don't understand why it "output_param.symbology" worked this time and not previous times, but like I said, I'm new to programming.&lt;/P&gt;</description>
    <pubDate>Wed, 24 Nov 2021 05:47:42 GMT</pubDate>
    <dc:creator>AndrewTFerguson</dc:creator>
    <dc:date>2021-11-24T05:47:42Z</dc:date>
    <item>
      <title>Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56848#M2384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class=""&gt;&lt;P&gt;Using an arcpy script run from a toolbox, I want to import a feature class from a geodatabase into an ArcPro map and then symbolise that layer based on a lyrx file stored on disk. Here is a simplified version:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class=""&gt;import&lt;/SPAN&gt;&lt;SPAN class=""&gt; arcpy&lt;/SPAN&gt;&lt;SPAN class=""&gt;,&lt;/SPAN&gt;&lt;SPAN class=""&gt; os 
aprx &lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt; arcpy&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;mp&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;ArcGISProject&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;'CURRENT'&lt;/SPAN&gt;&lt;SPAN class=""&gt;)
&lt;/SPAN&gt;&lt;SPAN class=""&gt;m &lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt; aprx&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;listMaps&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;'*'&lt;/SPAN&gt;&lt;SPAN class=""&gt;)[&lt;/SPAN&gt;&lt;SPAN class=""&gt;0&lt;/SPAN&gt;&lt;SPAN class=""&gt;]
&lt;/SPAN&gt;&lt;SPAN class=""&gt;outputWorkspace &lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt; r&lt;/SPAN&gt;&lt;SPAN class=""&gt;"C:\Path\To\MyProject.gdb"
&lt;/SPAN&gt;&lt;SPAN class=""&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;env&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;workspace &lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt; outputWorkspace 
out_fc &lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt; &lt;/SPAN&gt;&lt;SPAN class=""&gt;"fc_data"
&lt;/SPAN&gt;&lt;SPAN class=""&gt;out_fc_p &lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt; os&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;path&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;join&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;outputWorkspace&lt;/SPAN&gt;&lt;SPAN class=""&gt;,&lt;/SPAN&gt;&lt;SPAN class=""&gt; out_fc&lt;/SPAN&gt;&lt;SPAN class=""&gt;)
&lt;/SPAN&gt;&lt;SPAN class=""&gt;ref_lyrx &lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt; r&lt;/SPAN&gt;&lt;SPAN class=""&gt;"C:\Path\To\symbol_ref.lyrx"
&lt;/SPAN&gt;&lt;SPAN class=""&gt;m&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;addDataFromPath&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;out_fc_p&lt;/SPAN&gt;&lt;SPAN class=""&gt;)
&lt;/SPAN&gt;&lt;SPAN class=""&gt;out_fc_lyr &lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt; m&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;listLayers&lt;/SPAN&gt;&lt;SPAN class=""&gt;()[&lt;/SPAN&gt;&lt;SPAN class=""&gt;0&lt;/SPAN&gt;&lt;SPAN class=""&gt;]
&lt;/SPAN&gt;&lt;SPAN class=""&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;ApplySymbologyFromLayer_management&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;out_fc_lyr&lt;/SPAN&gt;&lt;SPAN class=""&gt;,&lt;/SPAN&gt;&lt;SPAN class=""&gt; ref_lyrx&lt;/SPAN&gt;&lt;SPAN class=""&gt;)

&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The script completes without error but no visible change is made to the symbology. Is this a bug? I've reviewed many similar questions but have been unable to resolve this.&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:09:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56848#M2384</guid>
      <dc:creator>SeanHough</dc:creator>
      <dc:date>2021-12-10T22:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56849#M2385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Based on the help topic ...&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/apply-symbology-from-layer.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/apply-symbology-from-layer.htm"&gt;Apply Symbology From Layer—Data Management toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the two optional parameters aren't specified&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #4c4c4c; font-family: 'Consolas','Andale Mono','Lucida Console','Monaco',monospace; font-size: 17px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre-wrap; word-spacing: 0px; word-wrap: break-word;"&gt;ApplySymbologyFromLayer_management (in_layer, in_symbology_layer, {symbology_fields}, {update_symbology})&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;which makes me wonder what the layer looks like before and after if this were done manually to ensure that the limitations of the 'immediate mode' are indeed being met (ie featureclass type etc).&lt;/P&gt;&lt;P&gt;Also the refreshActiveView no longer exists&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/arcpy/mapping/migratingfrom10xarcpymapping.htm" title="http://pro.arcgis.com/en/pro-app/arcpy/mapping/migratingfrom10xarcpymapping.htm"&gt;Migrating from arcpy.mapping to ArcGIS Pro—ArcPy | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which would be the normal go-to&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 07:51:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56849#M2385</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-06-14T07:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56850#M2386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sharing with &lt;A href="https://community.esri.com/space/2145"&gt;Python&lt;/A&gt;‌ for broader awareness.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 15:46:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56850#M2386</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-06-14T15:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56851#M2387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying it initially using only single symbol to match the symbology of the reference lyrx file so I didn't think the optional fields were required. Running it in immediate mode has the same effect as running it from the toolbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunate that&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;refreshActiveView&lt;SPAN&gt;&amp;nbsp;no longer exists.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;Previously in the desktop version I would use&amp;nbsp;arcpy.mapping.UpdateLayer to update symbology of fields added to the TOC but that option too seems to have disappeared with the upgrade to Pro...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 22:54:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56851#M2387</guid>
      <dc:creator>SeanHough</dc:creator>
      <dc:date>2018-06-14T22:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56852#M2388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sean&lt;/P&gt;&lt;P&gt;I'm having the same problem with&amp;nbsp;arcpy.ApplySymbologyFromLayer_management in ArcGIS Pro 2.1. You find any solution to the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2018 22:17:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56852#M2388</guid>
      <dc:creator>KeithMiller4</dc:creator>
      <dc:date>2018-06-18T22:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56853#M2389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not yet I'm afraid, but I'll keep trying to find a work around.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried also first converting the fc to a layer using&amp;nbsp;arcpy.MakeFeatureLayer_management before adding to the map with addLayer and then using&amp;nbsp;arcpy.ApplySymbologyFromLayer_management but the same thing happened: script completes successfully without error but no visible change is made.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2018 22:41:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56853#M2389</guid>
      <dc:creator>SeanHough</dc:creator>
      <dc:date>2018-06-18T22:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56854#M2390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same here, and I'm seeing the same problem with applying symbology to rasters too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2018 22:50:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56854#M2390</guid>
      <dc:creator>KeithMiller4</dc:creator>
      <dc:date>2018-06-18T22:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56855#M2391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;an issue with symbology from layer was reported on Beta 2.2 but there is mixed reports, you might wish to report this to tech support&lt;/P&gt;&lt;P&gt;They give an associated case which might be useful&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; font-family: 'Roboto',sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Esri Case #02133585 - Applying symbology from layer does not work correctly&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2018 22:57:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56855#M2391</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-06-18T22:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56856#M2392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sean, based on the details it seems you are running into this defect:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;BUG-000108497:&lt;/STRONG&gt; Running Apply Layer Symbology as a script in the Python window does not update the symbology in the map.&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="color: #000000;"&gt;A fix is in the Product Plan - please contact Esri Support Services if you'd like to have a case attached to the Defect log as this would allow you to more closely monitor the status of the defect.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a quirky one and based on my testing I'd say the most reliable way to fix this is to clear the Display Cache via&amp;nbsp;&lt;STRONG&gt;Project &amp;gt; Options &amp;gt; Display&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can fix this programmatically though:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Some have reported success with&amp;nbsp;&lt;EM&gt;updateConnectionProperties&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;You can also insert a copy of the layer and remove the original&amp;nbsp;using&amp;nbsp;&lt;EM&gt;insertLayer&lt;/EM&gt; and &lt;EM&gt;removeLayer&lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2018 18:03:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56856#M2392</guid>
      <dc:creator>EarlMedina</dc:creator>
      <dc:date>2018-06-29T18:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56857#M2393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Updating the connection (same input and output) worked for me, thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;datapath &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'C:\\temp'&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; os
aprx &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;
m &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; aprx&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listMaps&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string 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;
lyr &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; m&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;addDataFromPath&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;datapath&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'wrfout_d3.2015081400.f13.0000.UV10.tif'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
lyr0 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; m&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="number token"&gt;0&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;lyr0&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
asfl &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ApplySymbologyFromLayer_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr0&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;datapath&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'wind_barbs_uv.lyrx'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
in_dict &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'dataset'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'wrfout_d3.2015081400.f13.0000.UV10.tif'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'database'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; datapath&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
out_dict &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'dataset'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'wrfout_d3.2015081400.f13.0000.UV10.tif'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'database'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; datapath&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
lyr0&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;updateConnectionProperties&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;in_dict&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; out_dict&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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:09:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56857#M2393</guid>
      <dc:creator>DavidAskov1</dc:creator>
      <dc:date>2021-12-10T22:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56858#M2394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both of these programmatic fixes work for me in the Python window within ArcGIS Pro. However, I can get neither of them to work as part of a Python Toolbox tool script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2018 22:30:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56858#M2394</guid>
      <dc:creator>KeithMiller4</dc:creator>
      <dc:date>2018-07-02T22:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56859#M2395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interestingly I hit this issue whilst using the Apply Symboogy from layer GP tool within model builder. Setting the output as a parameter solved the issue. I'm not sure what the pythonic equivalent to that would be though&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2018 09:52:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56859#M2395</guid>
      <dc:creator>RichardHowe</dc:creator>
      <dc:date>2018-10-05T09:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56860#M2396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The&amp;nbsp;updateConnectionProperties solution&amp;nbsp;did not work for me when running as a script. This workaround does:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;current_project = arcpy.mp.ArcGISProject(&lt;SPAN style="color: #008000; font-weight: bold;"&gt;"CURRENT"&lt;/SPAN&gt;)
current_map = current_project.listMaps()[&lt;SPAN style="color: #0000ff;"&gt;0&lt;/SPAN&gt;]
symbology_layer = SymbologyPath + &lt;SPAN style="color: #008000; font-weight: bold;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;\\&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;FLO_scaled_graduated_symbol.lyrx'
&lt;/SPAN&gt;new_lyr_file = arcpy.mp.LayerFile(symbology_layer)
new_lyr = new_lyr_file.listLayers()[&lt;SPAN style="color: #0000ff;"&gt;0&lt;/SPAN&gt;]
old_lyr = current_map.listLayers(original_network)[&lt;SPAN style="color: #0000ff;"&gt;0&lt;/SPAN&gt;]
old_lyr_name = old_lyr.name
new_lyr.updateConnectionProperties(new_lyr.connectionProperties, old_lyr.connectionProperties)
new_lyr.name = old_lyr_name
new_lyr_file.save()
current_map.insertLayer(old_lyr, new_lyr_file)
current_map.removeLayer(old_lyr)&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I want to publish this tool and I cannot because as far as I can tell webtools cannot use "CURRENT".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way these are the other methods I have tried, none of which work in Pro but work fine in ArcMap:&lt;/P&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;arcpy.ApplySymbologyFromLayer_management(inputLayer, symbologyLayer)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Using derived output (e.g. parameter 2):&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;arcpy.SetParameterAsText(2, &lt;SPAN&gt;inputLayer&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;params = arcpy.GetParameterInfo() &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;params[&lt;/SPAN&gt;&lt;SPAN class="" style="color: #1c00cf;"&gt;2&lt;/SPAN&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;].symbology = &lt;SPAN&gt;symbologyLayer&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;&lt;SPAN&gt;Using derived output and&amp;nbsp;pointing to the symbology file when setting script tool parameters.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:09:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56860#M2396</guid>
      <dc:creator>MichaelLowry2</dc:creator>
      <dc:date>2021-12-10T22:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56861#M2397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for sharing this workaround, Michael. I don't know how many hours I would have had to spend to find the same combination/order of executing the different procedures....probably never would have found it....sometimes I feel like I keep running into limitations/bugs even though ArcGIS Pro is getting 4 years old....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2019 15:48:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56861#M2397</guid>
      <dc:creator>MartinHolleufer-Sørensen</dc:creator>
      <dc:date>2019-02-19T15:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56862#M2398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Michael, this worked for me within my python toolbox. I'm just posting a slightly more complete sample which includes the&amp;nbsp;ApplySymbologyFromLayer function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.AddMessage(&lt;SPAN style="color: #008080; font-weight: bold;"&gt;'Apply style'&lt;/SPAN&gt;)
&lt;PRE class="lia-code-sample line-numbers language-none"&gt;current_project = arcpy.mp.ArcGISProject(&lt;SPAN style="color: #008000; border: 0px; font-weight: bold; margin: 0px;"&gt;"CURRENT"&lt;/SPAN&gt;)
ags_map = current_project.listMaps()[&lt;SPAN style="color: #0000ff; border: 0px; font-weight: inherit; margin: 0px;"&gt;0&lt;/SPAN&gt;]&lt;/PRE&gt;&lt;BR /&gt;old_lyr = ags_map.addDataFromPath(file_path)&lt;BR /&gt;arcpy.management.ApplySymbologyFromLayer(old_lyr, &lt;SPAN style="color: #008080; font-weight: bold;"&gt;r"C:\Temp\sourcelayer.lyrx"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080; font-weight: bold;"&gt;"VALUE_FIELD FIL_COLOUR FIL_COLOUR"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080; font-weight: bold;"&gt;"UPDATE"&lt;/SPAN&gt;)&lt;BR /&gt;arcpy.SaveToLayerFile_management(f.output_name, &lt;SPAN style="color: #008080; font-weight: bold;"&gt;r"C:\Temp\templayer.lyr"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080; font-weight: bold;"&gt;"RELATIVE"&lt;/SPAN&gt;)&lt;BR /&gt;new_lyr_file = arcpy.mp.LayerFile(&lt;SPAN style="color: #008080; font-weight: bold; "&gt;r"C:\Temp\&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-weight: bold;"&gt;templayer&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-weight: bold;"&gt;.lyrx"&lt;/SPAN&gt;)&lt;BR /&gt;new_lyr = new_lyr_file.listLayers()[&lt;SPAN style="color: #0000ff;"&gt;0&lt;/SPAN&gt;]&lt;BR /&gt;old_lyr_name = old_lyr.name&lt;BR /&gt;new_lyr.updateConnectionProperties(new_lyr.connectionProperties, old_lyr.connectionProperties)&lt;BR /&gt;new_lyr.name = old_lyr_name&lt;BR /&gt;new_lyr_file.save()&lt;BR /&gt;ags_map.insertLayer(old_lyr, new_lyr_file)&lt;BR /&gt;ags_map.removeLayer(old_lyr)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:10:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56862#M2398</guid>
      <dc:creator>DavidWilton</dc:creator>
      <dc:date>2021-12-10T22:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56863#M2399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I asked to be attached to the bug&amp;nbsp;BUG-000108497. It has been closed as a duplicate of&amp;nbsp;&lt;A class="" href="https://my.esri.com/#/support/bugs/BUG-000106281" title="https://my.esri.com/#/support/bugs/BUG-000106281"&gt;https://my.esri.com/#/support/bugs/BUG-000106281&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is strange because&amp;nbsp;BUG-000106281 sites the pro SDK and was closed at 2.3.0. I have supplied a sample and will try to ensure a bug gets created and is not closed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Feb 2019 05:41:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56863#M2399</guid>
      <dc:creator>DavidWilton</dc:creator>
      <dc:date>2019-02-26T05:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56864#M2400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background: white;"&gt;BUG-000106281&lt;/SPAN&gt;&amp;nbsp;about this issue is apparently fixed for Pro SDK at release 2.3,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background: white;"&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/get-started/release-notes.htm" style="color: #2989c5; text-decoration: none;"&gt;https://pro.arcgis.com/en/pro-app/get-started/release-notes.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background: white;"&gt;but I still cannot apply symbology from a layer file to a layer in my map through a script tool in Pro.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background: white;"&gt;I have tried both call methods:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background: white;"&gt;arcpy.management.ApplySymbologyFromLayer(target_layer, symbology_layer)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background: white;"&gt;arcpy.ApplySymbologyFromLayer_management(target_layer, symbology_layer)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background: white;"&gt;And I have tried .lyr and .lyrx&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background: white;"&gt;I know it is a problem with Pro, because if I run the exact same script tool in ArcMap (10.3) it works properly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background: white;"&gt;Any information or suggestions?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2019 07:45:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56864#M2400</guid>
      <dc:creator>MichaelLowry2</dc:creator>
      <dc:date>2019-03-08T07:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56865#M2401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See my comment below. I still have a case open. I think it may have been closed for the net sdk but not python. Yet for some reason the complaint about python was attached as a duplicate of the pro issue and closed with it which is pretty frustrating. I don’t think two cases using different technologies should ever be considered a duplicate personally but not much we can do. I’m still pushing my case&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 19px;"&gt;BUG-000119907 - The Apply Symbology From Layer tool (arcpy.ApplySymbologyFromLayer_management) does not work if used in a python script from the tool box in ArcGIS Pro 2.3&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2019 14:51:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56865#M2401</guid>
      <dc:creator>DavidWilton</dc:creator>
      <dc:date>2019-03-08T14:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56866#M2402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have added an updated to this case after receiving a response from Esri:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/thread/216962-apply-lyrx-file-symbology-via-python"&gt;https://community.esri.com/thread/216962-apply-lyrx-file-symbology-via-python&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2019 23:47:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56866#M2402</guid>
      <dc:creator>DavidWilton</dc:creator>
      <dc:date>2019-08-26T23:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Adding feature class and applying symbology in ArcGIS Pro using arcpy</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56867#M2403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning. I have been working on applying symbology from layer without results. This needs to be implemented in a stand alone python script. Ultimately it will have to apply many lyrx files to matching feature classes, however I can not even get this to apply a single feature class on test data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has this bug been fixed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know as soon as you can, thank you!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Justine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2020 14:53:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/adding-feature-class-and-applying-symbology-in/m-p/56867#M2403</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-03-25T14:53:02Z</dc:date>
    </item>
  </channel>
</rss>

