<?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: Automatic attribute value transfer through attribute rules? in ArcGIS Utility Network Questions</title>
    <link>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1294249#M2514</link>
    <description>&lt;P&gt;Where can I find the geometry of the cable and the address point? Do I need to create a geometry field for each respective feature, or is the geometry stored somewhere else? If I do need to create a geometry field, what field type should I use for it?&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;/P&gt;</description>
    <pubDate>Tue, 30 May 2023 20:24:11 GMT</pubDate>
    <dc:creator>MaikHeinze</dc:creator>
    <dc:date>2023-05-30T20:24:11Z</dc:date>
    <item>
      <title>Automatic attribute value transfer through attribute rules?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293203#M2504</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is it possible to automatically transfer an attribute value from a line to a component when attaching the line to the component using an attribute rule?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kind regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 18:21:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293203#M2504</guid>
      <dc:creator>MaikHeinze</dc:creator>
      <dc:date>2023-05-25T18:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic attribute value transfer through attribute rules?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293205#M2505</link>
      <description>&lt;P&gt;Yes - you can do this using an intersection of the two features&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 18:27:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293205#M2505</guid>
      <dc:creator>TobeyKane-Seitz</dc:creator>
      <dc:date>2023-05-25T18:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic attribute value transfer through attribute rules?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293209#M2506</link>
      <description>&lt;P&gt;I would say "Yes", but depending on what you are doing will determine the best way to do it.&amp;nbsp; For me, I have the rule on the point feature, and I take an attribute from the intersecting feature (a polygon) and get the&amp;nbsp; attribute value from the polygon this way.....then just add it to the point.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;var depotArea = FeatureSetByName($datastore, "LAND_DepotArea", ["DEPOTAREA"], false);
var  intersectingDepot = first(intersects(depotArea, $feature));&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will add the value of the depotArea field to the feature.&amp;nbsp; This triggers when the feature is created.&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 18:36:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293209#M2506</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-05-25T18:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic attribute value transfer through attribute rules?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293636#M2509</link>
      <description>&lt;P&gt;Thank you very much for the answers.&lt;/P&gt;&lt;P&gt;I have adjusted the expression for my purpose. However, it does not fill the field or update it. How can I update the value or should it update automatically?&lt;/P&gt;&lt;P&gt;Here is my intention:&lt;/P&gt;&lt;P&gt;The address point has the attribute field called "Wohneinheiten". When connecting a cable to this address point, the value from "Wohneinheiten" should be overwritten into the attribute field called "Info" in the cable. How can this value be updated?&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 20:01:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293636#M2509</guid>
      <dc:creator>MaikHeinze</dc:creator>
      <dc:date>2023-05-26T20:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic attribute value transfer through attribute rules?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293855#M2511</link>
      <description>&lt;P&gt;It really depends on how you are doing it, but you can use a dictionary to make the final field/fields update:&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/attribute-rule-dictionary-keywords.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/attribute-rule-dictionary-keywords.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;So something like this:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;//first get the intersecting grid
var gridNo = FeatureSetByName($datastore, "LAND_Grid", ["GRIDNO"], false);
var intersectingGrid = first(intersects(gridNo, $feature));

var seqNo = NextSequenceValue("SeqManholes");

var depotArea = FeatureSetByName($datastore, "LAND_DepotArea", ["DEPOTAREA"], false);
var  intersectingDepot = first(intersects(depotArea, $feature));

return{
      "result" : {
         "attributes" : {               
               "FACILITYID" : "MH-" + intersectingGrid.GRIDNO + "-" + seqNo,               
               "DEPOTAREA" : intersectingDepot.DEPOTAREA,                              
                        }
                 }
      }&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 29 May 2023 12:48:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1293855#M2511</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-05-29T12:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic attribute value transfer through attribute rules?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1294249#M2514</link>
      <description>&lt;P&gt;Where can I find the geometry of the cable and the address point? Do I need to create a geometry field for each respective feature, or is the geometry stored somewhere else? If I do need to create a geometry field, what field type should I use for it?&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 20:24:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/automatic-attribute-value-transfer-through/m-p/1294249#M2514</guid>
      <dc:creator>MaikHeinze</dc:creator>
      <dc:date>2023-05-30T20:24:11Z</dc:date>
    </item>
  </channel>
</rss>

