<?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: Validate my theory?  Attribute Rules and the Editable check box... in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091753#M44769</link>
    <description>&lt;P&gt;I have similar rules with my site address points.&amp;nbsp; That's something I've wrestled with as well, firing rules upon editing the feature, regardless of how small an edit it is.&amp;nbsp; The best I've come up with is to disable the rule, make your edits and then re-enable the rule when you're done.&lt;/P&gt;</description>
    <pubDate>Tue, 24 Aug 2021 15:27:06 GMT</pubDate>
    <dc:creator>JoeBorgione</dc:creator>
    <dc:date>2021-08-24T15:27:06Z</dc:date>
    <item>
      <title>Validate my theory?  Attribute Rules and the Editable check box...</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091729#M44767</link>
      <description>&lt;P&gt;I just recreated some of my attribute rules from ArcMap to ArcPro and I'm noticing some differences.&amp;nbsp; The one that's giving me the most heartburn right now is the "Editable" check box on the rule.&lt;/P&gt;&lt;P&gt;I have a few rules that grab attribute values from other underlying feature classes so when you place an address point or move it, it grabs the Municipality and the Parcel ID.&amp;nbsp; Works really well.&amp;nbsp; But sometimes we need to manually override this value, because reasons, and even though I have the "Editable" check box on, it doesn't let me overwrite a new value by hand, it just flips it back to the original value.&lt;/P&gt;&lt;P&gt;Is this because I have the "Update" check box on as well, so it thinks it has to run the rules again because I updated the record and you're caught in an impossible Catch-22?&amp;nbsp; Didn't we used to have an option to update only when the shape changed?&amp;nbsp; Because that's what I want to do.&amp;nbsp; I only want to update certain values when they get created or moved, but not just becuase some of the other attributes changed.&amp;nbsp; Is that possible somehow?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 14:56:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091729#M44767</guid>
      <dc:creator>KimberlyMeinert</dc:creator>
      <dc:date>2021-08-24T14:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Validate my theory?  Attribute Rules and the Editable check box...</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091753#M44769</link>
      <description>&lt;P&gt;I have similar rules with my site address points.&amp;nbsp; That's something I've wrestled with as well, firing rules upon editing the feature, regardless of how small an edit it is.&amp;nbsp; The best I've come up with is to disable the rule, make your edits and then re-enable the rule when you're done.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 15:27:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091753#M44769</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-08-24T15:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Validate my theory?  Attribute Rules and the Editable check box...</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091756#M44770</link>
      <description>&lt;P&gt;Yes, it's because of the Update trigger.&lt;/P&gt;&lt;P&gt;You can edit your values manually by putting something like this at the top of your rule:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// If there already is a value in $feature.Field, just return that value (essentially change nothing).
// That allows you to put some other values in there.
// If you want to reset the value to be automatically calculated, just delete it (set it to null), the update rule will trigger.

if(!IsEmpty($feature.Field)) {
  return $feature.Field
}

// your code goes here&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 15:38:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091756#M44770</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2021-08-24T15:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Validate my theory?  Attribute Rules and the Editable check box...</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091852#M44777</link>
      <description>&lt;P&gt;That's an excellent tip, thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 18:02:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091852#M44777</guid>
      <dc:creator>KimberlyMeinert</dc:creator>
      <dc:date>2021-08-24T18:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Validate my theory?  Attribute Rules and the Editable check box...</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091992#M44781</link>
      <description>&lt;P&gt;I guess as a follow up though, we've chatted in the office and thought of situations where we're really going to be in a pickle and are going to have to get *real* creative to make it work similar to how the old attribute assistant used to work.&amp;nbsp; The Ideas page is going to get some entries...&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 21:07:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091992#M44781</guid>
      <dc:creator>KimberlyMeinert</dc:creator>
      <dc:date>2021-08-24T21:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Validate my theory?  Attribute Rules and the Editable check box...</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091999#M44782</link>
      <description>&lt;P&gt;This brings up another rub I have.&amp;nbsp; From what I can tell, the only way you can disable a rule is if you're connected as the database owner.&amp;nbsp; When people are editing, we're editing through a version, so the rules become read only since the database connection doesn't have schema permissions.&amp;nbsp; (Not to mention schema locks, etc, etc).&amp;nbsp; In ArcMap we used to be able to pause the rules for those tricky situations, and unless I'm missing something, I can't do it anymore.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 21:19:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1091999#M44782</guid>
      <dc:creator>KimberlyMeinert</dc:creator>
      <dc:date>2021-08-24T21:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Validate my theory?  Attribute Rules and the Editable check box...</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1092020#M44785</link>
      <description>&lt;P&gt;I didn't realize that as I'm the only guy who uses rules; at least for now, and I connect as the db owner. Sounds like that bun needs to go back in the oven for a while.&lt;/P&gt;&lt;P&gt;The ESRI address data managment solution provides a master street name table that is actually a domain.&amp;nbsp; If you deploy [any] domains in an enterprise gdb, only the domain owner can change them.&amp;nbsp; I've never used the master street name table for that reason.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 22:09:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/validate-my-theory-attribute-rules-and-the/m-p/1092020#M44785</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-08-24T22:09:35Z</dc:date>
    </item>
  </channel>
</rss>

