<?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: FeatureSet commands not working again in ArcGIS Field Maps Questions</title>
    <link>https://community.esri.com/t5/arcgis-field-maps-questions/featureset-commands-not-working-again/m-p/1012302#M145</link>
    <description>&lt;P&gt;Yes I had tried that already but no.&lt;/P&gt;&lt;P&gt;I heard back from the Field Maps team and they are seeing the same thing so they confirmed it as a bug and are looking into it.&amp;nbsp; They think it is something with field request messing up the SQL query.&lt;/P&gt;&lt;P&gt;Good news is offline my popup is super fast so I am ok for now.&amp;nbsp; Online it is taking 5-6 seconds on a iPad Pro and 13 on a regular iPad.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
    <pubDate>Thu, 24 Dec 2020 17:35:06 GMT</pubDate>
    <dc:creator>DougBrowning</dc:creator>
    <dc:date>2020-12-24T17:35:06Z</dc:date>
    <item>
      <title>FeatureSet commands not working again</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/featureset-commands-not-working-again/m-p/1011840#M128</link>
      <description>&lt;P&gt;The FeatureSet commands seem to have gone out again in the latest update to Field Maps.&amp;nbsp; Not sure when but all my test maps that were working are now broken.&lt;/P&gt;&lt;P&gt;I am going Production on this now and at the last hour nothing is working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code works in the web map great so I do not think that is it.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DougBrowning_0-1608663868159.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/2760iFD26FCBB2F2096A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DougBrowning_0-1608663868159.png" alt="DougBrowning_0-1608663868159.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But now in Field Maps all are Null or 0&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DougBrowning_1-1608663922602.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/2761i91A81AE07E2162E7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DougBrowning_1-1608663922602.png" alt="DougBrowning_1-1608663922602.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Sample code&lt;/P&gt;&lt;P&gt;DesignLat {expression/expr6}&lt;BR /&gt;var sql = "PointID = '" + $feature.PointID + "'";&lt;BR /&gt;var tbl = Filter(FeatureSetByName($map,"Points", ["DesignLat"], false), sql);&lt;BR /&gt;var val&lt;BR /&gt;for (var row in tbl) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;val = row.DesignLat&lt;BR /&gt;}&lt;BR /&gt;return val&lt;/P&gt;&lt;P&gt;Using an iPad Pro with the latest&amp;nbsp;&lt;/P&gt;&lt;P&gt;I really need this fixed since this project since I have a deadline.&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2020 19:51:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/featureset-commands-not-working-again/m-p/1011840#M128</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2020-12-22T19:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureSet commands not working again</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/featureset-commands-not-working-again/m-p/1011909#M132</link>
      <description>&lt;DIV&gt;Ok I may have tracked down the issue.&amp;nbsp; It breaks when I try to give it a field list.&amp;nbsp; But it only breaks on the app.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;This does not work&lt;/DIV&gt;&lt;DIV&gt;var sql = "PointID = '" + $feature.PointID + "'";&lt;DIV&gt;var tbl = Filter(FeatureSetByName($map,"Points", ['CollectCoreSubset1'], false), sql);&lt;/DIV&gt;&lt;DIV&gt;var val&lt;/DIV&gt;&lt;DIV&gt;for (var row in tbl) {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; val = row.CollectCoreSubset1&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;return val&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;But this does&lt;/DIV&gt;&lt;DIV&gt;var sql = "PointID = '" + $feature.PointID + "'";&lt;DIV&gt;var tbl = Filter(FeatureSetByName($map,"Points", ['*'], false), sql);&lt;/DIV&gt;&lt;DIV&gt;var val&lt;/DIV&gt;&lt;DIV&gt;for (var row in tbl) {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; val = row.CollectCoreSubset1&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;return val&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I also tried 2 fields and making a field a objectid but no.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I had just changed this to make the calls faster since my popup is getting slow.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Does this make sense then?&amp;nbsp; I found it on accident when I tried a diff expression.&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I tested with geometry true and false but no diff.&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;So it looks like something with listing fields breaks the app.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Well at least I can change my code for now.&amp;nbsp; Let me know what you find still as the calls will get slower returning all fields.&amp;nbsp; In fact my pop is now 5.5 seconds on a iPad Pro and 13 seconds on on a regular iPad!&amp;nbsp; Web map slowing down also.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Hope this helps someone.&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 22 Dec 2020 22:46:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/featureset-commands-not-working-again/m-p/1011909#M132</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2020-12-22T22:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureSet commands not working again</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/featureset-commands-not-working-again/m-p/1012097#M141</link>
      <description>&lt;P&gt;&lt;EM&gt;Might be &lt;SPAN&gt;because the field used by where clause is not requested, could you test with ['CollectCoreSubset1', 'PointID']?&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 17:01:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/featureset-commands-not-working-again/m-p/1012097#M141</guid>
      <dc:creator>Dominique_Broux</dc:creator>
      <dc:date>2020-12-23T17:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureSet commands not working again</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/featureset-commands-not-working-again/m-p/1012302#M145</link>
      <description>&lt;P&gt;Yes I had tried that already but no.&lt;/P&gt;&lt;P&gt;I heard back from the Field Maps team and they are seeing the same thing so they confirmed it as a bug and are looking into it.&amp;nbsp; They think it is something with field request messing up the SQL query.&lt;/P&gt;&lt;P&gt;Good news is offline my popup is super fast so I am ok for now.&amp;nbsp; Online it is taking 5-6 seconds on a iPad Pro and 13 on a regular iPad.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 17:35:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/featureset-commands-not-working-again/m-p/1012302#M145</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2020-12-24T17:35:06Z</dc:date>
    </item>
  </channel>
</rss>

