Want to learn more about the Historic part of fabric or the historic layer on creating it, there any videos or recommendation that can help me? thank you and have good day
Solved! Go to Solution.
The historic "layer" is actually just the same layer as your active parcels. When you pull a Parcel Fabric into ArcGIS Pro, it automatically creates two entries in the table of contents per parcel layer, one for active, one for historic.
The way Pro keeps these features straight is using definition queries. If you look at the query on your active parcels, you'll see:
retiredbyrecord IS NULL
Meaning that any parcel without a value in the retiredbyrecord GUID field will appear. When you retire a parcel in the parcel fabric, the GlobalID of the active record is inserted into that field.
Similarly, historic parcels have the query:
retiredbyrecord IS NOT NULL
Meaning that any parcel with a value in that field will appear there.
Again, your active and historic parcels are all in a single layer, and it's the auto-applied definition query that is making them appear separate.
The historic "layer" is actually just the same layer as your active parcels. When you pull a Parcel Fabric into ArcGIS Pro, it automatically creates two entries in the table of contents per parcel layer, one for active, one for historic.
The way Pro keeps these features straight is using definition queries. If you look at the query on your active parcels, you'll see:
retiredbyrecord IS NULL
Meaning that any parcel without a value in the retiredbyrecord GUID field will appear. When you retire a parcel in the parcel fabric, the GlobalID of the active record is inserted into that field.
Similarly, historic parcels have the query:
retiredbyrecord IS NOT NULL
Meaning that any parcel with a value in that field will appear there.
Again, your active and historic parcels are all in a single layer, and it's the auto-applied definition query that is making them appear separate.
Here is a help link that covers the parcel fabric layer in detail - including historic parcels
https://pro.arcgis.com/en/pro-app/latest/help/data/parcel-editing/parcelfabricassociatedlayers.htm