|
POST
|
If the layer you’re publishing/overwriting from in Pro is a service layer (hosted feature layer / feature service / map service), that’s very likely the cause of the 003999 at Upload Service Definition. Overwrite is designed to replace a web layer based on its source dataset (file/enterprise geodatabase, etc.). When the “source” is already a service, Pro often can’t stage a valid SD to overwrite, and you end up with generic server-side failures like 003999. Best practice is to make the source a real dataset, not a service Use a FGDB or enterprise geodatabase feature class as the authoritative source in the map. Publish/overwrite the hosted feature layer from that dataset. This is the most reliable “push updates to Field Maps” pattern.
... View more
05-05-2026
01:08 PM
|
0
|
0
|
188
|
|
POST
|
This was answered in the ArcGIS Pro SDK community referenced here - Solved: How to add property sheet to layer's properties wi... - Esri Community (your question)
... View more
05-05-2026
12:58 PM
|
0
|
0
|
118
|
|
POST
|
This line is the problem: df = DataFrame(columns=['Shape X', 'Shape Y']) It replaces df (the CSV you read) with a new a new DataFrame that only has those two columns. Try these changes: # Pandas section ------ df = pd.read_csv(parameters[1].valueAsText) # remove spaces from ALL column names df.columns = df.columns.str.replace(" ", "", regex=False) # write back to the same output CSV df.to_csv(parameters[1].valueAsText, index=False)
... View more
05-05-2026
10:01 AM
|
0
|
0
|
260
|
|
POST
|
In your Python script, do you have a line that says: pdf.includeAccessibilityTags = True IncludeAccessibilityTags Property—ArcGIS Pro - it defaults to FALSE so perhaps this is why you're not seeing the tags? Also - another workflow - Solved: Automatically add PDF metadata for accessibility a... - Esri Community
... View more
05-05-2026
09:20 AM
|
0
|
1
|
280
|
|
POST
|
Here's some information I learned from reviewing other cases: That message is coming from the Python Raster Function / deep learning model code (fastai/PyTorch), and it indicates your model (or the raster function calling it) passed an input with the wrong shape into an affine/warping step: ValueError: not enough values to unpack (expected 4, got 3) at fastai.vision.image._affine_grid means the code expected a 4D tensor size (N, C, H, W) (batch, channels, height, width) but received only 3 values (typically (C, H, W) or (H, W, C)), so it can’t proceed. The trailing message “Python Raster Function's .vectorize() method returned nothing” means the raster function’s vectorization step produced no features (often because inference failed earlier due to the shape error, or because the result was empty), so the geoprocessing tool can’t generate an output feature class/table. If this happened while running Detect Objects Using Deep Learning / similar deep learning tools in ArcGIS Pro 3.5.x, there is a related known issue where vectorization fails after the python raster function step: BUG-000182421 for ArcGIS Pro
... View more
05-05-2026
08:14 AM
|
0
|
0
|
196
|
|
POST
|
Here's what I learned from studying the internals: "Those dropdowns are part of ArcGIS Pro’s tool UI, not part of what a geoprocessing service can describe to clients. When you publish Focal Statistics to ArcGIS Server/Enterprise as a web tool, the service exposes parameters through the REST “GP” interface using supported server-side parameter data types. During publishing, some Pro parameter types (or composite/specialized UI controls) may be converted to simpler types (often a string), and the service metadata does not include Pro’s neighborhood “chooser” definitions—so the Server “Geoprocessing Service Directory” (and many clients) can only show a basic input box, not Pro-style dropdowns/widgets. Esri notes this generally as: some parameter data types are not supported in geoprocessing services and can be dropped or become GPString after publishing; you can verify what your parameter became by checking the task’s REST endpoint (“Task Information”). Input and output parameters—ArcGIS Pro If you want dropdown behavior for the service, you typically implement it in the client UI (web app or custom Pro add-in) and pass the correctly formatted neighborhood value to the service." Hope this helps!
... View more
05-05-2026
08:02 AM
|
0
|
0
|
174
|
|
POST
|
To add to @AJR 's comment about unique ids and not using ObjectID's, there is a workflow to configure a database sequence in this Tech Support article - Configure a Unique ID in a Feature Class That Auto-Increments by a Certain Number
... View more
05-04-2026
12:12 PM
|
0
|
0
|
328
|
|
POST
|
From the internals: In ArcGIS Pro 3.6.2, the most common reason the Reconcile dialog is cut off is Windows display scaling / DPI (especially 150%) or mixed‑DPI multi‑monitor setups. Try these steps: In Windows Settings > System > Display, set Scale to 100% (or 125%) on the monitor where Pro is open, then restart Pro. If you use multiple monitors, make sure they’re set to the same Scale %, then restart Pro. Workaround: in Advanced scaling settings, turn off “Let Windows try to fix apps so they’re not blurry.” If it’s still cropped, set Pro’s DPI override: right‑click ArcGISPro.exe > Properties > Compatibility > Change high DPI settings > check Override high DPI scaling behavior and test System (Enhanced) (restart Pro after each change).
... View more
05-04-2026
12:02 PM
|
2
|
2
|
756
|
|
POST
|
Perhaps this is the underlying issue then. Per this deprecation document - Geocoding Deprecation - it may be best going forward to rebuild the locator in ArcGIS Pro using the Create Locator GP tool to see if this makes any appreciable difference. Found this resource as well - ArcGIS Enterprise 10.9.1 is the last release that supports publishing classic locators. ArcGIS Enterprise 11+ no longer allows publishing locators created with the classic Create Address Locator tool. Source: Deprecation: Geocoding Deprecation
... View more
05-04-2026
11:58 AM
|
1
|
0
|
565
|
|
POST
|
Certainly - glad it worked out. Question then as the other ones work seamlessly and this one does not, when was it created and at what release of the software? I wonder if it's an old one that could be the case, maybe?
... View more
05-04-2026
08:49 AM
|
0
|
0
|
593
|
|
POST
|
One thing to try is a Perform an ArcGIS pro Soft Reset - this might fix the Reconcile window issue.
... View more
05-04-2026
08:40 AM
|
0
|
4
|
798
|
|
POST
|
Instead of using the Catalog view/pane to add your locator, click the Insert tab, click Connections in the Project group and click Add Locator. Navigate to the location of the locator and add it. Do you get the same errors? Add locators to a project—ArcGIS Pro | Documentation
... View more
05-04-2026
07:48 AM
|
0
|
0
|
607
|
|
POST
|
G'day @TanithLives - in looking at the internals a bit more about this issue, here's some troubleshooting items to consider. Here are some steps you can try: Use Diagnostic Monitor to identify whether the slow calls are mainly ExportMapImage (map image layer draws) or query (feature layer querying). This helps pick the right mitigation. (Doc referenced in Esri KB: ArcGIS Diagnostic Monitor) If the layer is mostly for visualization, prefer cached layers (hosted tile or vector tile layers) instead of dynamic MapServer drawing. Vector/raster tiles are designed for fast display and generally perform better over higher-latency connections. (Optimize web maps, layers and apps, Manage hosted tile layers) Set visible scale ranges so layers don’t draw/query huge extents at small scales (a common cause of slow querying/drawing). (Esri Support KB 000030619) If you’re working with hosted feature layers, consider hosted feature layer views to create a “lighter” view for Pro users (different settings, potentially less content to draw/query). (Optimize web maps, layers and apps) If editing/working interactively, use Pro’s Feature Cache controls (manual fill/empty, avoid auto-cache thrash) as noted in the KB. (Esri Support KB 000030619)
... View more
05-04-2026
07:33 AM
|
1
|
0
|
360
|
|
POST
|
I don't know of a usuable workflow to do this in ArcGIS Pro, but I definintely know how to do this in ArcGIS Experience Builder. Perhaps others will chime in with assistance.
... View more
05-01-2026
01:57 PM
|
0
|
0
|
1307
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|