<?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: Auto populate Related table from Parent table using Arcade in AGOL? in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1368931#M56781</link>
    <description>&lt;P&gt;I would get the same error because I was not referencing the correct layer_id from the map.&lt;/P&gt;&lt;P&gt;Are you sure your layer_id is "gravesiteid"?&amp;nbsp; From my limited experience it is usually not that descriptive.&lt;/P&gt;&lt;P&gt;For ex. a layer_id in one of my maps for a Road layer named "Roads" is "18cf513418f-layer-3".&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only way I have found so far to get a layer_id without using code is to use ArcGIS Assistant to view the JSON of the web map.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 11 Jan 2024 15:03:15 GMT</pubDate>
    <dc:creator>KGalluccio</dc:creator>
    <dc:date>2024-01-11T15:03:15Z</dc:date>
    <item>
      <title>Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1363915#M56508</link>
      <description>&lt;P&gt;Is is possible to auto populate fields in a related table from the selected record in the parent table using Arcade in AGOL?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a AGOL web map that includes one hosted feature layer with a related table with a one to many relationship.&amp;nbsp; The number of features in the feature layer is static.&amp;nbsp; Using forms, the map allows the user to select a feature and edit it's attributes, including adding records to the related table.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The work process is that the current attributes of the selected feature need to be added as a new record in the related table, and then updated with new information.&lt;/P&gt;&lt;P&gt;When the user selects a feature to edit, then clicks to add a record to the related table, I would like the fields to auto populated with the selected features attributes.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 13:14:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1363915#M56508</guid>
      <dc:creator>KGalluccio</dc:creator>
      <dc:date>2023-12-22T13:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1363992#M56510</link>
      <description>&lt;P&gt;I've been implementing this arcade script in the smart forms for my related tables to auto populate the parent ID field in the related table, but you could use it for any additional fields as well. So this script would be applied to a calculated expression on the field you are trying to populate (my relationship class is based on GlobalIDs):&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var parent_id = $feature.ParentGUID

Var related_Features = FeatureSetById($datastore, "layerid")

Var parent_Feature = First(Filter(related_Features, 'GlobalID = @parent_id'))

if(parent_Feature == null){
return
}
else {
return parent_Feature.FACILITYID
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 15:53:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1363992#M56510</guid>
      <dc:creator>marksm_macomb</dc:creator>
      <dc:date>2023-12-22T15:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1364114#M56517</link>
      <description>&lt;P&gt;No this is not directly possible. Here are your options:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;User does second edit on point feature&lt;/LI&gt;&lt;LI&gt;Automated process to check for new related records, update parent, then flag related table field as processed&lt;/LI&gt;&lt;LI&gt;Set up the edit to use Survey123 Inbox. Custom url scheme, limit repeat count, calculations. User adds and updates directly&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I think option 2 is best. Use ArcGIS Notebooks to run a python script every 15min. Cleanest data control without exposing the direct disability of the parent point to end users.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 22:15:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1364114#M56517</guid>
      <dc:creator>ChristopherCounsell</dc:creator>
      <dc:date>2023-12-22T22:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1366271#M56662</link>
      <description>&lt;P&gt;Thank you.&amp;nbsp; This worked well.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 14:45:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1366271#M56662</guid>
      <dc:creator>KGalluccio</dc:creator>
      <dc:date>2024-01-04T14:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1366725#M56687</link>
      <description>&lt;P&gt;I read this incorrectly as populating the parent from the related record update. The above is possible.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 09:42:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1366725#M56687</guid>
      <dc:creator>ChristopherCounsell</dc:creator>
      <dc:date>2024-01-05T09:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1368900#M56779</link>
      <description>&lt;P&gt;I am looking to populate the gravesiteid field from the parent into the gravesite id field in the related table, but running into issues&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Laura_0-1704983378862.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/91213i88C7530EBA3FC742/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Laura_0-1704983378862.png" alt="Laura_0-1704983378862.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Could anyone write out what goes where?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 15:13:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1368900#M56779</guid>
      <dc:creator>Laura</dc:creator>
      <dc:date>2024-01-11T15:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1368931#M56781</link>
      <description>&lt;P&gt;I would get the same error because I was not referencing the correct layer_id from the map.&lt;/P&gt;&lt;P&gt;Are you sure your layer_id is "gravesiteid"?&amp;nbsp; From my limited experience it is usually not that descriptive.&lt;/P&gt;&lt;P&gt;For ex. a layer_id in one of my maps for a Road layer named "Roads" is "18cf513418f-layer-3".&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only way I have found so far to get a layer_id without using code is to use ArcGIS Assistant to view the JSON of the web map.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 11 Jan 2024 15:03:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1368931#M56781</guid>
      <dc:creator>KGalluccio</dc:creator>
      <dc:date>2024-01-11T15:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1368935#M56782</link>
      <description>&lt;P&gt;I tried putting some #s in, but still get an error. I am very new to this so I guess I'm confused on what it is asking for.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Laura_0-1704986177510.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/91229i39A549A158E7863D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Laura_0-1704986177510.png" alt="Laura_0-1704986177510.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Update:&lt;/P&gt;&lt;P&gt;This is what ended up working for me&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Laura_0-1707228995908.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/93822iBD5A64F67421C9BB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Laura_0-1707228995908.png" alt="Laura_0-1707228995908.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>Tue, 06 Feb 2024 14:16:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1368935#M56782</guid>
      <dc:creator>Laura</dc:creator>
      <dc:date>2024-02-06T14:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1368986#M56786</link>
      <description>&lt;P&gt;Issue might be in your third line for the filter.&amp;nbsp; You have it filtering to 'gravesiteid = @gravesiteID'&lt;/P&gt;&lt;P&gt;I think it should be 'gravesiteid=' + gravesiteID.&lt;/P&gt;&lt;P&gt;Here is the code I am using that is working.&amp;nbsp; In the featuresetbyid I am adding a third parameter to just grab the specific field.&lt;/P&gt;&lt;P&gt;var join_ID = $feature.ID&lt;/P&gt;&lt;P&gt;var fs_prevprojyear = FeatureSetById($map, "18cf513418f-layer-3", ['Project_Ye'])&lt;/P&gt;&lt;P&gt;var filter_relate_feature = First(Filter(fs_prevprojyear, 'ID=' + join_ID))&lt;/P&gt;&lt;P&gt;return filter_relate_feature.Project_Ye&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 16:27:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1368986#M56786</guid>
      <dc:creator>KGalluccio</dc:creator>
      <dc:date>2024-01-11T16:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1369554#M56817</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/578538"&gt;@Laura&lt;/a&gt;&amp;nbsp; I think the problem might be in your FeatureSetById expression as well, specifically with the layer id. You can auto-populate the FeatureSetById expression by using the profile variables in the arcade editor by going here:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="marksm_macomb_0-1705067242706.png" style="width: 691px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/91421i5858B58CCFB84F87/image-dimensions/691x296?v=v2" width="691" height="296" role="button" title="marksm_macomb_0-1705067242706.png" alt="marksm_macomb_0-1705067242706.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then choose the arrow next to the layer you are interested in and it will give you the expression with the correct layer id already filled out.&lt;/P&gt;&lt;P&gt;Another way to check your layer ID is to go to the overview page for your layer and look at the URL:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="marksm_macomb_1-1705069304620.png" style="width: 672px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/91430i171CDD8D2C84B945/image-dimensions/672x27?v=v2" width="672" height="27" role="button" title="marksm_macomb_1-1705069304620.png" alt="marksm_macomb_1-1705069304620.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The blue highlighted section is the ITEM Id, and the green highlighted part is the LAYER Id.&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2024 14:23:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1369554#M56817</guid>
      <dc:creator>marksm_macomb</dc:creator>
      <dc:date>2024-01-12T14:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1378594#M57290</link>
      <description>&lt;P&gt;Hi, does anyone know if is this possible when you have more than one parent feature layer (points, line and polygon) feeding into one related table (inspection records)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 12:38:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1378594#M57290</guid>
      <dc:creator>cat206</dc:creator>
      <dc:date>2024-02-06T12:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1383826#M57539</link>
      <description>&lt;P&gt;Will this work to populate a new record of related table? This fieldmap was created from three feature classes related to a single table, then published as a referenced feature layer to AGOL. The field map users only edit the table with a new record. Can the functionality that allows for autopopulating for data from a feature with the FeatureSetbyName be used in the conditional expression on a field in a FieldMap form?&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="questions for ESRI community.PNG" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/95108i103FA8CDA97326F2/image-size/large?v=v2&amp;amp;px=999" role="button" title="questions for ESRI community.PNG" alt="questions for ESRI community.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2024 21:32:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1383826#M57539</guid>
      <dc:creator>AmyCleare</dc:creator>
      <dc:date>2024-02-17T21:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1488591#M59672</link>
      <description>&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;I'm new to expressions in AGOL.&lt;/P&gt;&lt;P&gt;I have a related dataset and table published, the relationship is based on GlobalIDs. I'd like to populate in the related table a field named 'Bore_ID' from the field in my spatial data named 'Bore_ID_' and I am struggling to figure it out following your method. Any help would be VERY much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 00:13:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1488591#M59672</guid>
      <dc:creator>AdminNCCMA</dc:creator>
      <dc:date>2024-06-11T00:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1499137#M59926</link>
      <description>&lt;P&gt;I'm hoping someone here might have an idea of a similar issue I am having.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to populate my related table with a parent table field. I do not get any errors when I use the calculation in AGOL on the field, but as there is no undo I would really prefer to do the calculation in ArcPro.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using the exact same code that would work in AGOL in my calculate field in ArcPro, I get an error that they cannot find the related tables.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 15:53:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1499137#M59926</guid>
      <dc:creator>Marisa_Kordecki</dc:creator>
      <dc:date>2024-06-28T15:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1499150#M59927</link>
      <description>&lt;P&gt;I do not know why this is incorrectly marked as a solution.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 15:59:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1499150#M59927</guid>
      <dc:creator>Marisa_Kordecki</dc:creator>
      <dc:date>2024-06-28T15:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1508627#M60427</link>
      <description>&lt;P&gt;I have a very similar workflow that needs a solution in ArcGIS Online Arcade.&lt;/P&gt;&lt;P&gt;A map was created with feature service containing a feature layer and its related table. The feature layer and related table both have an address field. The address field in the feature layer is calculated based upon an Arcade expression. The address field in the related table needs to be calculated based upon the related record's feature.&lt;/P&gt;&lt;P&gt;The workflow has a user creating a new feature and the Arcade expression populates the feature's address field. The user then creates a record related to the new feature and enters attribute values. An Arcade expression needs to pull the address from the feature into the related table record.&lt;/P&gt;&lt;P&gt;I can't seem to get the provided solution to run. Anyone have additional ideas?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 15:10:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1508627#M60427</guid>
      <dc:creator>AdamAull</dc:creator>
      <dc:date>2024-07-23T15:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1517634#M60758</link>
      <description>&lt;P&gt;Has there been any progress on this? Similar situation where I have point layer with a PairID field that I want passed to the related table. This is a 1:M, Unfortunately, the relationship was built on different field, so PairID is not carried over from the point to the related table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2024 18:23:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1517634#M60758</guid>
      <dc:creator>NathanBush1</dc:creator>
      <dc:date>2024-08-09T18:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1517675#M60760</link>
      <description>Hello Nathan,&lt;BR /&gt;&lt;BR /&gt;Unfortunately I haven't been able to find an Arcade solution to this issue yet. The workaround I have is using Python run on a workstation as a task to pull the address from the source feature class and populate the field in the related table. Python could work in a Notebook, but I'm not willing to spend the credits each time the task runs.&lt;BR /&gt;&lt;BR /&gt;-Adam&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Aug 2024 19:07:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1517675#M60760</guid>
      <dc:creator>AdamAull</dc:creator>
      <dc:date>2024-08-09T19:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1528601#M61151</link>
      <description>&lt;P&gt;Thanks for sharing this! I am trying to use this in my Organization's Field Mowing Operation. We have an Open Fields layer with a related Mowing table (1:M) based of the Field LINKID (' Park_Area'+ '-' + 'Filed ID'). I'd like to be able to pull the attributes for Park Area and Field ID automatically into the new related record.&lt;/P&gt;&lt;P&gt;I suppose I have two questions:&lt;BR /&gt;&lt;BR /&gt;A. If I understand correctly, this is possible?&lt;/P&gt;&lt;P&gt;B. I am a little lost as to where this arcade expression is placed as I don't see an option to add Arcade Scripts to the related table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for any help!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 13:25:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1528601#M61151</guid>
      <dc:creator>MonmouthNJGIS</dc:creator>
      <dc:date>2024-08-28T13:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Auto populate Related table from Parent table using Arcade in AGOL?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1528613#M61152</link>
      <description>&lt;P&gt;Thanks for sharing this! I am trying to use this in my Organization's Field Mowing Operation. We have an Open Fields layer with a related Mowing table (1:M) based of the Field LINKID (' Park_Area'+ '-' + 'Filed ID'). I'd like to be able to pull the attributes for Park Area and Field ID automatically into the new related record.&lt;/P&gt;&lt;P&gt;I suppose I have two questions:&lt;BR /&gt;&lt;BR /&gt;A. If I understand correctly, this is possible?&lt;/P&gt;&lt;P&gt;B. I am a little lost as to where this arcade expression is placed as I don't see an option to add Arcade Scripts to the related table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for any help!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 13:26:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/auto-populate-related-table-from-parent-table/m-p/1528613#M61152</guid>
      <dc:creator>MonmouthNJGIS</dc:creator>
      <dc:date>2024-08-28T13:26:32Z</dc:date>
    </item>
  </channel>
</rss>

