|
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
|
402
|
|
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
|
429
|
|
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
|
479
|
|
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
|
624
|
|
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
|
193
|
|
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
|
121
|
|
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
|
509
|
|
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
|
548
|
|
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
|
506
|
|
POST
|
Thanks @BobBooth1 , for my use-case I needed the workflow to stay in ArcGIS Online, but the tutorial you linked to is also a good resource!
... View more
02-25-2026
07:05 AM
|
0
|
0
|
426
|
|
POST
|
Great idea, Jay - thanks! I ended up adding this code in a cell at the beginning of the notebook, seems to be working well! # Get current time in US Central timezone
central_time = datetime.now(ZoneInfo("America/Chicago"))
current_hour = central_time.hour
print("Central hour:", current_hour)
allowed_hours = {5, 6, 7, 8, 9, 16, 17, 18, 19, 20}
if current_hour not in allowed_hours:
print("Not a scheduled hour, skipping execution")
raise SystemExit()
... View more
02-25-2026
07:02 AM
|
0
|
0
|
431
|
|
POST
|
Hello, Per this post from March 2025, users in ArcGIS Online can have up to 10 scheduled tasks for Notebooks. I manage several data ETL workflows for an organization that rely heavily on Notebooks for automation. For one of our Notebooks, we had to modify it to run at specific hours instead of "hourly" due to some quirks with the data API. Specifically, we now have it triggered to run in the mornings at 5am, 6, 7, 8, and 9am, and in the evenings at 4pm, 5, 6, 7, and 8pm. So, that reaches the limit of 10 scheduled tasks (Repeat Type = "Day" at the specified time). I now have another ETL notebook that I want to schedule and I'm unable to because I've reached the limit. I guess my main question of this post is....Is there a better way to go about scheduling at specific hours like this? It would be ideal to only have one scheduled task where I could specify the times of day to run, similar to how you can specify days of the week when you schedule an hourly task. Any other suggestions or workarounds? Thanks!
... View more
02-23-2026
10:11 AM
|
0
|
4
|
488
|
|
POST
|
Try turning off "Unit Prefix", likely in Category axis, Value axis, or Series, depending on what part of your chart you want to modify.
... View more
02-23-2026
09:50 AM
|
1
|
0
|
157
|
|
POST
|
You can define custom parameters for a layer in the settings of the web map: Documentation for the types of parameters accepted can be found here: https://developers.arcgis.com/rest/services-reference/enterprise/query-feature-service-layer/#request-parameters In my screenshot example, I used inSR = 4326, and geometry=-114.8165,31.3322,-109.0452,37.0043
... View more
02-20-2026
12:28 PM
|
2
|
1
|
354
|
|
POST
|
Thank you for mentioning this workaround, after enough fiddling, I was able to get it working in field maps. This definitely seems like a bug, since like you said, decimal places shouldn't exist for integer fields. And also, field maps should honor the "never show separator" option selected in the web map (this was being ignored, in my experience). Do we know if there is a bug number logged for this, and what the status might be?
... View more
02-16-2026
01:26 PM
|
0
|
0
|
865
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 4 weeks ago | |
| 2 | 3 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|