|
POST
|
Do each of your storm assets have their own related table, or are you using one table for all of them? Not sure if it's related, but I had several issues going from my Sewer inspection app to my Storm inspection app because of the multiple asset types and using a single table for all of my storm inspections, even though the GUID is unique. Easiest fix was to have a separate storm inspection table for each of the storm assets. However, for local reasons, we wanted all the storm inspections in one table, regardless of asset type. Once I created a separate GUID field for each of the assets in the storm tracking table, then set up a relationship class on each asset pointing to its specific GUID field in the inspections table, all the weird relationship confusion went away. Just tested it and I do see and am able to copy previous inspections. Hope this helps, R_
... View more
04-01-2026
01:21 PM
|
1
|
4
|
845
|
|
POST
|
saw that, but response had no indication that it was tried.
... View more
03-30-2026
12:44 PM
|
0
|
0
|
792
|
|
POST
|
do you still get the error when you click the folder button and browse to the input surface, and NOT select it from the dropdown? R_
... View more
03-25-2026
04:05 PM
|
0
|
2
|
937
|
|
POST
|
Yes, that gets very annoying when you are panned to the area you want to make a point and it pans you back to your GPS position. That setting is controlled in Field Maps designer App Settings: R_
... View more
03-24-2026
03:48 PM
|
0
|
0
|
719
|
|
POST
|
I guess that is what I was refereeing to at the 'end of the script', would be the last entry in the try loop. try:
del closest_facility
del incidents_xy
del facilities_xy
del solve
del na_gdb
ToT(na_gdb_path)
except Exception as e:
print(e) But, that doesn't work either? R_
... View more
03-19-2026
01:25 PM
|
0
|
0
|
814
|
|
POST
|
Not sure if this is your issue, but, setting arcpy.env.workspace puts a lock on the FGDB. I found that setting arcpy.env.workspace = None, does not release it, but followed by arcpy.ClearWorkspaceCache_management() does. Also, doesn't appear to be any reason to delete the FGDB right before re-creating it. Have you tried deleting it at the very end of the script after you have deleted all the variables? Also, in my testing, even if there is a _gdb.sr.lock (did not test with other locks), this code will delete it anyway: def ToT(ds):
if arcpy.Exists(ds):
print(f"{ds} exists, deleting...", end="")
try:
arcpy.Delete_management(ds)
print("successful")
except Exception as e:
print(f"unable to delete, reason: {e}")
else:
print(f"{ds} doesn't exist, skipping...")
ToT(na_gdb_path) In case this helps, R_
... View more
03-18-2026
04:21 PM
|
5
|
4
|
867
|
|
POST
|
Are you able to even view any of the services? If I click your link, it opens the rest/services page, but if I try to open any of the feature services, it eventually times out. Not familiar with the trust.arcgis.com health dashboard, but it looks to be similar to this one. Past experience has shown that the Health dashboard just as well be a static image as it will normally show green, even when the servers are down completely. With luck, it will update a few days later and show the problems in the resolved in the last 30 days section. But, even then, not likely. I would suggest you log a tech support case on this so they can get the server working again. R_
... View more
03-17-2026
02:38 PM
|
0
|
0
|
781
|
|
POST
|
@JasonBennett Did you mark @timcneil post as the answer because you are using Map Image layer sublayer. By your reply, it seems like you are calling it an issue with the profile not having the $map variable. But, original post says you are using a popup window and 'breaks' when you change the layer name(s). I ask, as if not related to Map Image layer, the same $map variable should be available in the popup profile regardless of the map. R_
... View more
03-12-2026
12:33 PM
|
0
|
0
|
1080
|
|
POST
|
I voted up your idea for this, but, since there are other ideas requesting the same thing since at least early 2021, I wouldn't get my hopes up. Might help to Kudo/comment on the posts, though it doesn't seem to get much traction. Allow Select Multiple Questions in Field Maps Multiple choice option in Field Maps Workarounds appear to be use Survey 123 for this. R_
... View more
03-10-2026
01:39 PM
|
2
|
0
|
456
|
|
POST
|
It can be done with the python API. Just tested this and it works. You could loop through/select (query by user, etc.) the items you want to turn off delete protection. Could also use it to delete them as well. from arcgis.gis import GIS
gis = GIS("your_gis_url", "username", "password")
#Get the item by its ID
item_id = "item ID"
item = gis.content.get(item_id)
# Turn off delete protection
item.protect(enable=False) R_
... View more
03-06-2026
03:07 PM
|
0
|
1
|
926
|
|
POST
|
If you manually select a single point first, then run Select by Location (Within a distance) against itself, it will only select the points within 10 miles of the initially selected point. R_
... View more
03-02-2026
03:51 PM
|
0
|
2
|
664
|
|
POST
|
That is correct. Setting a field in the Update Options basically puts the Append tool in 'upsert' mode. The way you have it, it should update the entire row (in target dataset) for any that match the GlobalID in both tables. The Update Geometry box says to ALSO update the geometry for each matching row (without this, it would still update the attributes, just not the geometry). R_
... View more
02-10-2026
11:58 AM
|
0
|
0
|
818
|
|
POST
|
This link is the part from the docs that describes the 'upsert like operation'. Basically, if you set the 'Matching Fields for Update' option, it will then either update anything that changed from the source, or, insert them in the target if they are not there. Then there is a checkbox if you want it to update geometry also. R_
... View more
02-09-2026
02:45 PM
|
1
|
1
|
842
|
|
POST
|
Do you have attribute rules on any of the data? If so, the old ArcMap version can throw errors. R_
... View more
02-09-2026
12:48 PM
|
0
|
0
|
671
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-21-2026 08:53 AM | |
| 1 | 05-14-2026 04:28 PM | |
| 1 | 05-07-2026 02:10 PM | |
| 1 | 04-02-2026 09:50 AM | |
| 1 | 04-01-2026 01:21 PM |
| Online Status |
Online
|
| Date Last Visited |
9 hours ago
|