|
IDEA
|
I think it would be helpful for group owners and managers to have a button they can click on to send an email to all members of a group. The button could be on the Members tab of the group. Clicking the button could prompt to select members to email or use the existing controls on the Members tab to select recipients. Confirming the selection then opens a blank email with the selected email addresses in the user's default email client. If I have a group with 50+ users in it and I want to let them know about an upcoming change or new resources available to the group, it would be a lot easier to do that if I could somehow extract the emails of the group members through the ArcGIS for Portal UI.
... View more
06-25-2026
01:47 PM
|
7
|
3
|
322
|
|
IDEA
|
I think it would be helpful for group owners and managers to have a button they can click on to send an email to all members of a group. The button could be on the Members tab of the group. Clicking the button could prompt to select members to email or use the existing controls on the Members tab to select recipients. Confirming the selection then opens a blank email with the selected email addresses in the user's default email client. If I have a group with 50+ users in it and I want to let them know about an upcoming change or new resources available to the group, it would be a lot easier to do that if I could somehow extract the emails of the group members through the ArcGIS for Portal UI.
... View more
06-25-2026
01:44 PM
|
6
|
1
|
316
|
|
POST
|
This is what I had to use to create a database view in SQL Server for one of my branch version feature classes to return the "parent" record. It just worked in a query layer for me. SELECT OBJECTID, SHAPE, FIELD1, FIELD2, FIELD3
FROM SCHEMA.TABLENAME
WHERE FIELD1 = 'INSERTFIELDTEXTHERE' AND SCHEMA.TABLENAME.GDB_ARCHIVE_OID IN
(Select MB_.GDB_ARCHIVE_OID
From
(SELECT GDB_ARCHIVE_OID,
ROW_NUMBER() OVER (PARTITION BY OBJECTID
ORDER BY gdb_from_date DESC) rn, gdb_is_delete
FROM SCHEMA.TABLENAME
WHERE (gdb_branch_id = 0 AND
gdb_from_date <= '12.31.9999 23:59:59.000')) MB_
WHERE rn = 1 AND gdb_is_delete = '0' ) I wish I could remember who originally posted this SQL because I definitely did not figure this out on my own.
... View more
06-25-2026
12:11 PM
|
0
|
0
|
402
|
|
POST
|
I have noticed in ArcGIS Pro 3.5.7, you can add fields and use tools that add fields when interacting with feature classes in a geopackage in the Catalog Pane or Catalog View. Interacting with a feature class in a geopackage through a Map treats the feature class as read-only (a warning is visible when trying to add a field through the Contents Pane). Currently, file geodatabases support things like datasets, attribute rules, topology, utility networks, parcel fabrics, domains, and other Esri specific functionality. I think the another difference is file geodatabases are able to compress the geometries stored and geopackages cannot. I am not sure what you mean by "full functionality", but I do not expect geopackages will support any of those Esri capabilities because the purpose of the geopackage format is interoperability between software. There are also Esri mobile geodatabases which is kind of a hybrid between file geodatabases and geopackages. They do not support everything that a file geodatabase does, but they do support most of Esri's database functionality. Mobile geodatabases are also built on SQLite but use ST_Geometry to store the spatial data. My recommendation would be to use either file geodatabases or mobile geodatabases and then export to a geopackage when you need to share the data with someone that does not have access to Esri software.
... View more
06-25-2026
11:50 AM
|
2
|
1
|
369
|
|
IDEA
|
I have noticed this in ArcGIS Pro 3.5.7, you can add fields and use tools that add fields when interacting with feature classes in a Geopackage in the Catalog Pane or Catalog View. Interacting with a feature class in a Geopackage through a Map treats the feature class as read-only (a warning is visible when trying to add a field through the Contents Pane).
... View more
06-25-2026
10:58 AM
|
0
|
0
|
354
|
|
POST
|
For SQL Server you need to use a database account in the database connection that has the CREATE SEQUENCE and ALTER OR CONTROL permissions in the database you are trying to create the sequence in. The database owner should be able to grant those permissions, but they have to be granted through something like SQL Server Management Studio. The "Create Sequence" checkbox you highlighted will create a new database sequence when the Generate ID attribute rule template is run. That sequence will have a random name, start at 1, and increment by 1. If you already have a database sequence you want to use, then you can uncheck that box. The Generate ID template is great for creating custom IDs. You can pick the prefix, suffix, padding, separators between those things, and vary things based on an attribute field.
... View more
06-24-2026
03:13 PM
|
1
|
0
|
178
|
|
POST
|
Our ArcGIS Server instance is on a different server from ArcGIS for Portal. I have never checked the RAM usage on our ArcGIS Server when doing I portal patch. I will keep that in mind next time. What you are describing sounds a lot like what I went through trying to upgrade 11.5 to 12.1. The install completed but most of the directories were empty. Checking the installer logs it looked like the 7zip process to extract the patch files crashed with an error but the installer just kept trying to do things with missing files until it finished. The Portal for ArcGIS Security 2026 Update 1 Patch D for 11.5 is supposed to fix that 11.5 to 12.1 issue but I wonder if it needs to be installed before doing any other 11.5 portal patches?
... View more
06-24-2026
01:10 PM
|
0
|
0
|
1357
|
|
POST
|
I ran the Portal for ArcGIS Security 2026 Update 2 Patch on 11.5 last night and did not see anything out of the ordinary. RAM usage was normal during and after the update. We have been on 11.5 since last summer and have installed every portal patch as they came out. So, I installed Portal for ArcGIS Security 2026 Update 2 Patch on top of Portal for ArcGIS Security 2026 Update 1 Patch D for 11.5. I manually execute the patch MSP files. Did you use PowerShell to execute the MSP file? That might have something to do with it. Two things that come to mind are the patch file needs to run with admin permissions and sometimes security/antivirus software can mess up portal patches/upgrades. We use separate physical servers, so I do not know much about snapshots. Restoring the folders to a time before installing the patch should have removed the patch files. Does the Patch Notification show the patch installed?
... View more
06-24-2026
09:12 AM
|
0
|
1
|
1419
|
|
POST
|
The way to do that is using a related table to track the repairs using a one to many relationship. Unfortunately with the way ArcGIS Online and ArcGIS Enterprise currently work, you will have to republish your layers after creating the relationships between the asset layers and the repair tables in ArcGIS Pro. Here is Esri's documentation on relationship classes: https://doc.esri.com/en/arcgis-pro/latest/tool-reference/data-management/create-relationship-class.html?tabs=dialog I would recommend one repair table for each asset layer you have, instead of trying to relate one repair table to many asset layers. For example, a sprinkler point layer should have one related table and a valve point layer should have a different related table. ArcGIS Field Maps has much better support for related tables now. Select an asset on the map and in the popup there should be a button to add a related record to the asset. Also, the ArcGIS Solutions Irrigation System Data Management solution already has a related inspection table for its assets that you can add a repair cost field to.
... View more
06-24-2026
08:06 AM
|
0
|
0
|
234
|
|
POST
|
I have never seen anything official from Esri about OS patching. I will say, unofficially, I patch and reboot servers running ArcGIS Enterprise in the order of database server first, then services server, and finally the portal server. I wait for each server to come back up before rebooting the next one. Over the years if I do not reboot them in that order or reboot them all at the same time, I have had ArcGIS Enterprise sometimes behave oddly until one or more of the services running the programs were restarted.
... View more
06-23-2026
12:30 PM
|
1
|
1
|
356
|
|
IDEA
|
In the current security environment, ArcGIS Monitor really needs the option to enable authorization with an identity provider through SAML or Open ID. I do not want this to necessarily be a requirement, but function more like ArcGIS Enterprise. You can add SAML/Open ID logins and still have ArcGIS logins if needed, or you can disable ArcGIS logins entirely. ArcGIS Monitor also currently has the equivalent of a Primary Site Administrator account that is required for the initial configuration. Like ArcGIS Enterprise, I would like the ability to disable that account once SAML/Open ID logins are setup. Since ArcGIS Monitor is monitoring one or more systems and has access to all kinds of data from those systems, I feel like this enhancement is a must.
... View more
06-23-2026
08:46 AM
|
4
|
1
|
225
|
|
POST
|
I republished my viewing services for our utility networks after removing any asset groups or asset types that we are not using at this time. Now I can remove the old utility services, add the new utility network viewing services, and the map will now save in Map Viewer. @PierreloupDucroix We are using Microsoft IIS web adaptors, but it seems I am hitting a max upload size somewhere when saving the web map. However, I am not seeing anything in the server logs about a limit being exceeded. @RobertKrisher I think my workaround will be sufficient for the time being. As we expand into collecting new asset types available in the utility networks, I will open a support ticket.
... View more
06-22-2026
08:11 AM
|
1
|
0
|
346
|
|
POST
|
Hello @prmhara we are also on Enterprise 11.5 and use distributed collaboration to sync between ArcGIS Enterprise (AGE) and ArcGIS Online (AGO). At this point, I just sync my feature services as copies to AGO and build my public facing maps and apps in AGO. If staff need to use that public app as well, I add the app as a new item in AGE using the URL from AGO. When I have tried to sync maps or apps as copies I have often received a login prompt in AGO as well. Usually because something in the map or app is still pointing back to AGE when it should be pointing to the AGO version instead. If I manually fix the issue the next sync would just undo the fix. However, according to Esri's own documentation what you are trying to do should be possible without any additional configuration on your end. "Organization utility resources included with an app, such as printing, are updated to use the recipient's corresponding utility services." https://doc.arcgis.com/en/arcgis-online/share-maps/share-content-with-collaboration-participants.htm#ESRI_SECTION1_62623E63071D428F8DD1F64E70C9DC1C
... View more
06-22-2026
07:55 AM
|
0
|
0
|
239
|
|
POST
|
I am curious what the different intentions are between things that are in both devices and assemblies. There is Blow Off in Devices, but there is also Blow Off Assembly in Water Assembly. Another example is hydrants. They are both points, but capture slightly different data.
... View more
06-18-2026
08:13 AM
|
0
|
2
|
448
|
|
POST
|
I have feature services for a water, sewer, and stormwater utility network that are setup for viewing only. No topology or utility network are included with the published data, so no editing or tracing is available or enabled. I have tried to add all three to Map Viewer in ArcGIS Enterprise 11.5 and all three are added to the map just fine. When I go to save the map I get an error "The layer, <MAPNAMEHERE>, cannot be added to the map". If I remove any of the services, the map will save. I have tried every combination and as long as there are only two of the services in the map the map will save. If I pick one of the services and remove enough of the sublayers eventually the map will save. I have tried removing sublayers from different directions, saving along the way and it will eventually save after a certain number and not a specific sublayer. Is this a limitation of Map Viewer that only so many sublayers are allowed to be saved in a web map? We migrated to the utility networks using the latest expanded versions of each kind we use. So there are a lot of subtypes. We are not using all of them so I am going to remove the ones we are not using and republish the viewing services for our utility network. Hopefully that fixes the problem.
... View more
06-18-2026
08:06 AM
|
0
|
4
|
544
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 06-24-2026 03:13 PM | |
| 2 | 06-25-2026 11:50 AM | |
| 1 | a month ago | |
| 7 | 06-25-2026 01:47 PM |
| Online Status |
Online
|
| Date Last Visited |
a week ago
|