POST
|
Thanks @Anonymous User . I'll give your suggestion a try and let you know how it goes. One additional question. When you wrote: the only downside is that the business logic is stored in the form so if you made changes to the data in another app that doesn't use the form, the logic wouldn't apply is the new Web Map Viewer an example of where the logic wouldn't apply? I'm imagining a single map that is available to our field crews working with Field Maps and our Admin staff working in the web map viewer. If i understand correctly, in that case both apps are reading the 'form' info from the map so it should work in both of those apps Thanks again.
... View more
04-19-2022
10:35 AM
|
0
|
1
|
1351
|
POST
|
Hello. I am wondering if i can automatically set the value in one column when the value in another column changes. More specifically, I have a 'status changed date' column that i'd like to populate with the current date whenever the value in the 'status' column changes. The value of the 'status changed date' could also be set manually if need be, but i'm imagining hiding 'status changed date' field on the form. In the ideal scenario, the 'status changed date' would only be updated if the value of the 'status' column changed. For example, if the 'status' was already 'Complete' and the user inadvertently set the value to 'In Progress', recognized their mistake, and then changed back to 'Complete', the 'status changed date' would not be updated. That functionality is probably asking for more than what's possible, but thought it'd be nice to check just in case. Thank you
... View more
04-18-2022
03:09 PM
|
0
|
5
|
1618
|
IDEA
|
Currently, row visibility on a Hub page can be set at the Everyone and Group levels. I'd like to be able to set the visibility at the Organization level as well - similar to Sharing in AGOL. We have what is basically a single page Hub site that is publicly accessible where anyone can download most of our data. However, we have some data that are limited to our organization members. We'd like for our org members to sign in to the Hub site and have a row visible only to all our Org members from which they could access the organization-specific data. It would be impractical to manage a Group that contains all our Org members (too many comings and goings). Thank you.
... View more
04-11-2022
10:47 AM
|
2
|
2
|
838
|
POST
|
Esri tech support has confirmed that this is a bug, and they are working on a patch that they hope to have in place in the next few days
... View more
04-01-2022
12:01 PM
|
0
|
4
|
1782
|
POST
|
Hello. Thanks for your questions: - the group type seems to have no impact on the app behavior. Regardless of being shared update or not, i can reproduce the behavior for all groups (again, i am an Org Admin so i've tested groups I own, groups i don't own, collaboration groups, shared update groups, plain-ol-vanilla groups, etc. The behavior is the same.) - there isn't an error message - its just that the Save button in the Change Owner popup is never enabled. Using chrome dev tools, I checked the response whenever a user name is selected in the popup, and a big load of json is returned, including a list of privileges that includes 'portal:user:receiveItem' - subscription is not suspended. Everything else about AGOL seems to work fine - including being able to change owner of the group via python script. - the behavior is the same in Chrome and Edge
... View more
04-01-2022
09:06 AM
|
0
|
0
|
1794
|
POST
|
Here's a nice twist that i just learned.... my admin account is able to transfer ownership via a python script. However, i cannot perform the same operation via the UI. So it seems like an issue/bug specific to the UI?
... View more
03-31-2022
04:32 PM
|
0
|
0
|
1845
|
POST
|
Hello. I am an Administrator of our AGOL organization. Starting today (3/31/2022), I am unable to change ownership of a Group. I've tried to change ownership of groups that i own and for groups that i do not own. I've selected other Admins within our Organization to be the new owner of the groups, but that doesn't work either. I've tried changing ownership for 'pre-existing' groups and for groups that i created today. None of it works. To reproduce this behavior, go to the 'overview' page of any AGOL Group Click the Change owner link Search for members (choose any name that comes up - maybe your AGOL Org admin) The 'Save' button is never enabled Is this a bug? I read about some recent updates to Content transferring here, but that article states that Admins should be able to transfer ownership (assuming that "content" includes 'Groups'). Thank you.
... View more
03-31-2022
04:26 PM
|
0
|
8
|
1848
|
POST
|
Yes and no (sadly). Working with Esri tech support, we were able to reproduce the behavior every time when using my hosted feature service. Unfortunately, when we started with a new hosted feature service and when i republished the original source hosted feature service as a new hosted feature service, we could not reproduce the bug. So, esri was happy/satisfied to say that the problem was my data source and the solution was to republish. Of course that breaks all the maps, apps, and views dependent on that hosted feature service.... it can be a very frustrating and infuriating place to be.
... View more
03-14-2022
09:11 AM
|
1
|
0
|
1296
|
POST
|
After a bit more digging, it's not the call to the Spatial Reference Factory that bombs out; it's a prior call to create an IPoint - basically the first call/use of Esri.ArcGIS.Geometry within the app. The behavior is the same though. The call is made, and nothing is ever returned (at least not before a time-out occurs). Again, no error messages are thrown. The second 'logging' call is never executed. A code snippet is below. Before the Geometry dll is invoked, the code successfully makes calls to other Esri dlls, e.g. RuntimeManager, License, LocationManager. So this seems to be particular to the Geometry dll. In my Visual Studio project, i've tried setting Esri dll references to "Embed Interop Types" and I've tried "Copy Local". Neither has an impact on the behavior. logger.DebugFormat("\tCreating a new point inside WSPoint constructor."); IPoint InPoint = new Point(); InPoint.PutCoords(Convert.ToDouble(lng), Convert.ToDouble(lat)); logger.DebugFormat("\tPoint was created inside WSPoint constructor.");
... View more
12-20-2021
10:18 PM
|
0
|
0
|
544
|
POST
|
I also tried to create the spatial reference factory with the approach below. It too noiselessly fails - that is, the method call is never returned and there is no error message raised (that i can find). Type factoryType = Type.GetTypeFromProgID("esriGeometry.SpatialReferenceEnvironment"); System.Object obj = Activator.CreateInstance(factoryType); var srFactory = obj as ISpatialReferenceFactory3;
... View more
12-20-2021
02:59 PM
|
0
|
1
|
547
|
POST
|
Hi everyone. I am working on an application that depends on a old version of the Runtime engine. The app has been working great for many years, but in the hurly burly fallout from the log4j issues last week, the server that hosted the app had to be shut down and then redeployed from a previous backup. Everything on the restored version of the hosting server works great EXCEPT this old Engine app. I've isolated the lines of code where the application breaks: try { logger.DebugFormat("Instantiating a new spatial reference environment class."); ISpatialReferenceFactory3 srFactory = new SpatialReferenceEnvironmentClass() as ISpatialReferenceFactory3; logger.DebugFormat("New spatial reference environment class instantiated."); } catch(Exception ex) { logger.ErrorFormat(ex.ToString()); } The code/application never returns from the call to create the Spatial reference factory, i.e. the logger never records the message that the class was instantiated and the 'catch' block is never invoked. Any ideas on what could be going on in the application?
... View more
12-20-2021
09:45 AM
|
0
|
2
|
574
|
POST
|
Working with Esri tech support, we were able to reproduce the situation when using my hosted feature service - that is, we could not edit an editable view created from my hosted feature service. However, we could not reproduce the error on any other hosted feature service that we tried. So, the official Esri recommendation was the way-too-familiar suggestion to export the hosted feature service and then republish it. And while that ultimately did solve that problem, it created many more problems - all the other views, maps and apps that were dependent of the original hosted feature service are now broken. I wish that Esri's default solution to problems with hosted feature services was not to republish them, and i wish that when you do have to republish a service that there was a way to maintain / set the item id and url so you could maintain\preserve all the connections to it. I also wish i could buy a winning lottery ticket. maybe one day 😉
... View more
12-13-2021
03:17 PM
|
1
|
0
|
1067
|
POST
|
Hello. Today (12/9/2021) i created a new hosted feature layer in AGOL with the December updated process for creating views (https://doc.arcgis.com/en/arcgis-online/manage-data/create-hosted-views.htm). The view was created successfully. I went into the 'Settings > Feature Layer (hosted, view) > Editing' and selected Enable editing and saved changes. When I added the view to an existing AGOL web map (using Map Viewer Classic), the view is not editable. In map viewer classic, when i click on the 'configure pop-up' button, the checkbox to enable editing of each attribute is not visible (only the 'Display' checkbox is present). I have verified that each field in the hosted feature layer view should be editable by following the directions here, If i select the option (in the AGOL Overview tab) to add the layer to a map with full editing control, i can indeed make edits. Adding the view to an existing web map is a no-go for editing
... View more
12-09-2021
02:26 PM
|
0
|
2
|
1213
|
POST
|
Hey @MicZatorsky_AEC Your suggestion worked out well - i didn't even have time to finish the entire drink 🙂 As expected, I had to download each related table separately and then recreate the relationship class. One problem i ran into, however, is that the export of one of my tables dropped all the subtypes that were in the related table. Do you have any idea how to make sure that Export preserves those subtypes? It's not impossible to (re)create them, but it sure is tedious.
... View more
11-17-2021
04:50 PM
|
0
|
1
|
2256
|
POST
|
Thank you for the suggestion. I'll get a big cup of my favorite beverage, a donut or two, and fire up Pro. I'll let you know how it goes. I'm guessing that i will have to download the main layer with the attachments and the three related tables separately. I suspect all relationships will be maintained, or i can just recreate them in Pro.
... View more
11-17-2021
03:22 PM
|
0
|
0
|
2258
|
Title | Kudos | Posted |
---|---|---|
1 | Monday | |
1 | 07-29-2024 02:19 PM | |
5 | 07-18-2024 08:44 AM | |
1 | 06-10-2024 11:28 AM | |
1 | 04-29-2024 05:34 PM |
Online Status |
Offline
|
Date Last Visited |
Monday
|