<?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: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels, in ArcGIS Parcel Fabric Questions</title>
    <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239443#M60</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you get a chance to see this meetup?&amp;nbsp;&lt;A href="https://community.esri.com/videos/6468"&gt; Video Link : 6468&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We used an Arcade expression to retrieve the historic parcels in the pop-up.&lt;/P&gt;&lt;P&gt;It looks like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/502172_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a custom expression in your popup (right-click the parcel layer --&amp;gt; Configure Pop-ups) and paste this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/502173_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;Expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var RecordID = $feature.CreatedByRecord;&lt;BR /&gt;var sql = "RetiredByRecord = '" + RecordID + "'";&lt;BR /&gt;var fsHisoricParcels = FeatureSetByName($map, 'Historic Tax', ["Name"], false);&lt;BR /&gt;var fsParentParcels = Filter(fsHisoricParcels, sql);&lt;BR /&gt;var cnt = Count(fsParentParcels);&lt;BR /&gt;if (cnt ==0) {return "No Parent Parcels found"}&lt;BR /&gt;else{&lt;BR /&gt; var ParentParcelsNames = cnt + " Parent Parcels = ";&lt;/P&gt;&lt;P&gt;for (var HistoricParcel in fsParentParcels){&lt;BR /&gt; ParentParcelsNames += (HistoricParcel.Name + "; ");&lt;BR /&gt; }&lt;BR /&gt; return ParentParcelsNames;&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Aug 2020 12:20:04 GMT</pubDate>
    <dc:creator>AmirBar-Maor</dc:creator>
    <dc:date>2020-08-03T12:20:04Z</dc:date>
    <item>
      <title>ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239434#M51</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;In the screenshots below, parcel #16 and #23 are merged to produce parcel #125. Now. Identifying parcel #125 doesn’t tell its history (that part of it is derived from 16 and the other is from 23).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;What could be the issue here?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/493390_Clip_1280.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji jive-image image-2 j-img-original" src="https://community.esri.com/legacyfs/online/493412_Clip_1281.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji jive-image image-3 j-img-original" src="https://community.esri.com/legacyfs/online/493413_Clip_1282.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2020 07:08:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239434#M51</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-05-26T07:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239435#M52</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H3 id="toc-hId-1451110269"&gt;Using an Arcade Expression&lt;/H3&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way to accomplish such a thing is to use an Arcade Expression in your pop-up. Because all parcel features are tied together by the &lt;STRONG&gt;Records&lt;/STRONG&gt; table, we can use the &lt;STRONG&gt;createdbyrecord &lt;/STRONG&gt;and &lt;STRONG&gt;retiredbyrecord &lt;/STRONG&gt;along with the &lt;STRONG&gt;Filter&lt;/STRONG&gt; function in Arcade.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code we use to find all historic parcels related to the parcel that is clicked on:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;// grab record globalid from clicked parcel
var record = $feature.createdbyrecord

// set empty string var for popup
var outstr = ''

// filter parcel feature class for parcels retired by same record as defined above
var historic = Filter(FeatureSetByName($datastore, "Parcels"), "retiredbyrecord = @record")

// iterate through return featureset and append the parcel number to the popup string
for (var h in historic){
&amp;nbsp;&amp;nbsp;&amp;nbsp; outstr += h.name + '\n'
}

// return string of historic parcels
return outstr&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;In practice, this is what it looks like (in a web map, but works the same in Pro):&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/493431_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using this same type of expression, we can expand the popup to include:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Details from the record itself (date, document number)&lt;/LI&gt;&lt;LI&gt;Other parcels created by the same record&lt;/LI&gt;&lt;LI&gt;In the case of a complex split/combo record, a subset of historic parcels which actually intersect with the clicked parcel geometry, resulting in something like the parcel's genealogy&lt;/LI&gt;&lt;LI&gt;Parcel "grandparents", i.e., the historic parcels of the historic parcels. Depending on how much historic information your fabric has, this can be resource-intensive!&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;H3 id="toc-hId--1101046692"&gt;Using a Query Layer&lt;/H3&gt;&lt;P&gt;If you're just reviewing the data separately from your editing workspace, another way to accomplish this is with a &lt;STRONG&gt;Query Layer&lt;/STRONG&gt;. Keep in mind that you've really got to understand the underlying table structure to get the features you want, but a good query layer can give the appearance of a hard-coded "parent parcel" attribute, without such a field needing to exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a brief example of a query layer you might use. Our fabric is in Postgres, by the way.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;select distinct on (p.objectid)
&amp;nbsp;&amp;nbsp; p.objectid,
&amp;nbsp;&amp;nbsp; p.name,
&amp;nbsp;&amp;nbsp; p1.name as parent_parcel,
&amp;nbsp;&amp;nbsp; p.shape
from sdo.ownershipparcels p
join sdo.ownershipparcels p1 on p.createdbyrecord = p1.retiredbyrecord
where p.gdb_branch_id = 0 and p.gdb_is_delete = 0
order by p.objectid, p.gdb_archive_oid desc, p1.gdb_archive_oid desc&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If your parcel has more than one parent parcel, as in a parcel merge or a more complex situation, you will need to do some fancier SQL to avoid duplicating rows in the resulting table, but I'll leave that to you if you go that route. Arcade is probably all you need for the popup.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:14:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239435#M52</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-12-12T16:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239436#M53</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;Thanks Josh&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;Where I need to stuck the codes you have already provided in order to get the parcel history as it is identified?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/493459_Clip_1294.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2020 15:34:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239436#M53</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-05-26T15:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239437#M54</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right-click the feature class in the contents and click "Configure Pop-Up".&lt;/P&gt;&lt;P&gt;On the panel that opens there is a button that says "Expressions".&lt;/P&gt;&lt;P&gt;From there, you can create a new expression, which can be added to your popup.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2020 16:31:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239437#M54</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2020-05-26T16:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239438#M55</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;I managed to configure the pop-up as you have already indicated but it appear to fail to bring the parcel history.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/493625_Clip_1297.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji jive-image image-2 j-img-original" src="https://community.esri.com/legacyfs/online/493626_Clip_1298.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji jive-image image-3 j-img-original" src="https://community.esri.com/legacyfs/online/493627_Clip_1299.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2020 16:04:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239438#M55</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-05-27T16:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239439#M56</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/4230"&gt;Jamal NUMAN&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The record associated to the new parcel (in your case "106") does not have historical parcels associated to it as that record is associated to a parcel that is current, and thus will not show anything under the historical layer on the pop-up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you&amp;nbsp;click on any of the historical parcels however, the record associated to&amp;nbsp;any&amp;nbsp;of them will show the historical parcel associated to it since&amp;nbsp;the parcel has been&amp;nbsp;made historical.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parcel Fabric works in a record-driven workflow and thus tracks all the parcels associated to the legal records from which they are created (or modified).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To better illustrate my&amp;nbsp;explanation, please refer to the picture below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/493783_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see above, the historical parcel is listed under the record from which it is created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Irvan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2020 19:13:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239439#M56</guid>
      <dc:creator>IrvanSalim</dc:creator>
      <dc:date>2020-05-28T19:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239440#M57</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;In the screenshots below, I have repeated merging parcel #30 and #38. The result is parcel #126. Identifying parcel #126 doesn’t show its origins that it is created from #30 and #38.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;What could be the best practice to merge fabric layers so that their history is obtained as result parcel is identified?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/493985_Clip_1311.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji jive-image image-2 j-img-original" src="https://community.esri.com/legacyfs/online/493986_Clip_1312.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black;"&gt;&lt;IMG alt="" class="jive-emoji jive-image image-3 j-img-original" src="https://community.esri.com/legacyfs/online/493987_Clip_1313.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2020 07:15:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239440#M57</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-05-30T07:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239441#M58</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The parcel fabric tracks the parcel lineage.&lt;/P&gt;&lt;P&gt;We have plans to expose the parcel lineage in a dedicated graphical manner (think of a 'family tree') in future releases.&lt;/P&gt;&lt;P&gt;Amir&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2020 10:07:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239441#M58</guid>
      <dc:creator>AmirBar-Maor</dc:creator>
      <dc:date>2020-06-08T10:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239442#M59</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-left: 0in;"&gt;Hi Irvan,&lt;/P&gt;&lt;P style="margin-left: 0in;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0in;"&gt;I couldn’t figure out the best practice to merge parcels to ensure keeping the history.&lt;/P&gt;&lt;P style="margin-left: 0in;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0in;"&gt;In the screenshots below, I wanted to merge parcel#14 with parcel#7.&lt;/P&gt;&lt;P style="margin-left: 0in;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, I created a record and named it as 14+1&lt;/P&gt;&lt;P&gt;Then, I made the 14+7 as an active record&lt;/P&gt;&lt;P&gt;Next, the merge is performed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, as the parcel#14+7 is identified, it doesn’t bring the history that it is derived from parcel#14 (when clicking upper parcel) or parcel#7 (when clicking lower parcel)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What might be missing here that caused the failure in bringing the history of merged parcel#7+14&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi Amir,&lt;/P&gt;&lt;P&gt;Correct. What we need is to be able to get “family tree”! is this coming in 2.6?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/500866_Clip_1805.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji jive-image image-2 j-img-original" src="https://community.esri.com/legacyfs/online/500870_Clip_1806.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji jive-image image-3 j-img-original" src="https://community.esri.com/legacyfs/online/500871_Clip_1807.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2020 06:10:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239442#M59</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-07-21T06:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239443#M60</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you get a chance to see this meetup?&amp;nbsp;&lt;A href="https://community.esri.com/videos/6468"&gt; Video Link : 6468&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We used an Arcade expression to retrieve the historic parcels in the pop-up.&lt;/P&gt;&lt;P&gt;It looks like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/502172_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a custom expression in your popup (right-click the parcel layer --&amp;gt; Configure Pop-ups) and paste this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/502173_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;Expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var RecordID = $feature.CreatedByRecord;&lt;BR /&gt;var sql = "RetiredByRecord = '" + RecordID + "'";&lt;BR /&gt;var fsHisoricParcels = FeatureSetByName($map, 'Historic Tax', ["Name"], false);&lt;BR /&gt;var fsParentParcels = Filter(fsHisoricParcels, sql);&lt;BR /&gt;var cnt = Count(fsParentParcels);&lt;BR /&gt;if (cnt ==0) {return "No Parent Parcels found"}&lt;BR /&gt;else{&lt;BR /&gt; var ParentParcelsNames = cnt + " Parent Parcels = ";&lt;/P&gt;&lt;P&gt;for (var HistoricParcel in fsParentParcels){&lt;BR /&gt; ParentParcelsNames += (HistoricParcel.Name + "; ");&lt;BR /&gt; }&lt;BR /&gt; return ParentParcelsNames;&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2020 12:20:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239443#M60</guid>
      <dc:creator>AmirBar-Maor</dc:creator>
      <dc:date>2020-08-03T12:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239444#M61</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jamal and all,&lt;/P&gt;&lt;P&gt;Here is another capability of AtcGIS to explore: Link Charts (Pro 2.6 +) to get a graphical representation of parcel lineage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How?&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the Insert Tab --&amp;gt;&amp;nbsp; New Link Chart&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/502842_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add the parcel layer tp the map and make sure it has no definition queries (it has to show both current and historic parcels).&lt;/P&gt;&lt;P&gt;Add Records and Parcels as entities:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/502843_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define the relationships between records and parcels&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/502850_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modify the diagram using the Diagram ribbon tab: layout (hierarchy), labels, symbology:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/502851_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can also access in the Contents pane:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/502852_pastedImage_5.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And get a link chart similar to this&amp;nbsp; in which Record A create parcel 1000 &amp;amp; 1001, then record B (merge) retired those parcels (in red dashed line) and created parcel 2000:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-6 jive-image" src="https://community.esri.com/legacyfs/online/502853_pastedImage_6.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is experimental at this stage as it would probably not scale to show millions of parcels in a diagram, but can help us define what we want to see in the popup / Parcel Lineage interface.&lt;/P&gt;&lt;P&gt;Amir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2020 08:33:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239444#M61</guid>
      <dc:creator>AmirBar-Maor</dc:creator>
      <dc:date>2020-08-10T08:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.5: “Pop-up” fails to bring the history of merged fabric parcels,</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239445#M62</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-left: 0cm;"&gt;Thanks Amir for the help and the useful input.&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;I tried the graphical chart but finds out it doesn’t provide the tree for the history.&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;For example, in the screenshot below&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;Parcel#23 is split into 23/1 &amp;amp; 23/2&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;Then parcel#23/1 is split into 23/1/1 &amp;amp; 23/1/2&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;Then the tree needs to appear as it’s marked in orange (in the same screenshot)&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&lt;/P&gt;&lt;P style="margin-left: 0cm;"&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/503612_Clip_78.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2020 09:04:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/arcgis-pro-2-5-pop-up-fails-to-bring-the-history/m-p/239445#M62</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2020-08-17T09:04:33Z</dc:date>
    </item>
  </channel>
</rss>

