Hello everyone,
I recently came across a discussion where a user encountered a challenge in ArcGIS Online that I believe many of us might face. The user had two hosted feature layers and used the "Joined View Layers" tool in ArcGIS Online to create a hosted feature layer joined view. However, they ran into an issue when they wanted to add a new field to one of the datasets and discovered that the "Add Field" button was unavailable. This is a known limitation, as adding fields to hosted feature layers with a dependent joined feature layer view is not directly possible.
A helpful solution was suggested, but it's quite technical, and I'm struggling to fully understand it. Therefore, I'm reaching out to see if anyone could create a short video tutorial demonstrating this process. This video would be immensely helpful to me and others who might encounter a similar issue.
Here's a summary of the proposed solution for updating the hosted feature layer joined view:
This solution appears to be an efficient workaround to the problem of adding a field without needing to reconfigure all applications after deleting the view.
My request, or rather my plea, is for someone to create a short YouTube video demonstrating this for many of us who are more visually inclined or less familiar with Python scripting.
Thank you in advance to anyone who can assist with this!
Any love for this post? Would save me a few hours a week worth of work.
Hi Jon - This is Ann Wang from ArcGIS Online team.
To access the item:
gis.content.get(item_id)
To replace the old view with the new one for your web map:
web_map_obj.remove_layer(your_old_layer)
web_map_obj.add_layer(your_new_layer)
web_map_obj.update()
For more information about using and updating GIS content, this blog might be a little helpful for you: https://developers.arcgis.com/python/samples/using-and-updating-GIS-content/
Please let me know if you have any other questions!
Hi Ann, thank you so much! Could someone possibly create a video tutorial that covers the entire process, from the very beginning at the user's desktop screen, right through to the completion of the update?
If the video doesn't have a lot of commentary, having some explanation would be incredibly helpful, but not at all expected :).
Please consider that I'm quite new to these more "advanced" tasks and could really use some detailed guidance. I'm sure I'm not the only one finding this issue challenging and any assistance would be greatly appreciated.