|
POST
|
When I try to book a room at the portal https://registration.esri.com/flow/esri/24uc/eventportal/login?destination=attendee-portal It is showing no hotels available. Will there be more available? Mele
... View more
02-14-2024
01:13 PM
|
0
|
3
|
2099
|
|
POST
|
Micah, Yeah, so we had issues getting our users to go to our organizations URL and not the Esri login as it was not intuitive. The URL parameter helps tremendously and the QR codes is even better. The URL I am sending also starts tracking. Here is what the URL looks like https://fieldmaps.arcgis.app/?referenceContext=track&trackingON=true&portalURL=https://ourOrg.maps.arcgis.com
... View more
01-18-2024
07:48 AM
|
0
|
0
|
3409
|
|
POST
|
I have a feature layer that uses our SQL Enterprise Geodatabase. I have the feature class used by the feature layer registered as traditional versioned. Global IDs are enabled. When I try to collaborate the feature layer from ArcGIS Enterprise to AGOL, I get the Failed to execute (Create Feature Service Replica) error in the server logs. I see that Replica Tracking is grayed out on the feature class. What is missing here that needs to be set up to collaborate from our Enterprise to AGOL. Thank you, Mele
... View more
11-28-2023
10:03 AM
|
0
|
1
|
1021
|
|
POST
|
When I am working from home, I use remote desktop on my Windows 11 machine to connect to my Windows 10 computer at work via a VPC Client. Often I'll leave ArcGIS Pro open and close my RDP on my home computer to finish a geoprocessing operation or export a map. When I log back on to RDP, ArcGIS Pro crashes consistently. Any suggestions as to what to look at to change this? Thank you Mele
... View more
09-12-2023
09:42 AM
|
0
|
8
|
3127
|
|
POST
|
Duncan, Thank you for the reply. By append, I meant adding rows to the feature class. I was able to find a .NET ArcObjects way to do this. Sorry I did not post it but what I did was to get a feature class from the DBMS database and use that to append to an SDE feature class private static IFeatureClass CreateSQLFC(string SQLSERVER, string UID, string PWD, string DB, string fc) { IPropertySet propSet = new PropertySetClass(); propSet.SetProperty("DBCLIENT", "SQLServer"); propSet.SetProperty("serverinstance", SQLSERVER); propSet.SetProperty("authentication_mode", "DBMS"); propSet.SetProperty("user", UID); propSet.SetProperty("password", PWD); propSet.SetProperty("DATABASE", DB); IWorkspaceFactory2 pWSFact = (IWorkspaceFactory2)new SqlWorkspaceFactory(); IWorkspace WS = pWSFact.Open(propSet, 0); IFeatureWorkspace FWS = (IFeatureWorkspace)WS; IFeatureClass pFC = (IFeatureClass)FWS.OpenFeatureClass(fc); return pFC; }
... View more
08-09-2023
07:58 AM
|
0
|
0
|
1489
|
|
POST
|
I have a table stored in a SQL (non GDB) database. The table has SQL geometry. I need to append this table to a featureclass in a SQL Geodatabase. I am able to Access an ITable from the SQL DB, but not an IFeatureClass. When I try to append the ITable to an IFeature Class using the AppendFeatures in C#, I get an error that says the input and output must be of the same type. How do I get my ITable cast to and IFeatureclass? Thanks, Mele
... View more
06-10-2023
09:20 AM
|
0
|
2
|
1592
|
|
POST
|
We have been using QR codes to log in to Field Maps successfully, start tracking, as well as to get the users to the right map. Is there a way to use a QR code to sign the user out? This was an issue we had with iPads at our events this year. At the end of a shift, users didn't sign out and would still show themselves as tracking. I see we can turn off tracking via the QR code, but does that also sign them off? My testing does not look like that is the case. Mele
... View more
03-02-2023
12:39 PM
|
0
|
7
|
3835
|
|
POST
|
I was able to get this working. Not sure why I was having issues before. var incident = $feature.incident_number Console(incident) if(incident == null) { return "No Incident number!" } var u = FeatureSetByName($map, "Unit Status", ['incident_number', 'unit_id']) var codeStatement = 'incident_number = @incident' Console(codeStatement) var us = Filter(u, codeStatement) OrderBy(us, 'unit_id ASC') Console(Count(us)) var Units = "" for(var x in us) { Units += Text(x.unit_id) + TextFormatting.NewLine } return { Units }
... View more
02-18-2023
08:17 AM
|
0
|
2
|
2926
|
|
POST
|
I am trying to to filter a table in the new Map Viewer and show the filtered records in a popup. I have a fire incident map feature with associated units in the table. This code only works if I put in the incident_number explicitly. var incident = $feature.incident_number incident = 23069675 var u = FeatureSetByName($map, "PFD CAD Calls - Units", ['incident_number', 'unit_id']) var codeStatement = 'incident_number = @incident'; Console(incident) var us = Filter(u, codeStatement) Console(Count(us)) var popupString = 'Units:'; for(var x in us) { popupString += Text(x.unit_id) } return { popupString }
... View more
02-16-2023
09:17 AM
|
0
|
4
|
2983
|
|
POST
|
We have 509 users in our track view. Not all users have actually started tracking. Is it possible to export he list of users? It is not easy to view in the Track Viewer. By viewing in the Last Known Locations in ArcGIS Pro, I see there are 348 users who have actually started tracking. I'd like to be able to compare the users in the track view to the last known locations layer to determine those who have not yet started tracking but don't see a way to do that. Thanks, Mele
... View more
02-15-2023
08:20 AM
|
0
|
0
|
877
|
|
POST
|
I think this will work for what I needed // Samples: https://arcg.is/38SEWWz var fs = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), '22c15bddfadf42f262fbd15', 1, ['*'], true); var i = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), 'asdasdfafasdf', 0, ['*'], true); for (var f in i) { var is = Intersects(f, fs); } return is;
... View more
02-04-2023
11:12 AM
|
0
|
0
|
1293
|
|
POST
|
I would like to be able to find the Features in one FeatureSet that Intersect the Features in another FeatureSet var fs = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), '2dfsafas62fbd15', 1, ['*'], true); var i = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), '5c81afa1a04d438a9316dada1', 1, ['*'], true); var intersectLayer = Intersects(i,f); return intersectLayer; I am obviously missing something as the above doesn't work. Let me know what I am doing wrong here. Thanks, Mele
... View more
02-04-2023
10:24 AM
|
0
|
1
|
1326
|
|
POST
|
In SQL this works dispatch_date >= CONVERT(date, GETDATE())
... View more
01-26-2023
03:14 PM
|
2
|
0
|
1947
|
|
POST
|
Thank you. Does that go in SQL view? That didn't work there. Nor here
... View more
01-26-2023
02:30 PM
|
0
|
0
|
1963
|
|
POST
|
Colin, It took me a bit to double back to this. We have been busy with the Barrett Jackson car auction. We've been tracking our public safety crews with fieldmaps. All users are on iOs with varying devices and versions of the OS. We are not requiring that our users actually 'use' field maps. So if it is just sitting in a medical bag or in an officers gear we would like it to keep tracking. We found that setting the always on did that while the other settings did not. We are gearing up for WMPO, but so far Barrett Jackson seems to be working well for situational awareness via FieldMaps Mele
... View more
01-26-2023
02:24 PM
|
0
|
1
|
6301
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-27-2026 09:23 AM | |
| 1 | 02-26-2026 06:47 AM | |
| 3 | 10-20-2025 05:21 AM | |
| 1 | 03-13-2015 04:39 PM | |
| 1 | 09-18-2025 08:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|