|
POST
|
We use concurrent licensing for Pro and I'm still able to switch my license level in Pro without it being locked and needing admin assistance. I'm curious if your IT has enabled something to lock yours down. I hope it's not going the route of ArcGIS Administrator that you need to run it as an administrator (or run a separate user-made tool) to change your license.
... View more
11-25-2019
11:45 AM
|
1
|
0
|
6262
|
|
POST
|
It looks like that function isn't available in the labeling context. I only see $layer (to use as Count($layer) to total the # of features) as a global variable under Adding an Arcade expression under Configure Popup. Unfortunately then it cannot be used in symbology or labeling. More information: Profiles | ArcGIS for Developers Does it need to just be a webmap, like using it in Collector? Might be nice to put it in a dashboard and then use an indicator widget to display the count.
... View more
11-25-2019
11:38 AM
|
0
|
3
|
4450
|
|
POST
|
Ah, it sounds like your data provider would be using ArcGIS Online Assistant then to change the REST URL the AGO layer item points to. I guess I'm confused then when you talk about your layers. Are you making a layer item of their layer item? I would think that would work then if they redirect where their layer item points to. Your layer item should be pointed to their layer item's URL which is something like https://utility.arcgis.com/usrsvcs/servers/ITEMNUMBER/rest/services/SERVICENAME/MapServer. I've seen that as well. If ArcGIS Online can't load a layer, it will disappear from the map. If you save the map before the layer reappears/is fixed, it will be removed from the map. Copying the popups config elsewhere is something I also do just in case.
... View more
11-22-2019
09:43 AM
|
1
|
1
|
3758
|
|
POST
|
Hi Ryan, I would give ArcGIS Online Assistant a try. Login with your AGO account, then navigate to your layer. Under the I Want To... button, there's an option for View an Item's JSON. I see a line in there called "sourceUrl" in my feature layer item that points to the item's source service on our unfederated Server. I imagine you could switch that out for the new URL. Editing items' JSON in AGO Assistant is "at your own risk" so be careful. If the service is secured, you will need to update the credentials in the item's settings. I use AGO Assistant all the time to "Update the URLs of Services in a Web Map". Super convenient because it won't affect your symbology/popups/etc. It has helped me update http to https in webmaps and redirect layers to new sources pretty quickly.
... View more
11-21-2019
08:05 AM
|
2
|
4
|
3758
|
|
POST
|
I thought it used to validate immediately, though I haven't used constraints a lot. There seems to be some recollection here as well that it used to be immediate, though they noticed it varied with field type: Survey123 Connect .>now() constraint not working Johnathan Hasthorpe, can you confirm the status of the constraint functionality?
... View more
11-12-2019
09:09 AM
|
0
|
0
|
5156
|
|
POST
|
It might be a bug, I'm seeing the same thing in 3.6.137 as well as 3.5.166. Unfortunately, I don't have an even older installer to see if it was working at some point.
... View more
11-08-2019
07:37 AM
|
0
|
0
|
5156
|
|
POST
|
Hi Josh McMeekin, I assume your botanical names are like this: "Quercus robur" right? I used split to split the botanical name into a list of characters (words in this case) found between spaces, and then grabbed the first word because indexes start at 0 (the [0]) and then Decode to find the string that you want associated with that word. The last line, 'Low Risk', is the default in case none of the others are found to be a match. var firstword = Split($feature.name, " ")[0] return Decode(firstword, 'Quercus','High Risk', 'Acer','High Risk', 'Picea','High Risk', 'Betula','Medium Risk', 'Fagus','Medium Risk', 'Salix','Medium Risk', 'Juglans','Medium Risk', 'Gleditsia','Medium Risk', 'Malus','Medium Risk', 'Prunus', 'Medium Risk', 'Low Risk') More information: Decode: Logical Functions | ArcGIS for Developers Split: Text Functions | ArcGIS for Developers Let me know how that works for you!
... View more
10-30-2019
11:16 AM
|
2
|
1
|
2854
|
|
POST
|
I'm not sure about getting your code to work (Actually, looks like <button> isn't supported: Supported HTML—ArcGIS Online Help | Documentation ), but ESRI created this popup configuration for the Election Management solution that has two big buttons in the popup that open surveys and works well for me: <table style=" border-collapse: separate; border-spacing: 0px 0px; width: 100%; table-layout: fixed; margin: 0px -1px;"> <tbody> <tr> <td style="text-align: center; width: 100%; padding-bottom: 50px; padding-top: 50px"> <a href="https://survey123.arcgis.com/share/{expression/expr1}?field:facilityid={facilityid}&field:name={name}&hide=field:facilityid,theme,navbar" style="background-color: #464646;color: #FFFFFF;padding: 25px 10px;text-decoration: none;margin: 0px auto;width: 300px; display: block;text-align:center;valign:center" target="_blank"><font size="5" style="">Report wait time</font></a> </td> </tr> <tr> <td style="text-align: center; width: 100%"> <a href="https://survey123.arcgis.com/share/{expression/expr0}?field:location={name}&center={expression/expr2}&hide=field:Assignments_point,field:status,theme,navbar" style="background-color: #464646;color: #FFFFFF;padding: 25px 10px;text-decoration: none;margin: 0px auto;width: 300px; display: block;text-align:center;valign:center" target="_blank"><font size="5" style="">Request assistance</font></a> </td> </tr> </tbody> </table>
... View more
10-30-2019
06:13 AM
|
1
|
0
|
1186
|
|
POST
|
You might be able to try appending the version on the end of the URL to see if it works in older versions in case it's been published in the latest: https://survey123.arcgis.com/share/IDHERE?version=3.6 broke mine https://survey123.arcgis.com/share/IDHERE?version=3.3 works ?version=latest is the intended use of the parameter
... View more
10-29-2019
12:27 PM
|
0
|
1
|
4316
|
|
POST
|
I might have it! Is your form pretty old? Looks like the Election Management Wait Time form was published with Survey123 version 3.3 (just deployed a fresh copy, didn't even download yet in Survey123 Connect). Survey123 website says under Settings>Version: When I submit a record, it works. When I click the "Press here to preview" and it runs in version 3.6, it breaks! Can you check which version yours is running as? On my original copy of Election Management that I broke, it says: This must be because I republished the XLS form in Survey123 Connect version 3.6.137. I'll check my laptop tomorrow, it might still have an old version of Connect to try republishing it on that.
... View more
10-29-2019
12:02 PM
|
0
|
2
|
9276
|
|
POST
|
Thanks for the quick reply! I'm trying to get the Election Management solution to work, and upon closer inspection, looks like the metrics table doesn't actually have a relationship with the feature layer so I guess my situation is a little different. Upon deployment, the form works. Republishing from Connect without even tweaking the xls form causes the form to get the Cannot set property 'z' of null" error in the web version. I'll report back if I figure anything out.
... View more
10-29-2019
10:40 AM
|
0
|
4
|
9276
|
|
POST
|
Hi Joe Bryant, did you find a solution to this with ESRI Support? I'm experiencing the same issue.
... View more
10-29-2019
07:20 AM
|
0
|
1
|
9276
|
|
POST
|
Did you get the time calculations to work in the browser? I'm trying that same decimal time calculation for duration and it's not working in the browser but works fine in Connect
... View more
10-28-2019
01:36 PM
|
0
|
0
|
4234
|
|
IDEA
|
I just used this guide to add Open License Switcher (.bat file) from the .mxd context menu: https://www.howtogeek.com/107965/how-to-add-any-application-shortcut-to-windows-explorers-context-menu/ You could make simple bat files for Basic and Advanced with this help article: https://support.esri.com/en/technical-article/000011374
... View more
10-18-2019
08:14 AM
|
0
|
0
|
2183
|
|
DOC
|
This is great! Thanks so much for posting this! I was able to edit it to include our Standard licenses, and it's switching between them on my PC (Windows 10, ArcMap 10.7.1). The only issue is that it's not showing the Current Level and Current License Manager. Have you tried this on 10.7.1? Do you know what might be the issue? I don't see these values under HKEY_CURRENT_USER, but I do see ESRI_SOFTWARE_CLASS under HKEY_USERS. I've tried to swap out the KEY_NAME for this different location, but it's still not populating the Current Level and Manager. Update: I can get them to populate when I changed it to what's below AND ran the .bat as an administrator. I think non-admins are being blocked from viewing the registry values, which is weird that the bat can still change the values.... set KEY_NAME="HKLM\SOFTWARE\WOW6432Node\ESRI\License10.7" set REG_LL_NAME="SOFTWARE_CLASS" set VALUE_NAME1c="LICENSE_SERVER"
... View more
10-18-2019
07:47 AM
|
0
|
0
|
6082
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-23-2025 06:30 AM | |
| 1 | 03-10-2026 10:37 AM | |
| 3 | 03-05-2026 01:21 PM | |
| 1 | 02-12-2026 07:21 AM | |
| 2 | 09-04-2025 12:24 PM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|