<?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: Looking for a source which lists Arcade limitations across products? in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9298#M428</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/people/moosetraveller"&gt;moosetraveller&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad to hear it is working. It's OK to mark Joshua's answer as the correct one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For "debug information" I would probably use "Console" statements in the Arcade expression to track what is happening at certain points of the expression.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jul 2019 15:17:30 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2019-07-10T15:17:30Z</dc:date>
    <item>
      <title>Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9287#M417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an attribute expression using in a popup which is shown in&amp;nbsp;a ArcGIS web map but not in a web app or in collector.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; relatedData &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;FeatureSetByName&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$datastore&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"RelatedData"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; filteredRelatedData &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;relatedData&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Concatenate&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"id="&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;id&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; orderedFilteredRelatedData &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;OrderBy&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;filteredRelatedData&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'date DESC'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; newest &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;First&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;orderedFilteredRelatedData&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;&lt;SPAN class="token function"&gt;IsEmpty&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;newest&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="string token"&gt;"n/a"&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;var&lt;/SPAN&gt; installDate &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; newest&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;date
    newest&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;name &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; &lt;SPAN class="token function"&gt;Text&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;installDate&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Y-MM-DD HH:mm:ss"&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;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&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;P&gt;&lt;/P&gt;&lt;P&gt;I have already resigned to the fact that this does not work in&amp;nbsp;ArcGIS Collector. And now it seems that this&amp;nbsp;is also not working&amp;nbsp;in a web&amp;nbsp;app. This is really frustrating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;However, I am looking for a web page or document which lists Arcade&amp;nbsp;limitations across all ESRI products. Any idea where I do find something like that?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #999999;"&gt;PS. I do know&amp;nbsp;that above&amp;nbsp;Arcade expression&amp;nbsp;is not performant.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:22:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9287#M417</guid>
      <dc:creator>Thomas_Z1</dc:creator>
      <dc:date>2021-12-10T20:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9288#M418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ArcGIS Arcade version matrix page on at the ArcGIS for Developers website states which Esri products support which version of ArcGIS Arcade. ArcGIS Online is not on the list but it should always support the latest version of ArcGIS Arcade.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/arcade/guide/version-matrix/" title="https://developers.arcgis.com/arcade/guide/version-matrix/"&gt;Version Matrix | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the ArcGIS Arcade function reference page when you click on a function it will tell you at what version of ArcGIS Arcade the function was introduced.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/arcade/function-reference/" title="https://developers.arcgis.com/arcade/function-reference/"&gt;Arcade Function Reference | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would be nice if the function reference page would just let you filter functions by version number to make it easier to see what you have to work with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jul 2019 19:29:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9288#M418</guid>
      <dc:creator>Joshua-Young</dc:creator>
      <dc:date>2019-07-09T19:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9289#M419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried Arcade on other types of fields such as text or numeric fields?&amp;nbsp; Maybe there is a limitation at this time with date/time fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jul 2019 20:22:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9289#M419</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2019-07-09T20:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9290#M420</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/people/moosetraveller" target="_blank"&gt;moosetraveller&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What error are you seeing when you test the Arcade expression in the configuration window?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would probably make some minor adjustments:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; relatedData &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;FeatureSetByName&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$datastore&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"RelatedData"&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;var&lt;/SPAN&gt; filteredRelatedData &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;relatedData&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Concatenate&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"id="&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;id&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="keyword token"&gt;var&lt;/SPAN&gt; orderedFilteredRelatedData &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;OrderBy&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;filteredRelatedData&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"date DESC"&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;var&lt;/SPAN&gt; newest &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;First&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;orderedFilteredRelatedData&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; result &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;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;IsEmpty&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;newest&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;
    result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"n/a"&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;var&lt;/SPAN&gt; installDate &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; newest&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;date&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; newest&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;name &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; &lt;SPAN class="token function"&gt;Text&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;installDate&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Y-MM-DD HH:mm:ss"&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;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; result&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you sure that the data is related like this and not through an GlobalID? Because that would make the the query different. Also you can include some Console statements to see where the code fails.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:22:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9290#M420</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-10T20:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9291#M421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Hi &lt;A href="https://community.esri.com/migrated-users/3100"&gt;Xander Bakker&lt;/A&gt;‌,&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Thank you very much but the script works&amp;nbsp;great on ArcGIS Online in a web map, returns no error in the configuration window and values are&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;correctly&amp;nbsp;&lt;/SPAN&gt;shown in the popups. (I modified and&amp;nbsp;anonymized this script for this forum.)&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;The problem is, that when creating a map app using MapApp Builder, the expression is not evaluated and blank fields are shown.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jul 2019 20:43:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9291#M421</guid>
      <dc:creator>Thomas_Z1</dc:creator>
      <dc:date>2019-07-09T20:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9292#M422</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/people/moosetraveller"&gt;moosetraveller&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You mention "MapApp Builder", are you referring to the Web AppBuilder (WAB)? Where are you seeing the blank fields? In Collector (using iOS or Android?) or in the web app?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jul 2019 20:49:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9292#M422</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-07-09T20:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9293#M423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you &lt;A href="https://community.esri.com/migrated-users/252891"&gt;Joshua Young&lt;/A&gt;‌, that helps already a lot!&lt;/P&gt;&lt;P&gt;It answers my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found the following source but my understanding is that the web app we use runs with ArcGIS JS 3.29 aka newest version:&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/guide/faq/#why-doesnt-my-expression-work-in-my-web-app-but-it-does-in-arcgis-online"&gt;&lt;SPAN style="color: #0066cc; text-decoration: underline; "&gt;https://developers.arcgis.com/arcade/guide/faq/#why-doesnt-my-expression-work-in-my-web-app-but-it-does-in-arcgis-online&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have analyzed the source code of the&amp;nbsp;web&amp;nbsp;(map) app by using a developer console.&amp;nbsp;It seems to be&amp;nbsp;ArcGIS JS 3.29.&amp;nbsp;Therefore, Arcade 1.7 should be supported according to the matrix. But it's actually&amp;nbsp;not... or I miss something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="452754" alt="ArcGIS JS 3.29" class="image-1 jive-image" height="337" src="https://community.esri.com/legacyfs/online/452754_featureset.PNG" width="275" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jul 2019 20:51:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9293#M423</guid>
      <dc:creator>Thomas_Z1</dc:creator>
      <dc:date>2019-07-09T20:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9294#M424</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/3100"&gt;Xander Bakker&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I am referring to the Web AppBuilder. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD&gt;&lt;TR style="background-color: #efefef; height: 25px;"&gt;&lt;TH style="height: 25px;"&gt;Product&lt;/TH&gt;&lt;TH style="height: 25px;"&gt;Arcade Script works?&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;Web Map (Viewer)&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;Web App (created&amp;nbsp;with Web AppBuilder)&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;Collector App&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;Collector App (Early Access)&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jul 2019 20:59:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9294#M424</guid>
      <dc:creator>Thomas_Z1</dc:creator>
      <dc:date>2019-07-09T20:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9295#M425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Michael. It works as well with a simple count in a web map but not in Collector&amp;nbsp;or a web app.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; relatedData &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;FeatureSetByName&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$datastore&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"RelatedData"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; filteredRelatedData &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;relatedData&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Concatenate&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"id="&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;id&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="token function"&gt;Count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;filteredRelatedData&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:22:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9295#M425</guid>
      <dc:creator>Thomas_Z1</dc:creator>
      <dc:date>2021-12-10T20:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9296#M426</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/124625"&gt;Thomas Zuberbuehler&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using the WAB Dev edition or the standard one provided in ArcGIS Online?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used Arcade (FeatureSetBy, Filter, Intersects, Buffer, etc) and it all works as expected in the WAB of ArcGIS Online:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/452725_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See also the description on how I created this provided here:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/docs/DOC-12773-using-featuresetby-functions-in-arcade-to-drill-down-to-other-layers-and-tables"&gt;https://community.esri.com/docs/DOC-12773-using-featuresetby-functions-in-arcade-to-drill-down-to-other-layers-and-tables&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I you have WAB Dev edition, have a look at the version and see if there are any updates.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 12:34:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9296#M426</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-07-10T12:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9297#M427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you &lt;A href="https://community.esri.com/migrated-users/3100"&gt;Xander Bakker&lt;/A&gt;‌!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working and I found out why it did not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem was a change in the related table's name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since I have never reloaded the web viewer (since all popup changes were applied immediately) it did still work. I assume that the web viewer looks &lt;STRONG&gt;once &lt;/STRONG&gt;the ID up using the layer's name and works with that ID afterwards. I guess this was the reason why it did not affect the web viewer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have marked Joshua Young's answer as the correct answer since he answers my question about a list of Arcade limitations/versions. But you definitively helped me more to fix the underlying&amp;nbsp;problem! Thank you very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS. I don't understand why there is no debug information. Do you know by chance if there is an option to have Arcade debug information in a web developer console when using a web app?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 15:13:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9297#M427</guid>
      <dc:creator>Thomas_Z1</dc:creator>
      <dc:date>2019-07-10T15:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9298#M428</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/people/moosetraveller"&gt;moosetraveller&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad to hear it is working. It's OK to mark Joshua's answer as the correct one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For "debug information" I would probably use "Console" statements in the Arcade expression to track what is happening at certain points of the expression.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 15:17:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9298#M428</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-07-10T15:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9299#M429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your hint with the&amp;nbsp;Console function!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not know that it also prints to a JavaScript console.&lt;/P&gt;&lt;P&gt;It's not really documented: &lt;A href="https://developers.arcgis.com/arcade/function-reference/data_functions/#console"&gt;https://developers.arcgis.com/arcade/function-reference/data_functions/#console&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 16:17:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9299#M429</guid>
      <dc:creator>Thomas_Z1</dc:creator>
      <dc:date>2019-07-10T16:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a source which lists Arcade limitations across products?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9300#M430</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/people/moosetraveller"&gt;moosetraveller&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is good to know. Thanks for sharing!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 18:48:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/looking-for-a-source-which-lists-arcade/m-p/9300#M430</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-07-10T18:48:19Z</dc:date>
    </item>
  </channel>
</rss>

