<?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 How to persist editor tracking info during Apply Asset package? in ArcGIS Utility Network Questions</title>
    <link>https://community.esri.com/t5/arcgis-utility-network-questions/how-to-persist-editor-tracking-info-during-apply/m-p/269963#M239</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need to migrate data from GN to UN. Original data contains editor tracking info already. I have prepared AssetPackage with transformed data that contains original editor tracking fields.&lt;/P&gt;&lt;P&gt;During GP tool Apply Asset Package with Load Data option set all data has been loaded, but tracking fields are overwritten with current time and connected user info.&lt;/P&gt;&lt;P&gt;How to persist original editor tracking information from source data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Sep 2019 05:12:58 GMT</pubDate>
    <dc:creator>mrasiukevicius</dc:creator>
    <dc:date>2019-09-13T05:12:58Z</dc:date>
    <item>
      <title>How to persist editor tracking info during Apply Asset package?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/how-to-persist-editor-tracking-info-during-apply/m-p/269963#M239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need to migrate data from GN to UN. Original data contains editor tracking info already. I have prepared AssetPackage with transformed data that contains original editor tracking fields.&lt;/P&gt;&lt;P&gt;During GP tool Apply Asset Package with Load Data option set all data has been loaded, but tracking fields are overwritten with current time and connected user info.&lt;/P&gt;&lt;P&gt;How to persist original editor tracking information from source data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2019 05:12:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/how-to-persist-editor-tracking-info-during-apply/m-p/269963#M239</guid>
      <dc:creator>mrasiukevicius</dc:creator>
      <dc:date>2019-09-13T05:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to persist editor tracking info during Apply Asset package?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/how-to-persist-editor-tracking-info-during-apply/m-p/269964#M240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right now, you would need to create your UN and add the domain network manually, disable editor tracking, apply the asset package, and re-enable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are working on a solution for this is 2.5 where editor tracking will be maintained by default in import/export asset package.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2019 22:50:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/how-to-persist-editor-tracking-info-during-apply/m-p/269964#M240</guid>
      <dc:creator>PaulLeBlanc1</dc:creator>
      <dc:date>2019-09-18T22:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to persist editor tracking info during Apply Asset package?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/how-to-persist-editor-tracking-info-during-apply/m-p/269965#M241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the following Python Code to disable editor tracking when applying an asset package and the Editor Tracking fields will be maintained when it appends the data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to Stage the Utility Network, Apply Asset Package schema only ( This is important in order for it to work ), run the following Python Script, then Apply Asset Package with load data box checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enterpriseGdb = r"C:\Projects\ENTERPRISE DATABASE PATH"&lt;BR /&gt; &lt;BR /&gt;tables = [&lt;BR /&gt; "{}\\{}\\ElectricDistributionAssembly".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ElectricDistributionDevice".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ElectricDistributionJunction".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ElectricDistributionLine".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ElectricDistributionSubnetLine".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ElectricTransmissionAssembly".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ElectricTransmissionDevice".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ElectricTransmissionJunction".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ElectricTransmissionLine".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ElectricTransmissionSubnetLine".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\ServiceTerritory".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\StructureBoundary".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\StructureJunction".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\{}\\StructureLine".format(enterpriseGdb, "UtilityNetwork"),&lt;BR /&gt; "{}\\JointUse".format(enterpriseGdb),&lt;BR /&gt;]&lt;BR /&gt; &lt;BR /&gt;for table in tables:&lt;BR /&gt; arcpy.management.DisableEditorTracking(table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After you load the data then run the same script again but change the last line of the code to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;arcpy.management.EnableEditorTracking(table)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I don't think there is a way to export an asset package and maintain the editor tracking fields yet.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope this helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #1e1e1e; margin-top: 0pt; margin-bottom: 0pt;"&gt;&lt;/P&gt;&lt;DIV style="display: none;"&gt;&lt;/DIV&gt;&lt;DIV style="display: none;"&gt;&lt;/DIV&gt;&lt;DIV style="display: none;"&gt;6.2.6&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Sep 2019 04:03:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/how-to-persist-editor-tracking-info-during-apply/m-p/269965#M241</guid>
      <dc:creator>KevinKirkwood</dc:creator>
      <dc:date>2019-09-29T04:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to persist editor tracking info during Apply Asset package?</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/how-to-persist-editor-tracking-info-during-apply/m-p/269966#M242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;untools 2.4.2* has the option to maintain editor tracking (it is disabled by default) for both import/export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before running the GP tool, open a Python window and execute the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;import untools&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;untools.common.settings.MAINTAIN_EDITOR_TRACKING = True&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* it is currently planned to be released in the first week of October&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2019 19:05:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/how-to-persist-editor-tracking-info-during-apply/m-p/269966#M242</guid>
      <dc:creator>PaulLeBlanc1</dc:creator>
      <dc:date>2019-09-30T19:05:51Z</dc:date>
    </item>
  </channel>
</rss>

