Bug ID Number |
BUG-000149869 |
Submitted | June 9, 2022 |
Last Modified | October 8, 2024 |
Applies to | ArcGIS GIS Server |
Version found | 10.6.1 |
Operating System | Windows Server |
Operating System Version | 2019 64 Bit |
Version Fixed | 3.4 |
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 looks to have been a geoprocessing tool compatibility problem with the Locate Features Along Routes tool introduced in ArcGIS Pro 2.9.
Workaround
1. Do the following when publishing from ArcGIS Pro:
- Remove the "\\" in LOCATE_RESULT_TABLE = "\\LocateFeaturesAlongRoutesGD2". Then change the parameter value arcpy.env.scratchGDB + LOCATE_RESULT_TABLE of the function LocateFeaturesAlongRoutes_lr to os.path.join(arcpy.env.scratchGDB, LOCATE_RESULT_TABLE).
- Use r"c:\..." expression instead of "c:\\..." expression for the first two parameters of the function LocateFeaturesAlongRoutes_lr.
2. If using the original script, try publishing from ArcMap.
Steps to Reproduce