Bug-ID-Nummer |
BUG-000161049 |
Eingereicht | August 30, 2023 |
Zuletzt geändert | September 23, 2025 |
Gilt für | ArcGIS API for Python |
Gefunden in Version | N/A |
Betriebssystem | N/A |
Betriebssystemversion | N/A |
Status | Non-Reproducible
Dieses Problem konnte bei Tests durch das Entwicklungsteam nicht reproduziert werden. Problemen wird u. U. dieser Status zugewiesen, wenn sie nicht reproduziert werden können oder in einer Entwicklungsversion der Software nicht mehr relevant sind. Es wurde jedoch kein Fix zur Problembehebung installiert. Weitere Erläuterungen finden Sie ggf. im Abschnitt "Zusätzliche Informationen" des jeweiligen Problems.
|
Zusätzliche Informationen
This issue is not reproducible when using the script tool in ArcGIS Pro 3.2.2 and ArcGIS API for Python 2.2.0.1 to clone in ArcGIS Enterprise 11.2.
Workaround
- Remove search_existing_items=False from the script.
- Edit the script to execute the clone_items() function once for every item in the items list. For example:
For the item in user.items(folder=sourcefolder):
item = gis.content.get(item.id)
gis.content.clone_items([item], folder=targetfolder, search_existing_items=False)
Schritte zur Reproduzierung