<?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: Update failure via attribute rules with arcade in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043111#M6411</link>
    <description>&lt;P&gt;yes, as soon as I change the name in the name field, it is updated in the notes field as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to pass a value from another feature's attribute table that can be accomplished but you need to know which feature is passing the attribute and which feature is receiving the attribute. My use case for the following code is to buffer each feature in my&amp;nbsp;&lt;EM&gt;centreline&lt;/EM&gt;&amp;nbsp;feature class by 10m, when a&amp;nbsp;&lt;EM&gt;watermain&lt;/EM&gt; feature falls within 10m of a &lt;EM&gt;centreline&lt;/EM&gt;, my expression grabs the&amp;nbsp;&lt;U&gt;coordinated_ID&lt;/U&gt; value from the&amp;nbsp;&lt;EM&gt;centreline&lt;/EM&gt; feature and passes it to the&amp;nbsp;&lt;U&gt;coordinated_ID&lt;/U&gt; field in the&amp;nbsp;&lt;EM&gt;watermain&lt;/EM&gt;&amp;nbsp;attribute table. When multiple&amp;nbsp;&lt;EM&gt;centreline&amp;nbsp;&lt;/EM&gt;features intersect with the&amp;nbsp;&lt;EM&gt;watermain&lt;/EM&gt; feature, it grabs the&amp;nbsp;&lt;U&gt;coordinated_ID&lt;/U&gt; from the longest&amp;nbsp;&lt;EM&gt;centreline.&lt;/EM&gt;&amp;nbsp;&amp;nbsp;when features don't intersect,&amp;nbsp;the&amp;nbsp;&lt;U&gt;coordinated_ID&lt;/U&gt; field is populated with null.&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;LI-CODE lang="markup"&gt;//On Insert or Update populate Coordinate ID 
var fsRoads = FeatureSetByName($datastore, "Centreline_Assets",["Coordinated_ID"], True);
var watermain = $feature;
var watermainbuf = Buffer(watermain, 10, 'meter');
var roads = Intersects(fsRoads, watermainbuf);
var cnt = Count(roads);

// check different situations
if (cnt == 0) {
    // there are no roads found
    return null;
} else if (cnt == 1) {
    // there is a one road, return the Coordinate_ID
    return First(roads)["Coordinated_ID"];
} else {
    // there are multiple roads found, find the longest segment
    var maxsegmentlength = 0;
    var CoordID = null;
    for (var road in roads) {
        var segment = Intersection(road, watermainbuf);
        var segmentlength = Length(segment, 'meter');
        if (segmentlength &amp;gt; maxsegmentlength) {
            CoordID = road["Coordinated_ID"];
            maxsegmentlength = segmentlength;
        }
    }
    return CoordID;
}&lt;/LI-CODE&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;</description>
    <pubDate>Thu, 01 Apr 2021 19:53:42 GMT</pubDate>
    <dc:creator>SarahHartholt</dc:creator>
    <dc:date>2021-04-01T19:53:42Z</dc:date>
    <item>
      <title>Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1042988#M6406</link>
      <description>&lt;P&gt;Our team is trying to use Arcade to do some data updates without success and I have reduced the update to be the simplest possible. Basically, this is to copy the data to 'notes' when this field changed. I am on pro 2.7 and I am using file geodatabase. Could anyone see what is wrong with this arcade expression or do I need to configure something for update via arcade? Thanks in advance for any helps! Following are the screenshots of the error we received and the arcade expression.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZhiyongHong_0-1617296891713.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/9879iFE94BCE1F0EEAE5B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZhiyongHong_0-1617296891713.png" alt="ZhiyongHong_0-1617296891713.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZhiyongHong_1-1617296999979.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/9880i41FC07F379F79C46/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZhiyongHong_1-1617296999979.png" alt="ZhiyongHong_1-1617296999979.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 17:10:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1042988#M6406</guid>
      <dc:creator>ZhiyongHong</dc:creator>
      <dc:date>2021-04-01T17:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043077#M6407</link>
      <description>&lt;P&gt;if you're using attribute rules, a simple arcade query like this works:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var name = $feature.Name;
return name&lt;/LI-CODE&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="SarahHartholt_0-1617303321489.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/9904iE18C936B88061281/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarahHartholt_0-1617303321489.png" alt="SarahHartholt_0-1617303321489.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SarahHartholt_1-1617303350822.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/9905iE2DD8125BB4C007E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarahHartholt_1-1617303350822.png" alt="SarahHartholt_1-1617303350822.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;right click your feature layer -&amp;gt; Design -&amp;gt; attribute rules&lt;/P&gt;&lt;P&gt;set the expression:&lt;/P&gt;&lt;P&gt;var name = $feature.Name;&lt;BR /&gt;return name&lt;/P&gt;&lt;P&gt;and make sure to set the trigger as&amp;nbsp;&lt;EM&gt;update&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 18:57:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043077#M6407</guid>
      <dc:creator>SarahHartholt</dc:creator>
      <dc:date>2021-04-01T18:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043082#M6408</link>
      <description>&lt;P&gt;Thanks, &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/38008"&gt;@SarahHartholt&lt;/a&gt;&amp;nbsp;. This will work if just returning some data. The problem for us is that we need to update some data from the attribute rule.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 18:59:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043082#M6408</guid>
      <dc:creator>ZhiyongHong</dc:creator>
      <dc:date>2021-04-01T18:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043086#M6409</link>
      <description>&lt;P&gt;I don't think I'm understanding what you are trying to accomplish then. Your original post makes it seem like you want to pass a value from one attribute to another. i.e. when someone updates the comments field, it also updates the notes filed with the same text. Can you add some more context?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 19:03:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043086#M6409</guid>
      <dc:creator>SarahHartholt</dc:creator>
      <dc:date>2021-04-01T19:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043100#M6410</link>
      <description>&lt;P&gt;Oops. I did not see that your rule is applied to "notes" and the value you are returning is the name. So is that right you script will update the notes field from the name as long as anything in this feature is changed? What we are trying to accomplish is to use the "Edit"/"updates"&amp;nbsp; payload from arcade to run the update. Our real use case is more complicated than this. We will use the association to update the attributes in different features via querying the association of the features. We have confirmed that we could get all the data well but the update fail. Do you have a simple general example that I could check that use the approach like this for update?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZhiyongHong_0-1617304549652.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/9912iE9598F1B553F7E85/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZhiyongHong_0-1617304549652.png" alt="ZhiyongHong_0-1617304549652.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 19:17:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043100#M6410</guid>
      <dc:creator>ZhiyongHong</dc:creator>
      <dc:date>2021-04-01T19:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043111#M6411</link>
      <description>&lt;P&gt;yes, as soon as I change the name in the name field, it is updated in the notes field as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to pass a value from another feature's attribute table that can be accomplished but you need to know which feature is passing the attribute and which feature is receiving the attribute. My use case for the following code is to buffer each feature in my&amp;nbsp;&lt;EM&gt;centreline&lt;/EM&gt;&amp;nbsp;feature class by 10m, when a&amp;nbsp;&lt;EM&gt;watermain&lt;/EM&gt; feature falls within 10m of a &lt;EM&gt;centreline&lt;/EM&gt;, my expression grabs the&amp;nbsp;&lt;U&gt;coordinated_ID&lt;/U&gt; value from the&amp;nbsp;&lt;EM&gt;centreline&lt;/EM&gt; feature and passes it to the&amp;nbsp;&lt;U&gt;coordinated_ID&lt;/U&gt; field in the&amp;nbsp;&lt;EM&gt;watermain&lt;/EM&gt;&amp;nbsp;attribute table. When multiple&amp;nbsp;&lt;EM&gt;centreline&amp;nbsp;&lt;/EM&gt;features intersect with the&amp;nbsp;&lt;EM&gt;watermain&lt;/EM&gt; feature, it grabs the&amp;nbsp;&lt;U&gt;coordinated_ID&lt;/U&gt; from the longest&amp;nbsp;&lt;EM&gt;centreline.&lt;/EM&gt;&amp;nbsp;&amp;nbsp;when features don't intersect,&amp;nbsp;the&amp;nbsp;&lt;U&gt;coordinated_ID&lt;/U&gt; field is populated with null.&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;LI-CODE lang="markup"&gt;//On Insert or Update populate Coordinate ID 
var fsRoads = FeatureSetByName($datastore, "Centreline_Assets",["Coordinated_ID"], True);
var watermain = $feature;
var watermainbuf = Buffer(watermain, 10, 'meter');
var roads = Intersects(fsRoads, watermainbuf);
var cnt = Count(roads);

// check different situations
if (cnt == 0) {
    // there are no roads found
    return null;
} else if (cnt == 1) {
    // there is a one road, return the Coordinate_ID
    return First(roads)["Coordinated_ID"];
} else {
    // there are multiple roads found, find the longest segment
    var maxsegmentlength = 0;
    var CoordID = null;
    for (var road in roads) {
        var segment = Intersection(road, watermainbuf);
        var segmentlength = Length(segment, 'meter');
        if (segmentlength &amp;gt; maxsegmentlength) {
            CoordID = road["Coordinated_ID"];
            maxsegmentlength = segmentlength;
        }
    }
    return CoordID;
}&lt;/LI-CODE&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;</description>
      <pubDate>Thu, 01 Apr 2021 19:53:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043111#M6411</guid>
      <dc:creator>SarahHartholt</dc:creator>
      <dc:date>2021-04-01T19:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043123#M6412</link>
      <description>&lt;P&gt;Thanks so much,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/38008"&gt;@SarahHartholt&lt;/a&gt;. I have tried your first example and it works great for its use case and it also helps me clarify some concepts! For your second example, I am wondering how do you define the attribute rules since the trigger and receiver are different. I guess you will need to define the rule for "&lt;EM&gt;watermain" on&amp;nbsp;"coordinated_ID" to receive the change. How do you define the trigger from&amp;nbsp;Centreline_Assets? A screenshot of your rule definition like in your first example should help a lot!&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 19:54:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043123#M6412</guid>
      <dc:creator>ZhiyongHong</dc:creator>
      <dc:date>2021-04-01T19:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043126#M6413</link>
      <description>&lt;P&gt;It's a calculate rule that is set on my&amp;nbsp;&lt;EM&gt;watermain&lt;/EM&gt; feature class. The trigger is &lt;STRONG&gt;Update&lt;/STRONG&gt; just like the first example. When I make a change to a feature in the&amp;nbsp;&lt;EM&gt;watermain&amp;nbsp;&lt;/EM&gt;feature class (the receiver), the arcade expression executes.&lt;/P&gt;&lt;P&gt;I think the key for you is this line&amp;nbsp;which calls the&amp;nbsp;&lt;EM&gt;Centreline_Assets&lt;/EM&gt; layer in my map. (the giver)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var fsRoads = FeatureSetByName($datastore, "Centreline_Assets",["Coordinated_ID"], True);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it is telling the expression to look in the map document ($datastore) for a layer called Centreline_Assets, and to grab the Coordinated_ID field in its attribute table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SarahHartholt_0-1617307012547.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/9917i6E26B324796C7F6A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarahHartholt_0-1617307012547.png" alt="SarahHartholt_0-1617307012547.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 20:41:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043126#M6413</guid>
      <dc:creator>SarahHartholt</dc:creator>
      <dc:date>2021-04-01T20:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043156#M6415</link>
      <description>&lt;P&gt;I think I kind of get it. So this example defines the rule in&amp;nbsp;&lt;EM&gt;watermain. If I get it right, it will require a change in&amp;nbsp;watermain to trigger copying the value of "&lt;SPAN&gt;Coordinated_ID"&amp;nbsp;&lt;/SPAN&gt;from&amp;nbsp;Centreline_Assets to watermain. Could you think of a way to this scenery: Triggering the data copy from&amp;nbsp;Centreline_Assets to watermain when it detects changes in&amp;nbsp;Centreline_Assets?&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 20:41:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043156#M6415</guid>
      <dc:creator>ZhiyongHong</dc:creator>
      <dc:date>2021-04-01T20:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043161#M6417</link>
      <description>&lt;P&gt;A change to any attribute in the watermain layer triggers the arcade expression to execute. I'm not sure if that also includes changes to the geometry/shape of the feature though.&lt;/P&gt;&lt;P&gt;I'm not sure if that is possible. Your trigger would need to be on the Centreline_Assets layer but the field to update would be on the watermain layer which is not something you can select from the Field dropdown&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SarahHartholt_0-1617310412941.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/9930i63B907991F3F807D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarahHartholt_0-1617310412941.png" alt="SarahHartholt_0-1617310412941.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 20:53:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043161#M6417</guid>
      <dc:creator>SarahHartholt</dc:creator>
      <dc:date>2021-04-01T20:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043178#M6420</link>
      <description>&lt;P&gt;Yeah, that is why we have to use the edit/update of the arcade. Our case (wording in your model) is that&amp;nbsp;&lt;SPAN&gt;we need to detect the change in&amp;nbsp;centreline_assets(trigger, giver) and push the change to watermain (receiver). We define the rule in&amp;nbsp;centreline_assets and I think the only way for this to work is to use edit/updates from arcade. Not sure how to use a second trigger for this. Do you know an example of such kind of scenery?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 20:57:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043178#M6420</guid>
      <dc:creator>ZhiyongHong</dc:creator>
      <dc:date>2021-04-01T20:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043181#M6421</link>
      <description>&lt;P&gt;I have not used arcade&amp;nbsp;&lt;SPAN&gt;edit/updates&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 20:58:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1043181#M6421</guid>
      <dc:creator>SarahHartholt</dc:creator>
      <dc:date>2021-04-01T20:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Update failure via attribute rules with arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1048881#M6457</link>
      <description>&lt;P&gt;I accepted one of the above comments from&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/38008"&gt;@SarahHartholt&lt;/a&gt;&amp;nbsp;as a solution since her approach should be the right way to go to update a different field in the same feature. To update a field in a different feature using the "Edit" in the payload, the trick here is to edit on the "Attribute Rule" to trigger the rule, which will display a very nice message to tell us exactly what to do: there is a checkbox need to be enabled.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZhiyongHong_0-1618863673572.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/11279i62582D9209FB245B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZhiyongHong_0-1618863673572.png" alt="ZhiyongHong_0-1618863673572.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 20:21:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/update-failure-via-attribute-rules-with-arcade/m-p/1048881#M6457</guid>
      <dc:creator>ZhiyongHong</dc:creator>
      <dc:date>2021-04-19T20:21:26Z</dc:date>
    </item>
  </channel>
</rss>

