<?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: Arcade,  FeatureSets, and Popups in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98717#M9049</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added you to a group I made, did you get the invite?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Oct 2020 14:16:53 GMT</pubDate>
    <dc:creator>AndrewSD</dc:creator>
    <dc:date>2020-10-07T14:16:53Z</dc:date>
    <item>
      <title>Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98701#M9033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; color: #4c4c4c;"&gt;I have two layers, Organization and Venue in a web map.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; color: #4c4c4c;"&gt;I want to display Venue info in a popup on the Organization layer. I know I can use FeatureSetByName in Arcade, but I don’t have a lot of experience with Arcade. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; color: #4c4c4c;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; color: #4c4c4c;"&gt;There are also related records so if you click on an Organization point it could have several venues so I would like to display all that relate to the Organization name (how they are related).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; color: #4c4c4c;"&gt;In my head I imagine the popup having all the organization info (name, address, other features) that I have created in the customize popup interface. Then I would have an Arcade Expression that gave me the venue name, address, etc. This expression would show any related venue that an Organization has worked at.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; color: #4c4c4c;"&gt;If anyone can give a sample code that would be great. If you need more info I can provide it just not sure what one might need.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; color: #4c4c4c;"&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2020 20:34:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98701#M9033</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-09-16T20:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98702#M9034</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/329550" target="_blank"&gt;ANDREW BUTTERFIELD&lt;/A&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See below a simple example based on what you described:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;// user clicked on organization, so that will be your $feature&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;// get related venue records, change name of relationship and fields according to your data&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; fsvenues &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;FeatureSetByRelationshipName&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Name of the relationship to access venue"&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;"name"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"address"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; False&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;// initialize result text and get count&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;var&lt;/SPAN&gt; cnt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fsvenues&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;// check count and start creating result text&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;cnt &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;// we have related records&lt;/SPAN&gt;
    result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; cnt &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" venues found:"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;// loop through venues&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; venue &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; fsvenues&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="comment token"&gt;// add a line per venue and include name and address&lt;/SPAN&gt;
        result &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; TextFormatting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;NewLine &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; venue&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"name"&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="operator token"&gt;+&lt;/SPAN&gt; venue&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"address"&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="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="comment token"&gt;// we don't have related record, show that in the result&lt;/SPAN&gt;
    result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"No venues found"&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;/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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:09:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98702#M9034</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T06:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98703#M9035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow! Thank you very much! I will test this out and see how it works. Much appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 13:38:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98703#M9035</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-09-17T13:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98704#M9036</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/ButterfieldLECP"&gt;ButterfieldLECP&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you run into any problems. Happy to help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 13:55:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98704#M9036</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-09-17T13:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98705#M9037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again thank you!! So I did have an issues but it's probable me and I might have put the wrong values in. So&amp;nbsp;&lt;SPAN style="color: black;"&gt;repeat_venue&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;SPAN&gt;&amp;nbsp;is where the venue info is, org_venue and org_venue_address are the field names that have the name and address info. When I run a test it says, "&lt;SPAN class="" style="color: #de2900; background-color: rgba(255, 255, 255, 0.8);"&gt;Execution Error:&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: rgba(255, 255, 255, 0.8);"&gt;Invalid Parameters for Count"&amp;nbsp; Not sure what I did wrong.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;SPAN style="background-color: rgba(255, 255, 255, 0.8); color: #4c4c4c; "&gt;Thank you!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: #F5F2F0;"&gt;&lt;SPAN style="font-size: 10.5pt; color: slategray; border: none windowtext 1.0pt; padding: 0in;"&gt;// user clicked on organization, so that will be your $feature&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: slategray; border: none windowtext 1.0pt; padding: 0in;"&gt;// get related venue records, change name of relationship and fields according to your data&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #0077aa; border: none windowtext 1.0pt; padding: 0in;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; fsvenues &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #d74444; border: none windowtext 1.0pt; padding: 0in;"&gt;FeatureSetByRelationshipName&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;$feature&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; repeat_venue&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt; "&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;org_venue&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt; "&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt; org_venue_address&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt; "&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;],&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; False&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;);&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: slategray; border: none windowtext 1.0pt; padding: 0in;"&gt;// initialize result text and get count&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #0077aa; border: none windowtext 1.0pt; padding: 0in;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; result &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;""&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #0077aa; border: none windowtext 1.0pt; padding: 0in;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; cnt &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #d74444; border: none windowtext 1.0pt; padding: 0in;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;fsvenues&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;);&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: slategray; border: none windowtext 1.0pt; padding: 0in;"&gt;// check count and start creating result text&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #0077aa; border: none windowtext 1.0pt; padding: 0in;"&gt;if&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;cnt &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #990000; border: none windowtext 1.0pt; padding: 0in;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: slategray; border: none windowtext 1.0pt; padding: 0in;"&gt;// we have related records&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; result &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; cnt &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;+&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;" &lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;repeat_venue&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;:"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: slategray; border: none windowtext 1.0pt; padding: 0in;"&gt;// loop through venues&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #0077aa; border: none windowtext 1.0pt; padding: 0in;"&gt;for&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #0077aa; border: none windowtext 1.0pt; padding: 0in;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; venue &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #0077aa; border: none windowtext 1.0pt; padding: 0in;"&gt;in&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; fsvenues&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: slategray; border: none windowtext 1.0pt; padding: 0in;"&gt;// add a line per venue and include name and address&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; result &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;+=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; TextFormatting&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;NewLine &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;+&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;" - "&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;+&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; venue&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;org_venue&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt; "&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;]&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;+&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;" ("&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;+&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; venue&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;org_venue_address&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt; "&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;]&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;+&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;")"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;}&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #0077aa; border: none windowtext 1.0pt; padding: 0in;"&gt;else&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: slategray; border: none windowtext 1.0pt; padding: 0in;"&gt;// we don't have related record, show that in the result&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; result &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #a67f59; border: none windowtext 1.0pt; padding: 0in;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.5pt; color: #669900; border: none windowtext 1.0pt; padding: 0in;"&gt;"No venues found"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #0077aa; border: none windowtext 1.0pt; padding: 0in;"&gt;return&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: black; border: none windowtext 1.0pt; padding: 0in;"&gt; result&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.5pt; color: #999999; border: none windowtext 1.0pt; padding: 0in;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: #F5F2F0;"&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 16:07:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98705#M9037</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-09-17T16:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98706#M9038</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/ButterfieldLECP" target="_blank"&gt;ButterfieldLECP&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume that this is caused by the additional space around the relationship name and the field names. Have a look at lines 3 and 16 where this is the case in the expression you shared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you try this?&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;// user clicked on organization, so that will be your $feature&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;// get related venue records, change name of relationship and fields according to your data&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; fsvenues &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;FeatureSetByRelationshipName&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"repeat_venue"&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;"org_venue"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"org_venue_address"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; False&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;// initialize result text and get count&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;var&lt;/SPAN&gt; cnt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fsvenues&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;// check count and start creating result text&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;cnt &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;// we have related records&lt;/SPAN&gt;
    result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; cnt &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" repeat_venue:"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;// loop through venues&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; venue &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; fsvenues&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="comment token"&gt;// add a line per venue and include name and address&lt;/SPAN&gt;
        result &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; TextFormatting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;NewLine &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; venue&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"org_venue"&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="operator token"&gt;+&lt;/SPAN&gt; venue&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"org_venue_address"&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="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="comment token"&gt;// we don't have related record, show that in the result&lt;/SPAN&gt;
    result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"No venues found"&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;/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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:09:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98706#M9038</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T06:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98707#M9039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like I got the same error as above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 16:33:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98707#M9039</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-09-17T16:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98708#M9040</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/329550"&gt;ANDREW BUTTERFIELD&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second thing I would validate is the name of the relationship used on line 3. Since you had additional spaces in the name, I assume that you configured it manually and not using the interface. It is best to use the interface to avoid any typos in the process.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, go into the Arcade expression editor, click the "&amp;gt;" right to $feature:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/507227_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next, at the end of the list of attributes of the $feature you will find something called "Related records". Click the "&amp;gt;" right to it:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/507228_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will reveal the relationships that the layer has. Click on the "FeatureSetByRelationshipName" to insert the code into the expression. Edit the fields (watch out with additional spaces).&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/507229_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it continues to produce errors,&amp;nbsp;I would need to have access to the data to investigate a bit more. You could share the map and data to a new group and invite me "xbakker.spx" to this group to have access to the data and test the expression more efficiently.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 17:20:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98708#M9040</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-09-17T17:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98709#M9041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not work so I am creating a group now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again!&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 17:47:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98709#M9041</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-09-17T17:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98710#M9042</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/329550" target="_blank"&gt;ANDREW BUTTERFIELD&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems that there is something strange going on in your data. I was expecting to find a relationship from the organizations info to the venue locations, but I only found one relationship towards Form_2. And when I try to use it, it returned an empty string as the relationship name:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/507245_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Earlier you mentioned that the link between the two layers is established using the organization name, so I used that instead. have a look at the expression below:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;// use organization name and venue name to link the information&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; orgname &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"org_name"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;// access the venue featureset&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; fsvenues &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;$map&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Venue Locations"&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;"org_venue"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"org_venue_address"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"org_venue_type"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; False&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;// create a SQL query to get the related venues&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; sql &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"org_name = @orgname"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;// filter venues on org name / venue location&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; venues &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;fsvenues&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;

&lt;SPAN class="comment token"&gt;// count venues&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; cnt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;venues&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;// loop through venues and create result&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;cnt &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;// there are venues found, loop through venues&lt;/SPAN&gt;
    result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; cnt &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" venues found:"&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; venue &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; venues&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="comment token"&gt;// add venue information to the result&lt;/SPAN&gt;
        result &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; TextFormatting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;NewLine &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; TextFormatting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;NewLine &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; venue&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"org_venue"&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="operator token"&gt;=&lt;/SPAN&gt; TextFormatting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;NewLine &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; venue&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"org_venue_type"&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="operator token"&gt;=&lt;/SPAN&gt; TextFormatting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;NewLine &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; venue&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"org_venue_address"&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;
    
&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="comment token"&gt;// no venues found&lt;/SPAN&gt;
    result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"no venues found..."&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;/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;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;The result will show like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/507246_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this what you are after?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:09:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98710#M9042</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T06:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98711#M9043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much! this is exactly what I was looking for. I had a hard time relating this data so that was probably an error on my part. I really appreciate the time you gave to help with me. I am still learning arcade and can be a little confusing at times. This gives me a better idea on how to use it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 19:51:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98711#M9043</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-09-17T19:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98712#M9044</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/329550"&gt;ANDREW BUTTERFIELD&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am glad to hear that this is what you were trying to establish.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you mark the post that answered the questions as the correct answer? At this moment the thread is marked as "assumed answered". Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 20:02:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98712#M9044</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-09-17T20:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98713#M9045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last month you helped me with this arcade popup issue (thanks again!) and I had another question for you. In the above code you have it so that if an Organization is clicked on it show the organization info and the venues they went to. How would I do it so the opposite is true, when you click on a Venue dot all the organizations that have been would show up. I tried just switch everything that relate to Org to Venue and anything Venue to Org.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;&lt;P&gt;Andrew&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2020 20:36:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98713#M9045</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-10-06T20:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98714#M9046</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/ButterfieldLECP"&gt;ButterfieldLECP&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume that a little more will be required to get the desired result. If you can share the web map and data again ("xbakker.spx") I can have a closer look. What information of the organizations do you want to show at each venue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2020 21:34:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98714#M9046</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-10-06T21:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98715#M9047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, creating that group now. I wanted to show the Organizations Name, Type, Address and Number of Participants. I also need to figure out how to sum up all the participants. Ex, if there is a list of 4 organizations that have been to one venue, I want to have the list with name, type, address, and participants then under that have a sum of all the participants that have been to that venue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2020 21:41:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98715#M9047</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-10-06T21:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98716#M9048</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/329550"&gt;ANDREW BUTTERFIELD&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know what the data is shared. Summing the participants should not be a problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2020 13:41:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98716#M9048</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-10-07T13:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98717#M9049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added you to a group I made, did you get the invite?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2020 14:16:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98717#M9049</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-10-07T14:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98718#M9050</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/ButterfieldLECP"&gt;ButterfieldLECP&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not receive a notification. I can see if I have the group listed if you can tell me what it is called.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2020 14:21:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98718#M9050</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-10-07T14:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98719#M9051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is called GIS Edits. When I searched your user name it didn't show up but when I searched your name an account showed up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2020 14:29:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98719#M9051</guid>
      <dc:creator>AndrewSD</dc:creator>
      <dc:date>2020-10-07T14:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade,  FeatureSets, and Popups</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98720#M9052</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/ButterfieldLECP"&gt;ButterfieldLECP&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just searched for "&lt;SPAN style="background-color: #ffffff;"&gt;GIS Edits" and checked the groups with owners outside mi organization and the group does not appear in the list. Can you invite me using "xbakker.spx"? If you use my email or name it may be linked to one of the many other organizations that I am part of. Sorry for that.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2020 14:46:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/arcade-featuresets-and-popups/m-p/98720#M9052</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-10-07T14:46:35Z</dc:date>
    </item>
  </channel>
</rss>

