<?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: Editor Tracking – High Precision Date Fields issue in ArcGIS Pro. in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1585095#M93036</link>
    <description>&lt;P&gt;I am at 3.3 and seeing this behavior as well.&amp;nbsp; Thank you two for posting all of this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Feb 2025 18:46:28 GMT</pubDate>
    <dc:creator>CarmenDurham</dc:creator>
    <dc:date>2025-02-13T18:46:28Z</dc:date>
    <item>
      <title>Editor Tracking – High Precision Date Fields issue in ArcGIS Pro.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1565264#M90900</link>
      <description>&lt;P&gt;I have an issue, and it appears ArcGIS pro has an issue as well with the editor tracking date fields in Arc GIS Online.&amp;nbsp; These fields (created_date, last_edited_date) are represented as High Precision in AGOL.&amp;nbsp; If I Export the features to a new geodatabase, I cannot turn on editor tracking using the High Precision date fields, I do not get the option to use the created_date, last_edited_date.&amp;nbsp; When I chose the Use Default option, I get an error (EnableEditorTracking: ERROR 001217).&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I export to geodatabase from the ArcGIS online interface – download – Unzip and do the same process, the date fields are no longer high precision. This works for my process, but is much slower than doing it in ArcGIS Pro.&lt;/P&gt;&lt;P&gt;Has anybody else seen this behavior and is there a possible bug or workaround?&lt;/P&gt;&lt;P&gt;ArcGIS Pro 3.4.0&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 18:35:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1565264#M90900</guid>
      <dc:creator>MikeLongtine</dc:creator>
      <dc:date>2024-12-05T18:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Tracking – High Precision Date Fields issue in ArcGIS Pro.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1565301#M90908</link>
      <description>&lt;P&gt;This is a open bug with Enable Editor tracking in ArcGIS Pro. You can ask Esri Support to attach you to&amp;nbsp;&lt;A href="https://my.esri.com/#/support/bugs/bugs?bugNumber=BUG-000164474" target="_self"&gt;BUG-000164474&lt;/A&gt;&amp;nbsp;to track progress on resolving the issue.&lt;/P&gt;&lt;P&gt;Another workaround, though also time consuming, is to add two new fields that are low-precision date fields, calculate their values from the corresponding high-precision fields, delete the high-precision fields, rename the new fields to the original names, and then turn on editor tracking. You can implement that workflow in a Notebook for convenience and speed, if you find yourself doing it regularly.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 19:33:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1565301#M90908</guid>
      <dc:creator>PeterKnoop</dc:creator>
      <dc:date>2024-12-05T19:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Tracking – High Precision Date Fields issue in ArcGIS Pro.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1568112#M91229</link>
      <description>&lt;P&gt;Here is some python which does the workaround:&lt;/P&gt;&lt;P&gt;# Import system modules&lt;BR /&gt;import arcpy&lt;BR /&gt;&lt;BR /&gt;# Set environment settings&lt;BR /&gt;arcpy.env.workspace = "D:\\ArcGISProjects\\Default.gdb"&lt;BR /&gt;&lt;BR /&gt;# Set local variables&lt;BR /&gt;inFeatures = input("Prompt message: ")&lt;BR /&gt;fieldName1 = "created_dateNEW"&lt;BR /&gt;fieldAlias1 = "created_dateNEW"&lt;BR /&gt;fieldName2 = "last_edited_dateNEW"&lt;BR /&gt;fieldAlias2 = "last_edited_dateNEW"&lt;/P&gt;&lt;P&gt;# Add new fields&lt;BR /&gt;arcpy.management.AddField(inFeatures, fieldName1, "DATE", field_alias=fieldAlias1)&lt;BR /&gt;arcpy.management.AddField(inFeatures, fieldName2, "DATE", field_alias=fieldAlias2)&lt;/P&gt;&lt;P&gt;# Copy the data from the old fields to the new fields&lt;BR /&gt;arcpy.management.CalculateField(inFeatures, fieldName1, "!created_date!")&lt;BR /&gt;arcpy.management.CalculateField(inFeatures, fieldName2, "!last_edited_date!")&lt;/P&gt;&lt;P&gt;# Delete the old fields and rename the new fields to the old field names&lt;BR /&gt;arcpy.management.DeleteField(inFeatures,["created_date", "last_edited_date"])&lt;BR /&gt;arcpy.management.AlterField(inFeatures, "created_dateNEW", "created_date", "created_date")&lt;BR /&gt;arcpy.management.AlterField(inFeatures, "last_edited_dateNEW", "last_edited_date", "last_edited_date")&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 20:50:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1568112#M91229</guid>
      <dc:creator>MikeLongtine</dc:creator>
      <dc:date>2024-12-12T20:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Tracking – High Precision Date Fields issue in ArcGIS Pro.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1585095#M93036</link>
      <description>&lt;P&gt;I am at 3.3 and seeing this behavior as well.&amp;nbsp; Thank you two for posting all of this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2025 18:46:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1585095#M93036</guid>
      <dc:creator>CarmenDurham</dc:creator>
      <dc:date>2025-02-13T18:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Tracking – High Precision Date Fields issue in ArcGIS Pro.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1615203#M95810</link>
      <description>&lt;P&gt;&lt;A href="https://support.esri.com/en-us/bug/when-a-layer-from-arcgis-online-is-exported-to-a-geodat-bug-000164474" target="_blank"&gt;BUG-000164474 for ArcGIS Pro&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 20:46:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1615203#M95810</guid>
      <dc:creator>MattReeves_SpokaneValley</dc:creator>
      <dc:date>2025-05-15T20:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Tracking – High Precision Date Fields issue in ArcGIS Pro.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1653678#M99262</link>
      <description>&lt;P&gt;I have a similar issue with the date fields where they cannot be used under editor tracking due to error 001217, but they also cannot be deleted or thier properties edited - it would be quite easy to republish the layer without realising that the date fields are not recording any changes under editor tracking. I resolved it in ArcGIS Pro by using the 'convert temporal field' tool. I converted first to text, and then converted again to date. Then I deleted the old fields (which could not be deleted under 'fields') by exporting to a new feature class, and then renaming them during the export.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I hope this helps someone else!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="convert temporal fields.png" style="width: 582px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/141058i981831600CC7D5A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="convert temporal fields.png" alt="convert temporal fields.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="editor fields error.png" style="width: 887px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/141059i7C299F58A17B9475/image-size/large?v=v2&amp;amp;px=999" role="button" title="editor fields error.png" alt="editor fields error.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Sep 2025 08:55:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1653678#M99262</guid>
      <dc:creator>HeatherBell</dc:creator>
      <dc:date>2025-09-27T08:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Tracking – High Precision Date Fields issue in ArcGIS Pro.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1686000#M102018</link>
      <description>&lt;P&gt;Just ran into the same exact issue as first reported @&amp;nbsp;&lt;SPAN&gt;ArcGIS Pro 3.6.1.&lt;BR /&gt;&lt;BR /&gt;Datasets created in File Geodatabase with Editor Tracking Enabled then published to ArcGIS Online for editing. Updated Feature Service (Hosted) Layers added to ArcGIS Pro map to overwrite local File GDB datasets using Export Features tool. Unable to Enable Editor Tracking on updated local datasets.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;ERROR 001217: Invalid Editor Tracking field in dataset &amp;lt;dataset_name&amp;gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Date fields are also unavailable to select from &lt;EM&gt;Feature Class Properties &amp;gt; Manage &amp;gt; Editor Tracking&lt;/EM&gt;. Selecting "Use default" throws same error.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Offending fields display as "&lt;STRONG&gt;*&lt;/STRONG&gt;created_date" &amp;amp; "&lt;STRONG&gt;*&lt;/STRONG&gt;last_edited_date" in &lt;EM&gt;Catalog &amp;gt; Data Designs &amp;gt; Fields&lt;/EM&gt;. Assume asterisk indicates they are high-precision date fields.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 19:27:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1686000#M102018</guid>
      <dc:creator>FrankMancini</dc:creator>
      <dc:date>2026-02-23T19:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Editor Tracking – High Precision Date Fields issue in ArcGIS Pro.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1686601#M102075</link>
      <description>&lt;P&gt;Looks to me like this was first reported at 3.4.0 and it is still present at 3.6.2.&amp;nbsp; High Precision date fields cannot be used in Editor Tracking.&amp;nbsp; The only solution remains the work around of adding low precision date fields, but it sure is a pain.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2026 16:00:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/editor-tracking-high-precision-date-fields-issue/m-p/1686601#M102075</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2026-02-25T16:00:26Z</dc:date>
    </item>
  </channel>
</rss>

