<?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: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit? in ArcGIS Velocity Questions</title>
    <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252050#M171</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/56766"&gt;@PeterNasuti&lt;/a&gt;, but is that true? I just tested the expression "First(TrackFieldWindow('fieldName', -1,0))" within the Velocity UI in a random RTA, and it evaluates to null as expected, without raising an error. Are you sure the fix you mentioned was not snuck into the current release after all? I did not actually try to run it.&lt;/P&gt;&lt;P&gt;On the other hand, I would expect positive values to always fail in an RTA, and only work in a BDA, since it is processing the current incoming record and has not yet seen the future records at the time of evaluation...&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jan 2023 19:40:04 GMT</pubDate>
    <dc:creator>brudo</dc:creator>
    <dc:date>2023-01-26T19:40:04Z</dc:date>
    <item>
      <title>Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1250790#M157</link>
      <description>&lt;P&gt;I was wondering if it is possible to utilize ArcGIS Velocity to detect an attribute change/edit, to trigger another action, like sending a text message or email?&amp;nbsp; Has anybody done this?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 21:46:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1250790#M157</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-01-24T21:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251638#M159</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/563014"&gt;@ArmstKP&lt;/a&gt;&amp;nbsp; yes it is possible to detect a attribute change in real time. One way to do this is to use Track functions - TrackFieldWindow&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/function-reference/track_functions/#trackfieldwindow" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/arcade/function-reference/track_functions/#trackfieldwindow&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Track Functions can be use in the Calculate Field and Map Field tool arcade expressions:&lt;/P&gt;&lt;P&gt;Here is a sample workflow using a simple AVL feed tracking snow plows with a driver name attribute that could change as time passes.&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="JeffEismanGIS_0-1674682291927.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61270i020611A11B1B39D3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JeffEismanGIS_0-1674682291927.png" alt="JeffEismanGIS_0-1674682291927.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using DriverName and the TrackFieldWindow to send a notification when the change is detected.&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="JeffEismanGIS_0-1674762900333.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61383iABBC0BD8B3FDAEB7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JeffEismanGIS_0-1674762900333.png" alt="JeffEismanGIS_0-1674762900333.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TrackFieldWindow&amp;nbsp;(&amp;nbsp;fieldName&amp;nbsp;,&amp;nbsp;startIndex&amp;nbsp;,&amp;nbsp;endIndex&amp;nbsp;)&lt;/P&gt;&lt;P&gt;fieldName = driverName accessed as 'driverName'&lt;/P&gt;&lt;P&gt;startIndex = Past Feature (-1) accessed using TrackFieldWindow(-1,0)[0]&lt;/P&gt;&lt;P&gt;endIndex = Current Feature (0) accessed using $feature.driverName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// Get the prior observation value for the field using TrackFieldWindow&lt;BR /&gt;&lt;STRONG&gt;var priorValueArray = TrackFieldWindow('driverName', -1, 0)[0];&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;// Get the current feature observation value for the currentValue field&lt;BR /&gt;&lt;STRONG&gt;var currentValue = $feature.driverName;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;// Handle the case where the first value does not have a prior feature&lt;BR /&gt;// If there is a prior value, determine if the value changed&lt;BR /&gt;&lt;STRONG&gt;if(count(priorValueArray) &amp;lt; 1){&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;return false;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;} else {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;return IIf(priorValueArray[0] != currentValue, true, false);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then if the past feature and current feature are the same it returns - False&lt;/P&gt;&lt;P&gt;If past feature and current feature are different is returns - True&amp;nbsp;&amp;nbsp; indicating a attribute change.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JeffEismanGIS_2-1674682291929.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61272i7061C7EBCAC2A706/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JeffEismanGIS_2-1674682291929.png" alt="JeffEismanGIS_2-1674682291929.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once you have that set you can leverage the filter tool to detect that change the send out a notification.&lt;/P&gt;&lt;P&gt;This is just one example but this workflow can be modified to reflect other use cases&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 20:03:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251638#M159</guid>
      <dc:creator>JeffEismanGIS</dc:creator>
      <dc:date>2023-01-26T20:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251647#M160</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;This is great!&amp;nbsp; Thank you for such detailed step by step instructions as well!&amp;nbsp; Much appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 22:06:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251647#M160</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-01-25T22:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251656#M161</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/563014"&gt;@ArmstKP&lt;/a&gt;&amp;nbsp;Your welcome&lt;/P&gt;&lt;P&gt;Good Luck&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 22:11:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251656#M161</guid>
      <dc:creator>JeffEismanGIS</dc:creator>
      <dc:date>2023-01-25T22:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251661#M162</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I copied the expression that you wrote and added my field name in.&amp;nbsp; I get this error, though.&amp;nbsp; Any idea?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArmstKP_0-1674685268722.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61280i19D7CBDC396D3C9C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ArmstKP_0-1674685268722.png" alt="ArmstKP_0-1674685268722.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 22:21:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251661#M162</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-01-25T22:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251671#M163</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;Can you tell me why I might be getting the above error of "Out of Bounds"?&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 23:00:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251671#M163</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-01-25T23:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251700#M164</link>
      <description>&lt;P&gt;I have seen that error before.&amp;nbsp; Is your feed running?&amp;nbsp; &amp;nbsp;If not start in and try it again.&amp;nbsp; If it is running can you send me a sample of your data to look at. I think you have the option to message me directly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 23:44:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251700#M164</guid>
      <dc:creator>JeffEismanGIS</dc:creator>
      <dc:date>2023-01-25T23:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251848#M165</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/563014"&gt;@ArmstKP&lt;/a&gt;&amp;nbsp;In looking a bit more into your problem&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class=""&gt;there is one frontend limitation in array access of prior features, but we have a simple workaround that I could assist with on a call and screenshare. This will be fixed in our late Feb release.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 14:02:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251848#M165</guid>
      <dc:creator>JeffEismanGIS</dc:creator>
      <dc:date>2023-01-26T14:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251992#M166</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/563014"&gt;@ArmstKP&lt;/a&gt;&amp;nbsp;I wonder if it is because index -1 does not exist for the very first observation for a track, when the feed is started; and might not exist when the Velocity UI is evaluating the expression. Perhaps you could try adding "if (&lt;SPAN&gt;TrackIndex&lt;/SPAN&gt;&lt;SPAN&gt;() &amp;gt; 0)"&lt;/SPAN&gt;&amp;nbsp;to the Arcade expression and only invoke TrackFieldIndex when that is true? (Just a hunch; honestly I have not tried using any of the Track functions in a Real Time Analytic and didn't even realize they would work there. Thanks &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;for pointing that out!)&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 18:19:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1251992#M166</guid>
      <dc:creator>brudo</dc:creator>
      <dc:date>2023-01-26T18:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252000#M167</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/453188"&gt;@brudo&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;Brudo, that is an interesting observation, I will have to look into it.&amp;nbsp; I did make a change to the expression that Jeff posted above.&amp;nbsp; I removed the '[0]' and the expression tested successfully...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArmstKP_0-1674757760974.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61362i5F62B1E66BD9B925/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ArmstKP_0-1674757760974.png" alt="ArmstKP_0-1674757760974.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 18:30:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252000#M167</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-01-26T18:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252009#M168</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/563014"&gt;@ArmstKP&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/453188"&gt;@brudo&lt;/a&gt;&amp;nbsp;At the 3.3 Velocity release (current) the Arcade expression evaluation code is not capable of evaluating negative index values for Track functions. This shortcoming has already been fixed for our 4.1 release that will go live in production late February.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;The workaround is to build your expression with &lt;STRONG&gt;positive&lt;/STRONG&gt; values such as [1,2], and then to use the Velocity API to modify the value set in the analytic configuration for that expression. For assistance with that process please either create an Esri Support case or reach out to myself or&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;directly via Esri community direct message to exchange contact information and schedule a call. As soon as our next release goes live in February, this extra step will no longer be required.&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;As an update to this, see&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;'s edited comment above and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/453188"&gt;@brudo&lt;/a&gt;&amp;nbsp;'s suggestion&lt;/P&gt;&lt;P&gt;We can use an "if" function determination to assess the array length an if less than 1, we can return a false boolean type and not require any API level modifications prior to the Feb 2023 Velocity update.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// Get the prior observation value for the field using TrackFieldWindow
var priorValueArray = TrackFieldWindow('driverName', -1, 0)[0];

// Get the current feature observation value for the currentValue field
var currentValue = $feature.driverName;

// Handle the case where the first value does not have a prior feature
// If there is a prior value, determine if the value changed
if(count(priorValueArray) &amp;lt; 1){
return false;
} else {
return IIf(priorValueArray[0] != currentValue, true, false);
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 17:09:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252009#M168</guid>
      <dc:creator>PeterNasuti</dc:creator>
      <dc:date>2023-01-27T17:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252015#M169</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/56766"&gt;@PeterNasuti&lt;/a&gt;&amp;nbsp;Thank you for the context of the issue.&amp;nbsp; I have reached out to&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;via DM.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 18:45:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252015#M169</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-01-26T18:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252042#M170</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/563014"&gt;@ArmstKP&lt;/a&gt;&amp;nbsp;that makes sense - so it seems the Track function is forgivingly clipping its result to the available range and returning an empty array when called for the first feature; but the index into the resulting zero-length array is raising that error. In that case you could use "if (Count(trackResult) &amp;gt; 0)" interchangeably with checking the TrackIndex up front. Or alternatively, you could just call "First(TrackFieldWindow(...))" instead of "TrackFieldWindow(...)[0]", which will then return null for an empty array. And to be sure, there are other ways as well.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 19:26:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252042#M170</guid>
      <dc:creator>brudo</dc:creator>
      <dc:date>2023-01-26T19:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252050#M171</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/56766"&gt;@PeterNasuti&lt;/a&gt;, but is that true? I just tested the expression "First(TrackFieldWindow('fieldName', -1,0))" within the Velocity UI in a random RTA, and it evaluates to null as expected, without raising an error. Are you sure the fix you mentioned was not snuck into the current release after all? I did not actually try to run it.&lt;/P&gt;&lt;P&gt;On the other hand, I would expect positive values to always fail in an RTA, and only work in a BDA, since it is processing the current incoming record and has not yet seen the future records at the time of evaluation...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 19:40:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252050#M171</guid>
      <dc:creator>brudo</dc:creator>
      <dc:date>2023-01-26T19:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252068#M172</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/453188"&gt;@brudo&lt;/a&gt;&amp;nbsp;We had a call with&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/563014"&gt;@ArmstKP&lt;/a&gt;&amp;nbsp;to implement the workaround for the frontend limitation at the current 3.3 release. As soon as 4.1 goes live in late February this limitation will no longer be present.&lt;/P&gt;&lt;P&gt;You are correct that in real-time analytics positive values are not valid for backend evaluation, but they are valid for big data analytics. At the current release we do not have a way to insert that nuance to the Arcade expression evaluation but we are considering validation inspection options for future releases.&lt;/P&gt;&lt;P&gt;Expect more examples, conference demos, and community videos from the real-time time moving forward on the use of track functions highlighting use cases and configurations. In the meantime feel free to log a support case or direct message a Velocity team member for assistance with the workaround for this negative value specification at the current release.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 20:01:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1252068#M172</guid>
      <dc:creator>PeterNasuti</dc:creator>
      <dc:date>2023-01-26T20:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1330254#M280</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/222539"&gt;@JeffEismanGIS&lt;/a&gt;&amp;nbsp;Do you know if the updates have gone through for this as of yet?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have followed your example in the last few days and the expression/calculate field for "DidDriverNameChange_String" boolean type.&amp;nbsp; I have changed the field names in the expression to represent my test source layer and it tests successfully, but it will error out at this expression/calculate field tool when running the BDA...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 16:41:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1330254#M280</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-09-19T16:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Is It Possible to Utilize Velocity to Detect Attribute Change/Edit?</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1330260#M281</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/563014"&gt;@ArmstKP&lt;/a&gt;&amp;nbsp;Thanks for the follow up, what is the error you are getting when you run the Big data analytic.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 16:54:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/is-it-possible-to-utilize-velocity-to-detect/m-p/1330260#M281</guid>
      <dc:creator>JeffEismanGIS</dc:creator>
      <dc:date>2023-09-19T16:54:26Z</dc:date>
    </item>
  </channel>
</rss>

