<?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: Trigger and Update New Row from Feature Class to Feature Class in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1084971#M25736</link>
    <description>&lt;P&gt;Take a look at the &lt;A href="https://doc.arcgis.com/en/arcgis-solutions/latest/reference/introduction-to-address-data-management.htm" target="_self"&gt;address data management solution&lt;/A&gt;.&amp;nbsp; It has an attribute rule that fires when a point is dropped on a road and creates a second point in another related feature class.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Aug 2021 15:54:39 GMT</pubDate>
    <dc:creator>JoeBorgione</dc:creator>
    <dc:date>2021-08-02T15:54:39Z</dc:date>
    <item>
      <title>Trigger and Update New Row from Feature Class to Feature Class</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1084896#M25735</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have ArcGIS Pro 2.8.1, python, SQL and enterprise geodatabase. It can be also use attribute rule. I have two feature classes (SDE). Is there a way to trigger new row and apply update from point feature class to other point feature class? Please kindly assist. Thank you.&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 15:06:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1084896#M25735</guid>
      <dc:creator>AlexP_</dc:creator>
      <dc:date>2021-08-25T15:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger and Update New Row from Feature Class to Feature Class</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1084971#M25736</link>
      <description>&lt;P&gt;Take a look at the &lt;A href="https://doc.arcgis.com/en/arcgis-solutions/latest/reference/introduction-to-address-data-management.htm" target="_self"&gt;address data management solution&lt;/A&gt;.&amp;nbsp; It has an attribute rule that fires when a point is dropped on a road and creates a second point in another related feature class.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 15:54:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1084971#M25736</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-08-02T15:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger and Update New Row from Feature Class to Feature Class</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1085053#M25737</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/3374"&gt;@JoeBorgione&lt;/a&gt;&amp;nbsp; Thank you for the information. I don't think it is working. I tried to test it on my end. I entered data on ADDRESS_EDIT_TEST. so it is supposed to show up on other feature class (PaGIS_TEST). I added attribute rule on PaGIS_TEST feature class. Please advise.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;// replace 'FeatureClassName' with the name of the feature class to pull intersecting features from (ex. Cities, ZipCodes, Parcels)
var intersectingFeatures = Intersects(FeatureSetByName($datastore, "ADDRESS_EDIT_TEST"), $feature);
for (var feature in intersectingFeatures) {
     // replace 'fieldname' with the name of the field from the intersecting feature to pull the value from
     var value = feature.TRUE_SITE_ADDR;
      if (IsEmpty(value)) continue;
     return value;
}
return null;&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlexP__0-1627929927366.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/19931iCF734C4C3CF317D7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlexP__0-1627929927366.png" alt="AlexP__0-1627929927366.png" /&gt;&lt;/span&gt;&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="AlexP__1-1627929952326.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/19932iBD54B2CDB93C73B0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlexP__1-1627929952326.png" alt="AlexP__1-1627929952326.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 18:48:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1085053#M25737</guid>
      <dc:creator>AlexP_</dc:creator>
      <dc:date>2021-08-02T18:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger and Update New Row from Feature Class to Feature Class</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1085056#M25738</link>
      <description>&lt;P&gt;I don't know what rule you are looking at but it's the #2 rule in the Address point feature class called Create Site Address Points.&amp;nbsp; It's a very complex rule and you'll need to have a relationship class between the two feature classes.&amp;nbsp; The original address point is dropped along a street centerline and grabs street attributes as well as interpolating an address and assigns all that to a new Site Address Point.&amp;nbsp; I don't know what kind of features your are creating or what attributes you need assigned to the secondary feature.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 18:57:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1085056#M25738</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-08-02T18:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger and Update New Row from Feature Class to Feature Class</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1092227#M25772</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/3374"&gt;@JoeBorgione&lt;/a&gt;&amp;nbsp; I checked on my end and contacted esri staff team from solutions. Unforentunely, it doesn't work without one the polygon. Both feature classes I have are points. This is useless.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 14:47:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/trigger-and-update-new-row-from-feature-class-to/m-p/1092227#M25772</guid>
      <dc:creator>AlexP_</dc:creator>
      <dc:date>2021-08-25T14:47:02Z</dc:date>
    </item>
  </channel>
</rss>

