<?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: Are the Arcade FeatureSet functions supported in Collector? in ArcGIS Collector Questions</title>
    <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189325#M3219</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/4288"&gt;dan becker&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;"Downfall is that you can't take the map offline in Collector&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="background: url(&amp;quot; border: 0px; font-weight: inherit;"&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;So close..."&lt;/P&gt;&lt;P&gt;I've been trying to figure out for the past few hours how to bring my map offline. My web map contains layers with fields having attribute expressions that use FeatureSetByName. Is this the reason I haven't been able to figure out? Does Collector work online only in this case?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Aug 2020 16:57:49 GMT</pubDate>
    <dc:creator>RobertLiveanu</dc:creator>
    <dc:date>2020-08-18T16:57:49Z</dc:date>
    <item>
      <title>Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189300#M3194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created Arcade expressions that display pop-up data from a related table using FeatureSets.&amp;nbsp; They work in ArcGIS Online but not in Collector.&amp;nbsp; Does Collector (the new iOS version) support FeatureSets?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Mar 2019 19:39:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189300#M3194</guid>
      <dc:creator>KevinMayall</dc:creator>
      <dc:date>2019-03-01T19:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189301#M3195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same question.&amp;nbsp; I switched mine to use $map so it theory it should work.&amp;nbsp; But I just get blank.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;EvalStatus &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Eval"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
var sql &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"PlotKey = '"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;PlotKey &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"'"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
var tbl &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Filter&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;FeatureSetByName&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$map&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"GAP"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; sql&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

var txt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;var f in &lt;SPAN class="token function"&gt;OrderBy&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tbl&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"LineKey"&lt;/SPAN&gt;&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;
    txt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; txt &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Right&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;f&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;LineKey&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'-'&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
txt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Left&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;txt&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;txt&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;txt &lt;SPAN class="operator token"&gt;!=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'1-2-3'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"\nLine Number Issue! Found: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; txt
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;return&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="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;
&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;/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;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:32:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189301#M3195</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2021-12-11T09:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189302#M3196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The newest new version.. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;...&amp;nbsp; &amp;nbsp;if you check out this post from &lt;A href="https://community.esri.com/migrated-users/3152"&gt;Jeff Shaner&lt;/A&gt;‌&amp;nbsp;&lt;A href="https://www.esri.com/arcgis-blog/products/collector/field-mobility/collector-for-arcgis-beta-updates/"&gt;https://www.esri.com/arcgis-blog/products/collector/field-mobility/collector-for-arcgis-beta-updates/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It mentions that that the Collecor IOS V19.1.0 beta update includes support for Arcade Expressions.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2019 16:56:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189302#M3196</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2019-04-17T16:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189303#M3197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I am using that version.&amp;nbsp; Also tried the recent beta.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other stuff works just not FeatureSetByName.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also Relationship counting does not work&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;{relationships/1/objectid}&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2019 17:12:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189303#M3197</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-04-17T17:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189304#M3198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to access a&amp;nbsp;{relationships/1/objectid} field in Arcade?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I access other Arcade expressions?&amp;nbsp; Like&amp;nbsp;{expression/expr0} ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to have a master check like If&amp;nbsp;{expression/expr0} == 1 and&amp;nbsp;{expression/expr1} == 1 and etc}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arcade will not let me use {} at all so how do i access these fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2019 19:16:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189304#M3198</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-04-17T19:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189305#M3199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kevin and Doug,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have reproduced what you are experiencing with Featuresets and also found out that is scheduled to be implemented in Esri Runtime update 6 which is in development and planned for summer/fall release.... and then the Esri Field Apps will need to be released on the update 6 runtime, so it will be a little while before we see Featureset"" functionn working in Collector.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2019 21:31:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189305#M3199</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2019-04-17T21:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189306#M3200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok thanks for the info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What about -&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;Is it possible to access a&amp;nbsp;{relationships/1/objectid} field in Arcade?&amp;nbsp; These are simple check boxes to turn on in the web map but Collector is ignoring them.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2019 14:06:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189306#M3200</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-04-18T14:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189307#M3201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark - any idea on approximate timeline? Are we talking weeks, months, or years?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2019 21:22:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189307#M3201</guid>
      <dc:creator>DanteLee</dc:creator>
      <dc:date>2019-07-15T21:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189308#M3202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/3790"&gt;Mark Bockenhauer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like &lt;A href="https://community.esri.com/migrated-users/356189"&gt;Dante Lee&lt;/A&gt;, I'm also wondering if we're talking weeks, months, or years here.&amp;nbsp; I am trying to develop a solution for a client and need to know if this functionality will be available to me in the coming weeks/months.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to pass attributes to Survey123 that are derived based on a spatial intersect in a webmap.&amp;nbsp; I can do this perfectly from the desktop, but I need to be able to do this from Collector to S123 in the field, offline.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 14:23:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189308#M3202</guid>
      <dc:creator>DaveThompson101</dc:creator>
      <dc:date>2019-09-16T14:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189309#M3203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;David,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Including support for Arcade featureset in runtime apps is schedule for this fall,&amp;nbsp; if all goes to plan, should be in released product Q1 2020.&amp;nbsp; (it didn't go as planned for Runtime update 6)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 15:36:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189309#M3203</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2019-09-16T15:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189310#M3204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I appreciate this update, thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 16:13:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189310#M3204</guid>
      <dc:creator>DaveThompson101</dc:creator>
      <dc:date>2019-09-16T16:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189311#M3205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;What about -&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="background-color: #ffffff; border: 0px;"&gt;Is it possible to access a&amp;nbsp;{relationships/1/objectid} field in Arcade?&amp;nbsp; These are simple check boxes to turn on in the web map but Collector is ignoring them.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; border: 0px;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2019 17:06:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189311#M3205</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-09-16T17:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189312#M3206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/3790"&gt;Mark Bockenhauer&lt;/A&gt;‌, did this make it into the 100.7 runtime release? If so, any ideas on how long this will take to make it to Collector?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2020 01:51:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189312#M3206</guid>
      <dc:creator>RobBlash</dc:creator>
      <dc:date>2020-01-24T01:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189313#M3207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arcade featureset support in Popups did not make it into update 100.7&lt;/P&gt;&lt;P&gt;I have forwarded this thread to the planning team.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2020 18:16:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189313#M3207</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2020-01-24T18:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189314#M3208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark, Any updates you provide would be helpful. I think that many people (myself included) will be happy to see this functionality make it to Collector and Explorer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2020 16:19:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189314#M3208</guid>
      <dc:creator>RobBlash</dc:creator>
      <dc:date>2020-01-27T16:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189315#M3209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, we are excited for the functionality as well. Please upvote this to your development team.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2020 23:20:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189315#M3209</guid>
      <dc:creator>SFM_WillBrewer</dc:creator>
      <dc:date>2020-02-20T23:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189316#M3210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have been informed that this is being actively worked on for ArcGIS Runtime 100.8&amp;nbsp; &amp;nbsp;Releases of Esri field apps should pick this up later this year.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Feb 2020 00:32:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189316#M3210</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2020-02-21T00:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189317#M3211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/function-reference/data_functions/#featuresetbyrelationshipname"&gt;FeatureSetByRelationshipName&lt;/A&gt;() works in Collector. I just setup an Attribute rule calculation that queryies the parent layer in the relationship and populates attributes on the child record accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Downfall is that you can't take the map offline in Collector &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/sad.png" /&gt; So close...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2020 22:12:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189317#M3211</guid>
      <dc:creator>danbecker</dc:creator>
      <dc:date>2020-02-25T22:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189318#M3212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan, I am trying to get ANYTHING to work at this point.&amp;nbsp; Seems that even the Sum($layer,'field') function doesn't work. I cant get FeatureSetByRelationshipName to work, either. Do you have sample code that you can provide for what you were successful with?&amp;nbsp; I, very simply, need to summarize data. This is maddening!&amp;nbsp; I am using the new version of Collector on an iPad. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2020 20:01:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189318#M3212</guid>
      <dc:creator>LisaT</dc:creator>
      <dc:date>2020-02-27T20:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Are the Arcade FeatureSet functions supported in Collector?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189319#M3213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the comments in this thread, both good and snarky.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a lot&amp;nbsp;of exciting new development coming with data collection, Forms, Arcade, and Attribute Rules. Some good news is that FeatureSets have made their way into the&lt;A href="https://www.esri.com/arcgis-blog/products/developers/announcements/welcome-to-arcgis-runtime-100-8/"&gt; released version of ArcGIS Runtime 100.8&lt;/A&gt; so we can start to build against them now. We are also working on a new feature form or "smart form" that introduces grouping, conditional visibility (using Arcade expressions), proper setting of required fields and much more. We'll be kicking off a beta program of this new forms capability later in the summer. We'll be announcing&amp;nbsp;the first phase of the beta program in a couple of weeks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attribute rules are also important in our future - they need to execute on the client. There is some additional plumbing to be done to fully support both of these though (both&amp;nbsp;in Hosted Feature Services and Runtime).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd love to know what workflows you are trying to solve. It will help us in prioritizing some of the work. Can you comment?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2020 03:17:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/are-the-arcade-featureset-functions-supported-in/m-p/189319#M3213</guid>
      <dc:creator>JeffShaner</dc:creator>
      <dc:date>2020-05-26T03:17:06Z</dc:date>
    </item>
  </channel>
</rss>

