|
POST
|
Is it possible that it is giving you the popup for another layer (water - hightlight), or is this the title you put in the water layer popup config? What does it show you if you click on the arrow in upper right to show you 2 of 2? R_
... View more
12-11-2024
01:14 PM
|
1
|
0
|
1502
|
|
POST
|
In your snapshot, it does not appear as if you have "Bend" and "BEND" paired, you have "BND" as the domain with "BEND" as the description. Think you want to pick "BND" to avoid that error. R_
... View more
12-09-2024
09:58 AM
|
0
|
0
|
836
|
|
POST
|
The dissolve tool defaults to output of MultiPart polygons. Make sure you un-select that option also.
... View more
11-25-2024
10:33 AM
|
1
|
0
|
3530
|
|
POST
|
For this, I use arcpy.append with Maintain Attachments = True. R_
... View more
11-21-2024
03:42 PM
|
0
|
0
|
1737
|
|
POST
|
Is this hosted data or from enterprise? I see that on some of my line mapservices on enterprise 10.9.1 for service published from Pro. Still haven't figured out why, but if I publish same thing to 10.8.1 OR use ArcMap on 10.9.1 it works perfectly. R_
... View more
11-21-2024
02:53 PM
|
0
|
0
|
1228
|
|
POST
|
Yes, I have run into this issue with 3.1 and 3.2 occasionally (with same error messages). have not figured out what causes it, but for some reason, I have to re-register my data source with server. Even though the existing data source is already registered and validates in server, re-adding a new registration fixed this issue. I would have never figured this one out, but ESRI tech support dialed me in. Not sure if it applies in your case, but worth testing. R_
... View more
11-05-2024
03:55 PM
|
0
|
1
|
1312
|
|
POST
|
Solution is to not mix coordinate systems. The basemap of the web map sets the coordinate system. If you are adding Tile layers in the same coordinate system, then my post above is still working. Otherwise, not sure there is a solution. One of the reasons I don't mix CS's. R_
... View more
11-05-2024
09:58 AM
|
1
|
1
|
5259
|
|
POST
|
what is the source? Is it a feature class with attachments? If so, for this type of thing, I often just create an empty featureclass in my SDE with matching fields, enable attachments on the new FC, then use append tool with preserve attachments = True to 'copy' the features and attachments into the new featureclass. R_
... View more
11-04-2024
03:18 PM
|
0
|
1
|
830
|
|
POST
|
Sometimes geometry errors in the featureclass can produce this. You could try the check/repair geometry tool in Pro on a copy, publish and see if the issue goes away? R_
... View more
11-04-2024
01:59 PM
|
0
|
0
|
654
|
|
POST
|
I created a .bat file tha opens a python script using python 3.x: @echo Run my Python script
call "C:\Program Files\ArcGIS\Pro\bin\Python\Scripts\propy" "D:\GISData\PublicWorks\ESRI_Automation\Scripts\_PW\Toolbox\Pro_Reup.py"
@echo Finished
And the python script that is runs starts ArcGSIS Pro, waits 30 seconds, then closes pro: import os
import time
#Assign the Pro path on the machine, usually here
ArcGIS_Pro_filepath = r"C:\Program Files\ArcGIS\Pro\bin\ArcGISPro.exe"
#Use os.startfile(), this will launch ArcPro
os.startfile(ArcGIS_Pro_filepath)
#Use time.sleep() to wait 30 seconds, enough time for ArcPro to open properly
time.sleep(30)
#Use os.system() to forcefully quit named process, ArcGISPro.exe
os.system("taskkill /f /im ArcGISPro.exe")
Then I use scheduled tasks in Widows to run the *.bat file once a week. For this to work, you need to check the Sign In Automatically box in Pro sign in page. R_
... View more
11-04-2024
10:52 AM
|
3
|
0
|
4037
|
|
POST
|
Know this was a while back, but suspect you haven't found a solution as it is STILL this way so thought I'd post a workaround to the issue that I recently discovered. I see this issue when I add a MapService to a map that I consume in the field maps app (even though the JSON of the map says that the popup disabled = true, Field maps app will still pop them up even though they are disabled for map viewer). However, if you add EACH feature layer from the map service individually (even if there is only ONE layer in the MapService), Field Maps app will then honor the disabled popup settings. Interestingly, once added to map viewer, you can re-group them and FM app will still honor the disabled popups. In case this helps someone, R_
... View more
10-31-2024
02:24 PM
|
3
|
1
|
1134
|
|
POST
|
For FGDB, this is also working for me: qry = """DateField >= (current_date- 5)"""
with arcpy.da.SearchCursor(updateFC, ['DateField'],qry) as cursor:
Do stuff on data from last 5 days. R_
... View more
10-28-2024
07:59 AM
|
0
|
0
|
1561
|
|
POST
|
this is working for me with SQL server data. qry = """DateField >= (GetDate() - 5)"""
with arcpy.da.SearchCursor(updateFC, ['DateField'],qry) as cursor:
Do stuff on data from last 5 days. R_
... View more
10-24-2024
03:51 PM
|
0
|
2
|
1640
|
|
POST
|
One of the last updates removed the Manage button in a Map Viewer Classic Map. However, if you open the feature layer in map viewer classic directly (as seen here), then the manage button will appear. R_
... View more
10-10-2024
07:59 AM
|
0
|
0
|
2662
|
|
POST
|
Only related bug I reported on this was: BUG-000152780 : In ArcGIS Dashboards, unable to use Shape.STLength() field from a map service in Table and Details elements. "Cannot access data" is shown. R_
... View more
10-10-2024
07:46 AM
|
1
|
1
|
2796
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 1 | a week ago | |
| 1 | 2 weeks ago | |
| 1 | 04-02-2026 09:50 AM | |
| 1 | 04-01-2026 01:21 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|