<?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: ArcGIS Dashboards Arcade Data Expression not working after update in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1570324#M10601</link>
    <description>&lt;P&gt;I'm not seeing it on my dashboard... it's working correctly&lt;/P&gt;</description>
    <pubDate>Thu, 19 Dec 2024 19:53:04 GMT</pubDate>
    <dc:creator>RandyBonds_Jr_</dc:creator>
    <dc:date>2024-12-19T19:53:04Z</dc:date>
    <item>
      <title>ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558028#M10485</link>
      <description>&lt;P&gt;Hello -&lt;/P&gt;&lt;P&gt;I am working in ArcGIS Dashboards and have a data expression that is no longer working after the update last night. I am getting this error "&lt;SPAN&gt;Test execution error: layerId=1 provided for Map Service item. Verify test data." It is not clear what this error is - the layerid is correct. I am using a map image service pulled in from Enterprise Portal that has 3 layers. See my code below.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var port = Portal('https://www.arcgis.com');
var fs = filter(FeatureSetByPortalItem(
  port,'xxxxxxxxxxxxxxxx', 1,
  ['PH_PROJECTID', 'PH_PHASEID', 'PH_PHASENAME', 'PH_COMPLDATE', 'PH_STATUS', 'PH_PHASETYPE', 'PH_STREAMRESTORED_LFT', 'PH_WETLAND_AC', 'PH_FLOODPLAIN_AC', 'PH_CULVERTREPAIRED_FT', 'PH_SEDIMENTREMOVED_CY', 'PH_BASINSTORAGE_ACFT', 'PH_TREESPLANTED', 'PH_WAC', 'PH_SUBWATERSHED', 'PH_COMMUNITY1'],
  false),
  "PH_STATUS='07. Completed' AND (PH_PHASETYPE='1. DesCon' OR PH_PHASETYPE='2. SWIM' OR PH_PHASETYPE='3. Partner' OR PH_PHASETYPE='4. Parcel Acquisition')"
);

var out_dict = {
    fields: [
        {name: 'projectid', type: 'esriFieldTypeString'},
        {name: 'phaseid', type: 'esriFieldTypeString'},
        {name: 'phasename', type: 'esriFieldTypeString'},
        {name: 'phasetype', type: 'esriFieldTypeString'},
        {name: 'complyear', type: 'esriFieldTypeString'},
        {name: 'status', type: 'esriFieldTypeString'},
        {name: 'stream', type: 'esriFieldTypeDouble'},
        {name: 'wetland', type: 'esriFieldTypeDouble'},
        {name: 'floodplain', type: 'esriFieldTypeDouble'},
        {name: 'culvert', type: 'esriFieldTypeDouble'},
        {name: 'sediment', type: 'esriFieldTypeDouble'},
        {name: 'basin', type: 'esriFieldTypeDouble'},
        {name: 'trees', type: 'esriFieldTypeInteger'},
        {name: 'wac', type: 'esriFieldTypeString'},
        {name: 'subwatershed', type: 'esriFieldTypeString'},
        {name: 'community1', type: 'esriFieldTypeString'},
        {name: 'streamcat', type: 'esriFieldTypeString'},
        {name: 'wetlandcat', type: 'esriFieldTypeString'},
        {name: 'floodplcat', type: 'esriFieldTypeString'},
        {name: 'culvertcat', type: 'esriFieldTypeString'},
        {name: 'sedimentcat', type: 'esriFieldTypeString'},
        {name: 'basincat', type: 'esriFieldTypeString'},
        {name: 'treescat', type: 'esriFieldTypeString'},
    ],
    geometryType: '',
    features: []
}

// Iterate over each feature in the layer
for (var f in fs){
    
    Push(
        out_dict['features'],
        {attributes:
            {
                projectid: Text(f['PH_PROJECTID']),
                phaseid: Text(f['PH_PHASEID']),
                phasename: Text(f['PH_PHASENAME']),
                phasetype: Text(f['PH_PHASETYPE']),
                complyear: Year(f['PH_COMPLDATE']),
                status: Text(f['PH_STATUS']),
                stream: Number(f['PH_STREAMRESTORED_LFT']),
                wetland: Number(f['PH_WETLAND_AC']),
                floodplain: Number(f['PH_FLOODPLAIN_AC']),
                culvert: Number(f['PH_CULVERTREPAIRED_FT']),
                sediment: Number(f['PH_SEDIMENTREMOVED_CY']),
                basin: Number(f['PH_BASINSTORAGE_ACFT']),
                trees: Number(f['PH_TREESPLANTED']),
                wac: Text(f['PH_WAC']),
                subwatershed: Text(f['PH_SUBWATERSHED']),
                community1: Text(f['PH_COMMUNITY1']),
                streamcat: IIF(f['PH_STREAMRESTORED_LFT']&amp;gt;0, 'Yes', 'No'),
                wetlandcat: IIf(f['PH_WETLAND_AC']&amp;gt;0, 'Yes', 'No'),
                floodplcat: IIf(f['PH_FLOODPLAIN_AC']&amp;gt;0, 'Yes', 'No'),
                culvertcat: IIf(f['PH_CULVERTREPAIRED_FT']&amp;gt;0, 'Yes', 'No'),
                sedimentcat: IIf(f['PH_SEDIMENTREMOVED_CY']&amp;gt;0, 'Yes', 'No'),
                basincat: IIf(f['PH_BASINSTORAGE_ACFT']&amp;gt;0, 'Yes', 'No'),
                treescat: IIf(f['PH_TREESPLANTED']&amp;gt;0, 'Yes', 'No'),
            }
        }
    )
}

//Return populated out_dict as FeatureSet
var mos = FeatureSet(Text(out_dict))

return mos&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 14:45:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558028#M10485</guid>
      <dc:creator>LJackson29</dc:creator>
      <dc:date>2024-11-13T14:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558039#M10486</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/369299"&gt;@LJackson29&lt;/a&gt;&amp;nbsp;I suggest working with Technical Support to report this&amp;nbsp;&lt;A href="https://support.esri.com/en-us/contact/report-bug" target="_blank"&gt;https://support.esri.com/en-us/contact/report-bug&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 15:01:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558039#M10486</guid>
      <dc:creator>Stephanie_F</dc:creator>
      <dc:date>2024-11-13T15:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558041#M10487</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/200366"&gt;@Stephanie_F&lt;/a&gt;&amp;nbsp; Thanks - will do&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 15:02:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558041#M10487</guid>
      <dc:creator>LJackson29</dc:creator>
      <dc:date>2024-11-13T15:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558381#M10498</link>
      <description>&lt;P&gt;We are having the same issue! I have opened a ticket with support, but wanted to let you know that you're not alone &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;My code for comparison:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;//get featureset from portal item&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;FeatureSetByPortalItem&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Portal&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"https://gis.yakimawa.gov/portal/"&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"ITEM_ID"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; [&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"CleanupDate"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"ShoppingCart"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Tires"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Furniture"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Mattresses"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Appliances"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Electronics"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Graffiti"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Miscellaneous"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"PressureWash"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Vacuum"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Incompletes"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; ],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;false&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; );&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;choicesDict&lt;/SPAN&gt;&lt;SPAN&gt; = {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;fields&lt;/SPAN&gt;&lt;SPAN&gt;: [&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; { &lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"cleanupDate"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"esriFieldTypeDate"&lt;/SPAN&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; { &lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"sumCategories"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"esriFieldTypeDouble"&lt;/SPAN&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; ],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;geometryType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;features&lt;/SPAN&gt;&lt;SPAN&gt;: []&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; };&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;// Split comma separated hazard types and store in dictionary.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;i&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;for&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;ccfeature&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;choicesDict&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;features&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;i&lt;/SPAN&gt;&lt;SPAN&gt;++] = {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;attributes&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;cleanupDate&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Cleanupdate"&lt;/SPAN&gt;&lt;SPAN&gt;],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;sumCategories&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"ShoppingCart"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Furniture"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Mattresses"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Appliances"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Electronics"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Tires"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Graffiti"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Miscellaneous"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"PressureWash"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Vacuum"&lt;/SPAN&gt;&lt;SPAN&gt;] +&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ccfeature&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"Incompletes"&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; };&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;FeatureSet&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Text&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;choicesDict&lt;/SPAN&gt;&lt;SPAN&gt;));&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;The error when I try to test:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt; Test execution error: layerId=0 provided for Map Service item. Verify test data.&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 22:46:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558381#M10498</guid>
      <dc:creator>RandyBonds_Jr_</dc:creator>
      <dc:date>2024-11-13T22:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558560#M10500</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/186122"&gt;@RandyBonds_Jr_&lt;/a&gt;&amp;nbsp;Thanks for sharing - it always helps that there are others experiencing the same issue!&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 13:05:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558560#M10500</guid>
      <dc:creator>LJackson29</dc:creator>
      <dc:date>2024-11-14T13:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558627#M10503</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/369299"&gt;@LJackson29&lt;/a&gt;&amp;nbsp;and &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/186122"&gt;@RandyBonds_Jr_&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for reporting this behavior. An official bug has been logged for this:&amp;nbsp;&lt;EM&gt;"&lt;/EM&gt;&lt;SPAN&gt;&lt;EM&gt;BUG-000172239:&amp;nbsp;Map Services are no longer able to be used as the reference item for Arcade's FeatureSetByPortalItem function in Map Viewer pop-ups or Dashboard data expressions following the ArcGIS Online November 2024 update"&lt;/EM&gt;. Please request that your cases be attached to this bug.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;An identified short-term workaround is to add the map service's sublayer(s) individually as items to ArcGIS Online and reference their item IDs in the Arcade expression.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Katie&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 14:47:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558627#M10503</guid>
      <dc:creator>KathrynWalker</dc:creator>
      <dc:date>2024-11-14T14:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558679#M10505</link>
      <description>&lt;P&gt;Thanks, the support person added it to my request yesterday.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 15:52:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558679#M10505</guid>
      <dc:creator>RandyBonds_Jr_</dc:creator>
      <dc:date>2024-11-14T15:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558801#M10507</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/510901"&gt;@KathrynWalker&lt;/a&gt;&amp;nbsp; Thanks - I will have the support person add the bug when I we talk. Is there any timeline for a fix?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 18:42:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558801#M10507</guid>
      <dc:creator>LJackson29</dc:creator>
      <dc:date>2024-11-14T18:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558977#M10508</link>
      <description>&lt;P&gt;my data expression seems working using 'FeatureSetByPortalItem' in the preview and editing mode, but not in the view mode. There are multiple widgets/ URL parameter working together with my data expression so I am not sure where the issue is coming from exactly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="KerryKang_0-1731623837323.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119598iAD100E68C37B977A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="KerryKang_0-1731623837323.png" alt="KerryKang_0-1731623837323.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 22:37:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1558977#M10508</guid>
      <dc:creator>KerryKang</dc:creator>
      <dc:date>2024-11-14T22:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1559113#M10509</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/221172"&gt;@KerryKang&lt;/a&gt;&amp;nbsp;The bug described above is specific to map image layers, so if you are using a feature service, your issue might be something different.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 12:40:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1559113#M10509</guid>
      <dc:creator>LJackson29</dc:creator>
      <dc:date>2024-11-15T12:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1559599#M10510</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/369299"&gt;@LJackson29&lt;/a&gt;&amp;nbsp;this bug should now be fixed. Please let us know if you see behavior otherwise!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 12:57:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1559599#M10510</guid>
      <dc:creator>KathrynWalker</dc:creator>
      <dc:date>2024-11-18T12:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1559607#M10511</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/510901"&gt;@KathrynWalker&lt;/a&gt;&amp;nbsp;Yes, it is working again. Thanks so much for the quick turn around on this.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 13:20:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1559607#M10511</guid>
      <dc:creator>LJackson29</dc:creator>
      <dc:date>2024-11-18T13:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1559723#M10512</link>
      <description>&lt;P&gt;Yes! I have confirmed it's working for us as well. Thanks for the quick attention to this issue.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 16:05:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1559723#M10512</guid>
      <dc:creator>RandyBonds_Jr_</dc:creator>
      <dc:date>2024-11-18T16:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1570310#M10599</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;We are starting to see this error as well. Could the bug have been reintroduced?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2024 19:23:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1570310#M10599</guid>
      <dc:creator>JessicaLott_Dymaptic</dc:creator>
      <dc:date>2024-12-19T19:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1570324#M10601</link>
      <description>&lt;P&gt;I'm not seeing it on my dashboard... it's working correctly&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2024 19:53:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1570324#M10601</guid>
      <dc:creator>RandyBonds_Jr_</dc:creator>
      <dc:date>2024-12-19T19:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboards Arcade Data Expression not working after update</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1570549#M10603</link>
      <description>&lt;P&gt;Our dashboards with data expressions are working as well.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Dec 2024 12:50:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcgis-dashboards-arcade-data-expression-not/m-p/1570549#M10603</guid>
      <dc:creator>LJackson29</dc:creator>
      <dc:date>2024-12-20T12:50:33Z</dc:date>
    </item>
  </channel>
</rss>

