Bug ID Number |
BUG-000161049 |
Submitted | August 30, 2023 |
Last Modified | September 23, 2025 |
Applies to | ArcGIS API for Python |
Version found | N/A |
Operating System | N/A |
Operating System Version | N/A |
Status | Non-Reproducible
This issue was not reproducible when tested by the development team. Issues may be given this status when they cannot be reproduced or are no longer relevant in a development version of the software, but a specific fix was not installed to address the issue. The issue's Additional Information section may contain further explanation.
|
Additional Information
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)
Steps to Reproduce