<?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: Python Script tool in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/python-script-tool/m-p/1332836#M73511</link>
    <description>&lt;P&gt;You can easily create SQL expressions with the SqlExpression parameter type. Just set its dependency to the layer and ArcGIS automatically fills out the possible fields and values.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_0-1695320456016.png" style="width: 875px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81327iCC1F3CD740CCA08A/image-size/large?v=v2&amp;amp;px=999" role="button" title="JohannesLindner_0-1695320456016.png" alt="JohannesLindner_0-1695320456016.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1695320511918.png" style="width: 319px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81328iE8F9B10FE5CBEB23/image-size/large?v=v2&amp;amp;px=999" role="button" title="JohannesLindner_1-1695320511918.png" alt="JohannesLindner_1-1695320511918.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_2-1695320549075.png" style="width: 303px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81329i83BCD621509443E9/image-size/large?v=v2&amp;amp;px=999" role="button" title="JohannesLindner_2-1695320549075.png" alt="JohannesLindner_2-1695320549075.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Sep 2023 10:50:27 GMT</pubDate>
    <dc:creator>JohannesLindner</dc:creator>
    <dc:date>2023-09-27T10:50:27Z</dc:date>
    <item>
      <title>Python Script tool</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-script-tool/m-p/1332066#M73404</link>
      <description>&lt;P&gt;I have written a scripting tool for first time using python where I am filtering the feature set of a feature layer by applying filters on the fields in the attribute table of a feature Layer Also, Providing a feature layer as a parameter and input field having datatype Value Table and to perform filtering on the Feature Layer I need to generate SQL expression for which I need the data Type of particular field .&lt;BR /&gt;Is this approach fine or should I implement it in any other way&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81553i1AEDFD2AFBAAD2C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 953px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81554i4E1EAD4441F3F0B0/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2023 17:07:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-script-tool/m-p/1332066#M73404</guid>
      <dc:creator>abhishek_choudhary</dc:creator>
      <dc:date>2023-09-25T17:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script tool</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-script-tool/m-p/1332094#M73411</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/652281"&gt;@abhishek_choudhary&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;For your second parameter, you can create it as type Field and set the Dependency to the InputFeatureLayer (as you currently do).&amp;nbsp; This will provide a dropdown to select the field:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JakeSkinner_0-1695666687346.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81557iCB6414D0609D7F8D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JakeSkinner_0-1695666687346.png" alt="JakeSkinner_0-1695666687346.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2023 18:32:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-script-tool/m-p/1332094#M73411</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2023-09-25T18:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script tool</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-script-tool/m-p/1332836#M73511</link>
      <description>&lt;P&gt;You can easily create SQL expressions with the SqlExpression parameter type. Just set its dependency to the layer and ArcGIS automatically fills out the possible fields and values.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_0-1695320456016.png" style="width: 875px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81327iCC1F3CD740CCA08A/image-size/large?v=v2&amp;amp;px=999" role="button" title="JohannesLindner_0-1695320456016.png" alt="JohannesLindner_0-1695320456016.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1695320511918.png" style="width: 319px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81328iE8F9B10FE5CBEB23/image-size/large?v=v2&amp;amp;px=999" role="button" title="JohannesLindner_1-1695320511918.png" alt="JohannesLindner_1-1695320511918.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_2-1695320549075.png" style="width: 303px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81329i83BCD621509443E9/image-size/large?v=v2&amp;amp;px=999" role="button" title="JohannesLindner_2-1695320549075.png" alt="JohannesLindner_2-1695320549075.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Sep 2023 10:50:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-script-tool/m-p/1332836#M73511</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2023-09-27T10:50:27Z</dc:date>
    </item>
  </channel>
</rss>

