<?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: Script Tool - Works on desktop but not on citrix in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/script-tool-works-on-desktop-but-not-on-citrix/m-p/243817#M18938</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you have to set the ArcGIS Desktop License by this&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://support.esri.com/en/technical-article/000011374" title="https://support.esri.com/en/technical-article/000011374"&gt;How To: License ArcGIS Desktop on Citrix&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Mar 2018 13:39:44 GMT</pubDate>
    <dc:creator>PanagiotisPapadopoulos</dc:creator>
    <dc:date>2018-03-23T13:39:44Z</dc:date>
    <item>
      <title>Script Tool - Works on desktop but not on citrix</title>
      <link>https://community.esri.com/t5/python-questions/script-tool-works-on-desktop-but-not-on-citrix/m-p/243816#M18937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a small script tool that works fine in desktop version of arcmap but when I try to run it from the catalog tab in the citrix version of arcmap I get the following error:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="399688" alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/399688_CSL.PNG" style="width: 620px; height: 420px;" /&gt;&lt;/P&gt;&lt;P&gt;I found the following link related to the error 000824:&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en/technical-article/000013100" rel="nofollow noopener noreferrer" target="_blank"&gt;https://support.esri.com/en/technical-article/000013100&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding the arcpy.CheckOutExtension makes no difference to the error.&lt;/P&gt;&lt;P&gt;Here is the code for the script:&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

locno &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetParameterAsText&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;
year &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; locno&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;7&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
inFc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"//work/work/plan/luam/1p2007/"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; year &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"/"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; locno &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"/data_for_item.gdb|data/proposed_LOC_polygon"&lt;/SPAN&gt;
outFc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"//work/work/plan/luam/1p2007/"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; year &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"/"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; locno &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"/data_for_item.gdb|data/site_location"&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddMessage&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'in: '&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; inFc&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddMessage&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'out: '&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; outFc&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CheckOutExtension&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'AgendaMapping'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;FeatureToPoint_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inFc&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;outFc&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wonder if it could have anything to do with the licensing level that I may have for arcmap citrix? I'm just taking a guess on this based on the "The tool is not licensed" comment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any thoughts appreciated.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:10:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/script-tool-works-on-desktop-but-not-on-citrix/m-p/243816#M18937</guid>
      <dc:creator>ChrisHolmes</dc:creator>
      <dc:date>2021-12-11T12:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Script Tool - Works on desktop but not on citrix</title>
      <link>https://community.esri.com/t5/python-questions/script-tool-works-on-desktop-but-not-on-citrix/m-p/243817#M18938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you have to set the ArcGIS Desktop License by this&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://support.esri.com/en/technical-article/000011374" title="https://support.esri.com/en/technical-article/000011374"&gt;How To: License ArcGIS Desktop on Citrix&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2018 13:39:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/script-tool-works-on-desktop-but-not-on-citrix/m-p/243817#M18938</guid>
      <dc:creator>PanagiotisPapadopoulos</dc:creator>
      <dc:date>2018-03-23T13:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Script Tool - Works on desktop but not on citrix</title>
      <link>https://community.esri.com/t5/python-questions/script-tool-works-on-desktop-but-not-on-citrix/m-p/243818#M18939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, I’ll check it out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2018 13:51:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/script-tool-works-on-desktop-but-not-on-citrix/m-p/243818#M18939</guid>
      <dc:creator>ChrisHolmes</dc:creator>
      <dc:date>2018-03-23T13:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Script Tool - Works on desktop but not on citrix</title>
      <link>https://community.esri.com/t5/python-questions/script-tool-works-on-desktop-but-not-on-citrix/m-p/243819#M18940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Figured it out. It has to do with the license level running on our server vs my desktop. I have advanced license on my desktop, they have standard license running on our server. arcpy&lt;SPAN&gt;.&lt;/SPAN&gt;FeatureToPoint_management requires advanced license. That's why it worked on my desktop but not on the server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would be nice to find a list of what license level is required for all functions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 14:38:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/script-tool-works-on-desktop-but-not-on-citrix/m-p/243819#M18940</guid>
      <dc:creator>ChrisHolmes</dc:creator>
      <dc:date>2018-04-03T14:38:25Z</dc:date>
    </item>
  </channel>
</rss>

