<?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: Scripting a sync process from fabric to traditional parcels feature class in ArcGIS Parcel Fabric Questions</title>
    <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1140000#M564</link>
    <description>&lt;P&gt;Keary,&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I believe you should first prepare your legacy target feature class by copying parcel_poly to a new name like parcel_poly_test, which is OUTSIDE of a feature dataset;&lt;/LI&gt;&lt;LI&gt;Then ensure versioning is disabled and no topology is associated with this new, temp feature class;&lt;/LI&gt;&lt;LI&gt;Point your backfill script to this new, temp feature class;&lt;/LI&gt;&lt;LI&gt;Keep in mind that, unless your PF and temp feature class schemas are identical, you may have to map fields from the PF feature class to your new, temp feature class.&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Wed, 02 Feb 2022 18:42:52 GMT</pubDate>
    <dc:creator>ThomasKonzel</dc:creator>
    <dc:date>2022-02-02T18:42:52Z</dc:date>
    <item>
      <title>Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1138986#M556</link>
      <description>&lt;P&gt;I'm working on a script to synchronize between our recently implemented parcel fabric and our legacy parcels feature class currently residing in a versioned feature dataset.&lt;/P&gt;&lt;P&gt;I'm curious if others are doing something similar and whether you'd be willing to share your experience. The first part of my test is to truncate the parcels layer and I'm running into an error 999999 "A class in the topology necessitates validation being run within an edit session.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a new instances of the da.Editor and specified the connection and attempted to start an edit operation but I'm still getting the&amp;nbsp;message "A class in the topology necessitates validation being run within an edit session."&lt;/P&gt;&lt;P&gt;Any feedback is appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 17:22:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1138986#M556</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-01-31T17:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139207#M557</link>
      <description>&lt;P&gt;Good afternoon @Anonymous User,&lt;/P&gt;&lt;P&gt;We're doing something similar by backfilling our traditional parcel layers and annotation layers with the new Parcel Fabric data for legacy ArcMap and other systems.&amp;nbsp; This is just about a mandatory step if you want to continue to access the data from ArcMap via an enterprise geodatabase.&amp;nbsp; However, we first unversioned our data to remove these complexities and, because the legacy data is now read-only, we no longer needed it to be versioned.&amp;nbsp; Topology and versioning is now handled in the Parcel Fabric dataset.&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/7035"&gt;@ThomasKonzel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 00:00:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139207#M557</guid>
      <dc:creator>ThomasKonzel</dc:creator>
      <dc:date>2022-02-01T00:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139369#M558</link>
      <description>&lt;P&gt;That's helpful. Did you do the scripting in Python to export from Fabric into Enterprise GDB?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 15:03:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139369#M558</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-02-01T15:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139420#M559</link>
      <description>&lt;P&gt;Are the legacy parcels and the new fabric available as published services? We do a similar sort of process between our parcel fabric and a simple polygon layer, but prefer to use the ArcGIS Python API to do so.&lt;/P&gt;&lt;P&gt;Due to the sheer quantity of parcels, we also use the &lt;STRONG&gt;last_edited_date &lt;/STRONG&gt;field to identify parcels edited since the previous run of the script, and selectively add / edit / delete features as needed, rather than a full truncate/append process.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 16:33:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139420#M559</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-02-01T16:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139477#M560</link>
      <description>&lt;P&gt;Yes, we have a scheduled task that runs a python script nightly to backfill a stand-alone feature class having the same name as the original, versioned feature class.&amp;nbsp; This way, all the legacy apps that used the versioned feature class in the past can still connect to the new, stand-alone feature class outside the feature dataset.&amp;nbsp; It appears to be a simple process.&amp;nbsp; After reviewing the script, we don't use the last_edited_date for updates as &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;does - we push the entire dataset nightly.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 18:05:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139477#M560</guid>
      <dc:creator>ThomasKonzel</dc:creator>
      <dc:date>2022-02-01T18:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139576#M563</link>
      <description>&lt;P&gt;I figured I'd test the process in Model builder and here's what I get when I do this:&lt;/P&gt;&lt;P&gt;Error 160034: A class in the topology necessitates validation being run within an edit session.&lt;/P&gt;&lt;P&gt;In the database I have a mix of the feature datasets that are part of the parcel fabric and the feature dataset copied and pasted from SDE. Everything in the Land Records Feature Dataset is from the Legacy Parcels Feature Dataset.&lt;/P&gt;&lt;P&gt;I don't have another test instance to test the process in so I figured this is the closest I can get for now.&lt;/P&gt;&lt;P&gt;Is this an ok method to test the process?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 21:10:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1139576#M563</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-02-01T21:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1140000#M564</link>
      <description>&lt;P&gt;Keary,&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I believe you should first prepare your legacy target feature class by copying parcel_poly to a new name like parcel_poly_test, which is OUTSIDE of a feature dataset;&lt;/LI&gt;&lt;LI&gt;Then ensure versioning is disabled and no topology is associated with this new, temp feature class;&lt;/LI&gt;&lt;LI&gt;Point your backfill script to this new, temp feature class;&lt;/LI&gt;&lt;LI&gt;Keep in mind that, unless your PF and temp feature class schemas are identical, you may have to map fields from the PF feature class to your new, temp feature class.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Wed, 02 Feb 2022 18:42:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1140000#M564</guid>
      <dc:creator>ThomasKonzel</dc:creator>
      <dc:date>2022-02-02T18:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1140034#M565</link>
      <description>&lt;P&gt;Good afternoon&amp;nbsp;@Anonymous User&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't feel like my previous list was sufficient so I updated it here.&amp;nbsp; This may be a better set of steps to follow.&amp;nbsp; I'd appreciate if &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;could also review and provide additional feedback.&amp;nbsp; My steps may not be complete.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Use ArcGIS Pro to export your Pro Parcel Fabric Tax_Parcel feature class to an XML Workspace Document (Schema Only)&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;This will create an empty XML document containing only the schema&lt;/LI&gt;&lt;/UL&gt;&lt;LI&gt;Use ArcCatalog to import this XML Workspace Document schema into your test geodatabase as a new feature class OUTSIDE a feature dataset&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;Name this new feature class the same as the original but with &lt;STRONG&gt;_test&lt;/STRONG&gt; appended to the end, like Tax_Parcel_test&lt;/LI&gt;&lt;LI&gt;Ensure there is no versioning or topology associated with this new, test feature class&lt;/LI&gt;&lt;LI&gt;This should yield a ArcMap ready feature class to receive the Pro Parcel Fabric features&lt;/LI&gt;&lt;/UL&gt;&lt;LI&gt;Point your script it at this new, test feature class instead of your actual Parcel Fabric Tax_Parcel feature class within the feature dataset.&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;Keep in mind that you may need to map fields if you’re not using an identical copy of the schema.&lt;/LI&gt;&lt;/UL&gt;&lt;/OL&gt;&lt;P&gt;If I’m not mistaken, my team is using the Pro python because Desktop doesn't have access to the Pro Parcel Fabric.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 19:29:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1140034#M565</guid>
      <dc:creator>ThomasKonzel</dc:creator>
      <dc:date>2022-02-02T19:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1140055#M566</link>
      <description>&lt;P&gt;It sounds like it'd work, but in my org we don't use ArcMap, and almost never use arcpy in our automated scripts, as everything is in published feature services. I don't know that I have much feedback for this particular workflow, but utilizing the XML schema to ensure the fields match is a great step to include in the process.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 19:57:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1140055#M566</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-02-02T19:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting a sync process from fabric to traditional parcels feature class</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1142127#M578</link>
      <description>&lt;P&gt;Another suggestion would be to join the Pro and ArcMap polygon tables and create a database view.&amp;nbsp; This view can be filtered by dates, parcel types, branch versions, etc.&amp;nbsp; The feature classes remain editable which essentially updates the view.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is some more info on querying branch versioned feature classes and creating views.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-parcel-fabric-documents/query-branch-versioned-parcels/ta-p/1057269" target="_blank"&gt;Query Branch Versioned Parcels - Esri Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 15:26:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-questions/scripting-a-sync-process-from-fabric-to/m-p/1142127#M578</guid>
      <dc:creator>KenGalliher1</dc:creator>
      <dc:date>2022-02-09T15:26:00Z</dc:date>
    </item>
  </channel>
</rss>

