POST
|
Are you able to edit this same map/data in the mapviewer? Successfully add/delete points, attributes, etc.? If so, then the edit settings would appear to be correct (as long as it's the same logged in user for all), and this is what I'd try next. If the user logged into Field Maps App defiantly has permission to edit this data, first I'd log completely out of FMA, close it, open it again, log in with user that has permissions and re-test. FMA 'flakes' out now and then and this is the only way I've found to re-establish the connections/permissions, etc. If that doesn't work, I'd add that hosted feature service to a brand new webmap and save it. Set up basic form (easiest to just convert pop-up) and save, then load that map into FMA and see if the blue dot appears. R_
... View more
2 hours ago
|
0
|
2
|
15
|
POST
|
If you don't see the blue plus sign, first place I check is the editing capabilities in the Settings tab of the item details page: R_
... View more
2 hours ago
|
0
|
4
|
18
|
POST
|
Finally heard back on the other issue. "BUG-000179551 is currently being evaluated by ArcGIS product teams. Description: ArcGIS Field Maps does not automatically add a new point when the 'Collecting new features' setting in ArcGIS Field Maps Designer is set to 'Center the map and add a point at your location'. During this review process, the product teams evaluate the customer impact, level of effort, and potential implementation timelines. There is no guarantee that this change will be implemented; however, the product team actively monitors it, and you will be notified of future updates."
... View more
4 hours ago
|
0
|
0
|
2
|
POST
|
Agree, that can be tedious. If you want that set at the data level, then you would need to do the same tedious steps, just in the Visualization tab. That will update the data source so that when you add it to a web map it will reflect the modified values. However, since this can be overridden in the web map, any that already have it saved will show as it 'used' to be. You would have to remove and re-add that service to the map to see the new values. In the Visualization tab, select the layers you want to modify, select the layer, click the fields button and modify as desired (be sure to click the Save button: You will see the new alias when you switch to the Data tab and look at the table. However, it appears as if there is a Bug or 'known limitation' that the Fields tab in the Data tab does not reflect it but is reflected when added to new maps. R_
... View more
4 hours ago
|
0
|
0
|
5
|
POST
|
In Mapviewer, below the popup config button, there is a Fields button. If you go into the Fields settings, click on the field that you want to change, you can change the display name. Which will then show the Display name in the popup as well as the table: R_
... View more
5 hours ago
|
0
|
0
|
16
|
POST
|
My Testing: In the Data tab of item details, this example has NormallyOpen as the first field: If we open that in New mapviewer and open the table for the System Valve layer we see that is the case: In Visualization tab of Item details, select Layers, then open the table of the FC you want to re-order, re-order them and be sure to click Save in upper left (I moved motorized to be the first field): Now if we look at the Data Tab, you will see the new order of fields: And if we add the data to a new MapViewer and open the table, you will see the new order: So, it 'should' maintain the order set in the Visualization tab unless overridden in a web map. R_
... View more
5 hours ago
|
0
|
0
|
4
|
POST
|
Making the changes in MapViewer will only change it for that map. If you want it to change 'permanently' (which can be overridden within a web map), you need to change/save it in the visualization tab. This will re-order them in the DATA mode as well. At least if you are referring to the Data tab in the item details. Testing was done with layer made for 123 Connect, created from existing features service if that helps. R_
... View more
6 hours ago
|
0
|
3
|
7
|
POST
|
In AGOL, you should be able to go into the Visualization tab of the feature service, open the table, re-order and save. This seems to change the order in tables when opened in web map. R_
... View more
Monday
|
0
|
0
|
50
|
POST
|
that is weird, something different in the data I guess. This is what I used: import arcpy
geodatabase_path = r"Database Connections\PublicWorks.sde"
output_file_path = r"C:\Temp\Output.txt"
with open(output_file_path, "w") as f:
arcpy.env.workspace = geodatabase_path
datasets = arcpy.ListDatasets("*Storm_Features*", "Feature")
f.write(f"Feature Dataset: {datasets}\n")
for ds in datasets:
for fc_fd in arcpy.ListFeatureClasses(feature_type='Polygon', feature_dataset=ds):
print (fc_fd)
f.write(f"Feature Class: {fc_fd}\n")
fields_fc_fd = arcpy.ListFields(fc_fd)
for field in fields_fc_fd:
f.write(f"{field.name}, {field.type}\n")
f.write("\n") And this is what came out (I removed all but the two sdStructure FC's in the output.txt file, one with and one without relationship class: Thought maybe it was because of "FeatureDataset" in the ListDatasets call, but seems to work the same with that or "Feature". R_
... View more
2 weeks ago
|
0
|
0
|
255
|
POST
|
Your script is working as expected for me. I tested on machine with Pro 3.2.1 and one with Pro 3.1.3, both connecting to SQL server sde 10.9.1.2.9 database. Not all the featureclasses in my feature dataset have relationship classes, but many do and they get reported just the same. R_
... View more
2 weeks ago
|
0
|
3
|
359
|
POST
|
With ArcMap you can use Catalog to enable feature access in the Service Properties: R_
... View more
2 weeks ago
|
0
|
1
|
299
|
POST
|
This should work for definition query, use your fields: created_date IN (SELECT TOP 1 created_date FROM FeatureclassName ORDER BY created_date DESC) R_
... View more
2 weeks ago
|
0
|
1
|
251
|
POST
|
I have had very similar issue before. I had to add Expects($feature, '*') to get it to work. Take a look at this post and see if it helps. R_
... View more
2 weeks ago
|
1
|
1
|
139
|
Title | Kudos | Posted |
---|---|---|
1 | 06-23-2022 03:07 PM | |
1 | 2 weeks ago | |
1 | a month ago | |
1 | a month ago | |
1 | a month ago |
Online Status |
Online
|
Date Last Visited |
8 hours ago
|