<?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 Geometry Updates counting as 'Update' in Attribute Rules? in Attribute Rules Questions</title>
    <link>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600621#M1743</link>
    <description>&lt;P&gt;My title says it all really. I've come to realize, unless I'm doing something wrong, that my attribute rules are not being triggered to run when I move/drag a point feature class to a new XY location, despite having Insert and Update as the triggers. My understanding is that it's due to it not being an "attribute" update, rather a geometry update. I've looked around but I can't seem to find an actual solution to this. I'm surprised that this would not be built into attribute rules for Pro. When I used attribute assistant in ArcMap, geometry updates would automatically trigger the conditions there. Anyone else come across this issue?&lt;/P&gt;</description>
    <pubDate>Fri, 28 Mar 2025 23:13:00 GMT</pubDate>
    <dc:creator>JamesBooth</dc:creator>
    <dc:date>2025-03-28T23:13:00Z</dc:date>
    <item>
      <title>Geometry Updates counting as 'Update' in Attribute Rules?</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600621#M1743</link>
      <description>&lt;P&gt;My title says it all really. I've come to realize, unless I'm doing something wrong, that my attribute rules are not being triggered to run when I move/drag a point feature class to a new XY location, despite having Insert and Update as the triggers. My understanding is that it's due to it not being an "attribute" update, rather a geometry update. I've looked around but I can't seem to find an actual solution to this. I'm surprised that this would not be built into attribute rules for Pro. When I used attribute assistant in ArcMap, geometry updates would automatically trigger the conditions there. Anyone else come across this issue?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 23:13:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600621#M1743</guid>
      <dc:creator>JamesBooth</dc:creator>
      <dc:date>2025-03-28T23:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry Updates counting as 'Update' in Attribute Rules?</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600622#M1744</link>
      <description>&lt;P&gt;Geometry updates absolutely count as updates, my org has dozens of rules that rely on this. Post your rule here and maybe the issue will pop out.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 23:14:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600622#M1744</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2025-03-28T23:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry Updates counting as 'Update' in Attribute Rules?</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600625#M1745</link>
      <description>&lt;LI-CODE lang="python"&gt;// Pull values from current and previous state
var applied = $feature.LarvicideApplied;
var wasApplied = $originalFeature.LarvicideApplied;
var requested = $feature.LarvicideRequest;
var pcoNotes = $feature.PCONotes;
var nfa = $feature.NFA;

// Initialize return object with current values
var result = {
    "LarvicideAppliedDate": $feature.LarvicideAppliedDate,
    "NFA": nfa
};

// CASE 1: Larvicide was requested, not applied, PCO left notes → NFA = 1
if (requested == 1 &amp;amp;&amp;amp; applied == 0 &amp;amp;&amp;amp; !IsEmpty(pcoNotes)) {
    result["NFA"] = 1;
    return result;
}

// CASE 2: Larvicide was applied (and wasn’t before) → set date + clear NFA
if (applied == 1 &amp;amp;&amp;amp; wasApplied != 1) {
    result["LarvicideAppliedDate"] = Now();

    // Safety net: if NFA is 1, clear it
    if (nfa == 1) {
        result["NFA"] = 0;
    }
}

return result;&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;I did notice these weird *'s in front of some of my fields. They are not actually a part of the field name. They appeared when I restored a backup of the files. I had deleted the wrong files! Could that be the issue?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JamesBooth_0-1743204717524.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/128969i2574449C9023B85C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JamesBooth_0-1743204717524.png" alt="JamesBooth_0-1743204717524.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 23:32:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600625#M1745</guid>
      <dc:creator>JamesBooth</dc:creator>
      <dc:date>2025-03-28T23:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry Updates counting as 'Update' in Attribute Rules?</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600626#M1746</link>
      <description>&lt;P&gt;I'm not seeing any obvious issues with the rule so maybe the backup restore process was the culprit? Another thing to check is the new "&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/create-modify-and-delete-attribute-rules.htm#ESRI_SECTION2_174939E30E7247C59580F8BBADF15E7D" target="_self"&gt;Triggering Fields&lt;/A&gt;" option for Attribute Rules if that's applicable.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 23:40:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600626#M1746</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2025-03-28T23:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry Updates counting as 'Update' in Attribute Rules?</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600630#M1747</link>
      <description>&lt;P&gt;Hmmm, I hope not lol! I have seen the Trigger Fields option. Unfortunately we're still on 3.3 and I believe that is a new option in 3.4.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Mar 2025 00:09:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1600630#M1747</guid>
      <dc:creator>JamesBooth</dc:creator>
      <dc:date>2025-03-29T00:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Geometry Updates counting as 'Update' in Attribute Rules?</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1601375#M1748</link>
      <description>&lt;P&gt;Turns out the edits were happening, just a bit slow and I had to refresh my view. Thanks though!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 16:34:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/geometry-updates-counting-as-update-in-attribute/m-p/1601375#M1748</guid>
      <dc:creator>JamesBooth</dc:creator>
      <dc:date>2025-04-01T16:34:01Z</dc:date>
    </item>
  </channel>
</rss>

