laptop and a wrench

不具合

In ArcGIS Pro 3.2 and newer, date fields are changed to high precision when publishing to ArcGIS Online without an option to avoid the change.

ArcGIS Pro
不具合 ID 番号 BUG-000170167
送信されましたAugust 21, 2024
最終更新日October 1, 2024
適用対象ArcGIS Pro
見つかったバージョン3.3
オペレーティング システムWindows OS
オペレーティング システムのバージョン10.0 64 Bit
ステータスIn Review

対処法

The issue is not reproducible in ArcGIS Pro 3.1.X or prior.

  • Delete the existing tracking fields from the hosted feature class and allow the Enable Editor Tracking tool to recreate them.
  • Omit the creation date field and the last edit date field while running the tool.
  • Export the hosted feature layer to a file geodatabase in ArcGIS Online or in the portal, download the geodatabase, then add it to the ArcGIS Pro project.
  • Use ArcPy field mapping to change the high precision to low precision when exporting the feature service (see sample code below).

# Fix Precision

fm_c = arcpy.FieldMap()

fm_c.addInputField(service_url, created_at_fname)

updated_out_field = fm_c.outputField

updated_out_field.precision = 0

fm_c.outputField = updated_out_field

field_mappings_corrected.addFieldMap(fm_c)

再現の手順

不具合 ID: BUG-000170167

ソフトウェア:

  • ArcGIS Pro

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動