|
POST
|
I remember experiencing a similar issue in the past, and I had to modify the script to use "add_to_definition" as well as "item.update" to get things to show in both the REST service as well as the item details page. Maybe try adding something like this after using "add_to_definition"? item.update(data={
"layers": [dict(layer.properties) for layer in flc.layers],
"tables": [dict(table.properties) for table in flc.tables]
})
... View more
04-10-2026
08:52 AM
|
1
|
1
|
459
|
|
POST
|
Have you tried looping through the layer collection and adding them in reverse index order? Assuming Waypoints is layer id 0, it's adding them in ascending order of layer id, with each new one added on top. So reverse it and it should be correct.
... View more
04-07-2026
01:08 PM
|
0
|
0
|
357
|
|
POST
|
Could be related to this? https://support.esri.com/en-us/knowledge-base/error-the-layer-basemap-name-is-not-compatible-with-the-000030024 What spatial reference did you use when you published?
... View more
03-30-2026
01:50 PM
|
0
|
0
|
548
|
|
POST
|
Yes, you can georeference the image (I usually used TIFF when I was doing this for construction plans) in ArcGIS Pro and then publish as a hosted tile layer
... View more
03-26-2026
09:57 AM
|
2
|
2
|
654
|
|
IDEA
|
Love this idea, especially since it's available in other Esri tools like Experience Builder. It's a very useful feature in the development process and ensuring good QA of applications.
... View more
03-25-2026
09:26 AM
|
0
|
0
|
282
|
|
POST
|
I'm not completely sure if this will work, but does this workflow allow you to access calculated values within the title field? https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/catch-more-waves-using-arcade-featureset-expressions-in-forms
... View more
03-20-2026
01:26 PM
|
0
|
1
|
741
|
|
POST
|
Yes, you can schedule Notebooks using Tasks. A relevant limitation listed in that documentation is that the maximum frequency a scheduled task can run is every 15 minutes. So if you went this route, your second feature layer would get updated in batches based on the schedule, not every time a record was submitted to the survey. However, if you were actively working on the second layer and needed to sync things, you could manually trigger the Notebook and have it run. There isn't a built in mechanism for triggers in the Notebooks, but you could possibly utilize PowerAutomate for webhooks with Survey123 to trigger a script.
... View more
03-13-2026
06:30 AM
|
2
|
0
|
676
|
|
POST
|
Ah, I had just assumed ArcGIS Online, but yes, if you're working with Enterprise, I believe you will need Notebook Server.
... View more
03-12-2026
04:03 PM
|
0
|
2
|
703
|
|
POST
|
If it's just a matter of visibility/permissions, could you use a view layer for the public web map that has editing disabled? Otherwise, my first thought goes to using ArcGIS Notebooks, could probably script something to do this.
... View more
03-12-2026
06:17 AM
|
1
|
4
|
753
|
|
IDEA
|
This is a sorely needed functionality, and it seems the community has clearly expressed this through kudos and comments on this ArcGIS Idea. What else can be done to help get this more traction? It can be a bit discouraging for community engagement when we're still getting directed to this idea by Esri staff in 2026, telling us to upvote the idea, when it's been around since 2019...
... View more
03-09-2026
06:40 AM
|
0
|
0
|
1130
|
|
IDEA
|
Yes, please! I am baffled as to why multipoint geometry would be supported in Map Viewer and ArcGIS Pro but not offline field maps. This is a big blocker for an application I'm building for a client. If anything, I'd like to know the reason it's not currently supported so I could provide them with a more informed answer than just "Esri said no".
... View more
03-03-2026
08:07 AM
|
0
|
0
|
303
|
|
POST
|
From your description, it sounds like you've only published the layer, but haven't actually added it to a web map and saved it as a web map item in your organization. Is that the case?
... View more
03-02-2026
07:26 AM
|
0
|
0
|
199
|
|
POST
|
@AaronKoelker I was able to print a report that showed a users activity in ArcGIS Pro using this: https://developers.arcgis.com/python/latest/api-reference/arcgis.gis.admin.html?#agolusagereports from arcgis.gis import GIS
agol = GIS("home")
# Generate a report for applications
report = agol.admin.usage_reports.applications(time_frame = "90days")
# Filter for ArcGIS Pro usage
arcgispro_report = [entry for entry in report["data"] if entry["appId"] == "arcgisprodesktop"] Then I was able to loop through this report a generate a CSV and print in the logs showing users and the number of days since their last activity using Pro. Is that the type of thing you're looking to do?
... View more
02-27-2026
12:43 PM
|
1
|
0
|
808
|
|
POST
|
Maybe related to this bug? See this post: https://community.esri.com/t5/arcgis-online-questions/filter-using-quot-in-the-last-quot-date-no-longer/m-p/1687013#M67970
... View more
02-26-2026
11:35 AM
|
1
|
0
|
946
|
|
POST
|
Hello, I use registered applications (OAuth 2.0 Credentials) in ArcGIS Online in order to access secure services in my custom application using a client ID and secret. I would control which items these applications could access through the "Item Access" configurations in the Settings page. After the February 2026 update to ArcGIS Online yesterday, I noticed a change in the interface to my application. It now says "Generated app token will have access to (0) items" (it was several dozen before this change) and I'm not sure how I can edit this to grant access to the necessary items again, or why this change occurred in the first place. Does anyone have any insight on this?
... View more
02-26-2026
10:37 AM
|
1
|
1
|
577
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 2 weeks ago | |
| 1 | 05-14-2026 08:38 AM | |
| 2 | 04-24-2026 05:43 PM | |
| 1 | 04-24-2026 06:58 AM | |
| 1 | 04-17-2026 09:23 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|