|
BLOG
|
@ValeriaChavez Are you planning to release a "Your Ideas in ArcPro 3.7" page? I find these pages helpful.
... View more
a week ago
|
0
|
0
|
79
|
|
POST
|
Related comment from @LindsayRaabe_FPCWA in Built-in Survey123 email notification (to staff when survey submitted: Adding my backing to this idea. We've been using Power Automate/Flow to enable email notifications, and it is sooooo frustrating because of how fragile and cumbersome it is. We can't reuse a Survey123 Connection across flows, having to create a new connection for each, and have regular instances of flows failing despite no changes having been made, with new connections being the only way to fix it. This is on top of having to use a dedicated service account as the send email (which we GIS people aren't allowed to manage meaning we need to get IT involved in any new flows). A built in email notification with basic ITTT functionality based on values in the survey would be an immense improvement!
... View more
a week ago
|
0
|
0
|
105
|
|
IDEA
|
I imagine someone's said this already, but I believe you can do this with the Admin REST API.
... View more
05-11-2026
05:58 PM
|
0
|
0
|
375
|
|
IDEA
|
I noticed @KAnderson recently upvoted this idea. You might like this post: https://community.esri.com/t5/arcgis-online-questions/add-guid-field-to-existing-agol-survey123-feature/m-p/1698341/highlight/true#M68515 Not sure what kind of default value you want to set up. But you might be able to use the Admin REST API for it.
... View more
05-11-2026
05:54 PM
|
0
|
0
|
243
|
|
IDEA
|
AGOL: Advanced views (join views) are a hassle since they lock the schema of the underlying feature layers. Once the layers are rolled into a map/app, it's too much of a hassle to drop the join, make changes to the underlying layers, re-join, and repair the map/app. This idea is to create advanced views without locking underlying feature layer schemas.
... View more
05-11-2026
11:23 AM
|
1
|
1
|
287
|
|
IDEA
|
A related, but different, AGOL idea: Computed column (SQL expression field) in AGOL table/hosted feature layer
... View more
05-07-2026
05:41 AM
|
0
|
0
|
318
|
|
IDEA
|
Databases like SQL Server and PostgreSQL (and Oracle) support SQL expression fields right in the table, called computed columns, generated columns, virtual columns, etc. This idea is to make use of such columns by adding an SQL expression field type, right in the AGOL table/hosted feature layer. For example, AGOL > hosted feature layer > Data tab > Fields view > a read-only field > properties > SQL expression: 'SEWER-' || asset_num_integer The other fields would remain editable in ArcGIS apps, which would be ideal. SQL expressions right in the db table would perform better than other expression mechanisms like arcade or even advanced REST API views. A related, but different, ArcGIS Pro idea: Virtual Attributes (ad hoc)
... View more
05-07-2026
04:19 AM
|
2
|
0
|
260
|
|
IDEA
|
I got a notification email from Esri: BUG-000184634 has been closed: Non-Reproducible.
... View more
05-06-2026
09:37 AM
|
0
|
0
|
456
|
|
POST
|
What are the rules when setting default values for AGOL hosted feature layer fields? (using the Admin REST API) For example: Use SQL Server's SQL syntax/dialect. GIS Stack Exchange: What kind of database does ArcGIS Online use to store data? GUID and number fields support expressions, but text fields don't. Idea: Allow expressions in AGOL string field > default value Here's a useful error message I got when trying to use OBJECTID+1 as the default value for an integer field: "Valid expressions are constants, constant expressions, and (in some contexts) variables. Column names are not permitted." Link Are there any other known rules? Or any other useful error messages that could be noted here? (To Esri staff: Could the rules be added to the AGOL docs?)
... View more
05-06-2026
09:03 AM
|
1
|
0
|
243
|
|
POST
|
AGOL hosted feature layers; Experience Builder; editor widget When copying/pasting a feature from Layer1 to Layer2, how does ExB determine what fields to match/copy? I assume it's matching fields that have exactly the same name. Where does the list of fields to copy come from? Does the list of fields come from the AGOL hosted feature layer, the web map, the web map form configuration, the layer in Experience Builder, or the list of fields in the editor widget? True field names or field aliases? I assume true field names. If fields are excluded in the editor widget, do they not get copied/pasted? What are the rules when copying/pasting a feature into a different feature layer?
... View more
05-06-2026
08:51 AM
|
0
|
1
|
305
|
|
POST
|
Idea: Expression field in advanced AGOL view without join It's still unclear if this is supported or not. If it's not supported, it would help if the docs could explain this. Edit: Esri Case #04171628 - ArcGIS Online Admin REST API - Are expression fields in advanced views without joins supported? That workflow is not supported, unfortunately. Expressions can only exist on the parent layer for advanced views which have relatedTable objects within the JSON payload. That approach works for standard fields (not expression fields) but advanced views are read-only and so you could not manually calculate the field after it has been added.
... View more
05-06-2026
08:14 AM
|
0
|
0
|
228
|
|
POST
|
What kind of database does ArcGIS Online use to store data?
... View more
05-05-2026
01:16 PM
|
0
|
0
|
737
|
|
IDEA
|
Expression fields (calculated columns) in advanced views seem to be limited to joined views. They don’t work with regular view layers. For example, concatenate “SEWER-“ text with an integer field to produce prefixed ASSET_IDs like SEWER-0000001. Documentation: ArcGIS REST APIs > Add to Definition (Feature Service) Question: Create advanced AGOL view with expression field (no joins)? Could expression functionality be added to views that don’t have a joined table?
... View more
05-05-2026
08:32 AM
|
3
|
0
|
259
|
|
POST
|
Summary: Admin REST API > view's sublayer > Add To Definition Added an expression field via JSON It ran without errors, but I don't see the new field in the view. Detailed Steps: I've created a AGOL view called test_layer_view on a hosted feature layer: In the view, using the Admin REST API, I want to add a expression field as a test, calculating 1+1. I'm not using the view's top-level feature layer... ...Instead, I'm using the sublayer: (Let me know if I'm using the wrong item. Although I tested with the top-level feature layer view, and had the same issue with it.) I got some sample JSON from the ArcGIS REST APIs > Add to Definition (Feature Service) documentation: (Those docs are pretty complicated and geared towards joins, so I'm not sure how to boil the sample JSON down to just a simple expression field without a join.) {
"sourceLayerFields": [
{
"name": "test_expression_field",
"alias": "test_expression_field",
"expression": "1+1",
"type": "esriFieldTypeInteger"
}
]
} I hit the "Add To Layer Definition" button and it ran without errors: But when I refresh the view's Data > Fields tab (or the Table tab), the expression field is missing. Likewise, the expression field is missing from the sublayer's JSON definition. What am I doing wrong?
... View more
05-04-2026
01:35 PM
|
0
|
2
|
363
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-30-2026 11:08 AM | |
| 1 | 05-11-2026 11:23 AM | |
| 2 | 05-07-2026 04:19 AM | |
| 1 | 05-06-2026 09:03 AM | |
| 1 | 03-19-2026 09:29 AM |