|
POST
|
This is a known quirk of the ArcGIS Pro SDK for .NET when working with enterprise geodatabases (SDE connections). So what you're seeing is when you use SaveItemDialog against an eGDB, the UI shows correctly - {database}.{schema}.{featureclass} but saveDialog.FilePath only returns {connection_path}\{database}.{schema}. That's because in eGDB's, the dialog treats the container as the path and the feature class name is stored separately, not appended to FilePath. So nothing is broken - it's just split across properties. The fix is combine saveDialog.FilePath and saveDialog.Name
... View more
04-03-2026
02:15 PM
|
0
|
1
|
135
|
|
POST
|
In reviewing this item, I found that this expression might work better: var out = null; var dataset = "Dataset2"; // Parse JSON safely var dict = FromJSON(Text($feature.json)); if (IsEmpty(dict)) { return null; } // Check if key exists if (!HasKey(dict, dataset)) { return null; } var arr = dict[dataset]; // Ensure it's a valid array with values if (!IsEmpty(arr) && Count(arr) > 0) { out = Concatenate(arr, ", "); } return out; Why this works better is the HasKey() prevents invalid dictionary access, the IsEmpty avoids null dereferencing, the Count() ensures you're not concatenating an empty array and it removes the DefaultValue(arr, 0) logic which is not reliable for arrays. I don't have the data to test but think it will work.
... View more
04-03-2026
01:55 PM
|
0
|
0
|
89
|
|
POST
|
The first thing you would need to do is georeference the hand-drawn map so it's of use in ArcGIS Pro. The workflow is listed here - Georeferencing tools—ArcGIS Pro | Documentation There's a tutorial here that will assist you - Georeference historical imagery in ArcGIS Pro | Documentation Non-Esri resources also show how to georeference images - Georeferencing and Digitizing Map Images in ArcGIS Pro Once the hand drawn map is georeferenced then you can digitize the points, lines, and/or polygons using the georeferenced image as a guide. If you're new to editing, this Learn lesson will help - Edit features to create enumeration areas | Documentation With AI, things can get even more interesting - Digitizing scanned maps using AI in ArcGIS Pro Good luck on your project!
... View more
04-03-2026
08:12 AM
|
1
|
0
|
432
|
|
POST
|
What release of ArcGIS Pro are you using? The reason I ask is because there was BUG-000178142 for ArcGIS Pro that was fixed at ArcGIS Pro 3.5.3.
... View more
04-01-2026
01:07 PM
|
0
|
0
|
96
|
|
POST
|
@RichardDaniels - I see you created a Support Case with Esri Support Services on this item. Were they not able to resolve this issue you're experiencing?
... View more
04-01-2026
12:52 PM
|
0
|
0
|
317
|
|
POST
|
This appear to be BUG-000181391 - "Unable to scroll through symbol classes with the mouse wheel when unique values is set as the primary symbology in ArcGIS Pro 3.6." The current workaround is - "Click and drag the scroll bar or use the arrows at the top or bottom of the scroll bar." It's been fixed in the upcoming ArcGIS Pro 3.7 release.
... View more
04-01-2026
12:48 PM
|
0
|
0
|
205
|
|
POST
|
So in studying this item, another customer working ArcGIS Pro 3.6.2 saw the same thing overwriting a web layer with a relationship class. They saw that ArcGIS Pro crashed with layers that have non-sequential ID's. The the workaround is saving the layer as a Service Definition, and uploading that directly to ArcGIS Online or to their Enterprise Portal.
... View more
04-01-2026
09:25 AM
|
0
|
0
|
244
|
|
POST
|
So, question. When you go to the Project->Options->Editing under the Session category, is the "Enable and disable editing from the Edit tab" checked on? This is not the default setting. The default setting is not have this checkbox enabled. By doing that, editing is automatically enabled when a user clicks the Edit tab. Save and discard options are still in play of course.
... View more
04-01-2026
09:17 AM
|
1
|
1
|
363
|
|
POST
|
I wonder if your IT team needs to add exceptions to their firewall to allow network traffic (i.e. the basemaps)? You can learn more here: What Are the Required Firewall Domain Exceptions to Access ArcGIS Online? REV_AGOL_Domain_Requirements.pdf
... View more
04-01-2026
09:09 AM
|
1
|
0
|
277
|
|
POST
|
If you go to the Project tab in ArcGIS Pro and then click Licensing, what type of licensing are you using? Single Use or Named User licensing? Secondly, is ArcGIS Pro signed into your Portal as well? If you're using Single Use licensing, you can click the "Configure your licensing options" button on the license page and switch to Named User.
... View more
04-01-2026
08:59 AM
|
0
|
0
|
319
|
|
POST
|
In addition to Dan's suggestions, these also may provide insight: Diagnostic Monitor—ArcGIS Pro | Documentation Do you have any unsupported 3rd party apps that use ArcGIS Pro? Turn off your virus protection software then retest your workflows.
... View more
03-31-2026
01:15 PM
|
0
|
0
|
273
|
|
POST
|
As Dan suggested, Esri GRID's do not support spaces in the file path as referenced here - 010819: The input path contains spaces.—ArcGIS Pro | Documentation Perhaps export the raster out to a geodatabase raster, then try the workflow again.
... View more
03-30-2026
10:38 AM
|
0
|
0
|
405
|
|
POST
|
@KeithAddison1 - shapefiles have limited NULL support. Date fields support NULLs but are stored as a zero but display as a NULL. With text and numerical values, true NULLs are not supported. You can learn more here - Shapefiles in ArcGIS Pro—ArcGIS Pro | Documentation Best practice is to use a geodatabase instead of a shapefile in this case.
... View more
03-30-2026
10:21 AM
|
0
|
0
|
882
|
|
POST
|
Question: do you have any subtypes or attribute domains on your feature class?
... View more
03-25-2026
09:21 AM
|
0
|
0
|
314
|
|
POST
|
What release of ArcGIS Pro are you using? There is BUG-000176430 - "Appending features from a file geodatabase to a hosted feature layer in ArcGIS Online fails if the 'Preserve Global IDs' checkbox is checked in ArcGIS Pro 3.4.3." This issue has been addressed in ArcGIS Pro 3.5. The 'Optimize performance for feature services' parameter for compatible feature services preserves the input Global ID values from file geodatabases when the 'Matching Fields for Update' parameter is set to the GlobalID fields. Refer to https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/append.htm#:~:text=The%20Optimize%20performance,Global%20ID%20values for more information.
... View more
03-25-2026
07:08 AM
|
0
|
0
|
152
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 1 | 2 weeks ago | |
| 1 | Monday | |
| 1 | Monday | |
| 1 | Monday |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|