|
IDEA
|
Hi @Jennifer_Parmeley, To Clarify, just so others can get a better understanding of what you mean, do you mean to add the ability to freeze fields so users can still see the fields as they scroll. The other slight workaround is to zoom out of the webpage but that will result in the text shrinking throughout. I think the ability to freeze fields/column headers would be a more straightforward improvement.
... View more
12-02-2025
10:19 AM
|
0
|
0
|
449
|
|
POST
|
So there might be a few things that can be tested. Create a hosted view that is updated in field maps but has a filter set in the map to only display certain values. This should restrict the editing of the related record You can simply filter out the table values so that they are only visible in Survey123 but not in field maps Append a value to the related table such as a text field with attributes stating "survey" and have it so that it does not display in field maps when you set the visibility fields to look for fields that don't have that value.
... View more
11-26-2025
11:49 AM
|
0
|
0
|
515
|
|
POST
|
The only thing I can think of is to create an expression that concatenates and modifies the html at the same time. Something like: var C = ['• SomeValue','• SomeValue','• SomeValue']
return Concatenate(C,'/n') in addition to the html element. Something that may be doable but I have yet to test this fully.
... View more
11-26-2025
11:44 AM
|
2
|
0
|
1141
|
|
POST
|
So that is a fairly simple and straightforward method but it does have a strange workaround. Basically you would simply need to set a pre filtered field to only show the actively edited features. If you need further guidance in pretty sure others in the community have also handled this as well.
... View more
11-20-2025
02:08 PM
|
0
|
0
|
1032
|
|
POST
|
Hi @mshanaghan, You can do it but I believe there is a slight configuration issue between an editable enterprise fs vs a hosted service. The problem mainly stems from the configuration of the service itself which might prevent it from being updated. Here is the documentation pertaining to that. Feature layer requirements—ArcGIS Survey123 | Documentation There are two other things to consider depending on which direction you want to take. Regarding enterprise feature services, it is typically ideal to use Field Maps since the underlying application code base is more compatible with those types of services when compared to Survey123. Survey123 on the other hand has more capabilities and intricacies than field maps, allowing users to customize the applications behavior extensively, which most people would understand by now. However, one thing to consider at least in regard to enterprise feature services, is the use of attribute rules in conjunction with SQL to automate a majority of workflows. That is how we have our inspections set up which has reduced the time it takes to fill out information while automating a lot of our reports.
... View more
11-19-2025
07:09 AM
|
1
|
2
|
1073
|
|
POST
|
Hi @SanchezNuñez, Then you could try to deconstruct the network temporarily, though that might be inadvisable, make the change and then rebuild it. I have not constructed a utility network myself but if that is a known issue then that might be the only option. Here is something I found akin to your situation. Editing the Utility Network Schema for an Existing... - Esri Community
... View more
11-18-2025
08:57 AM
|
0
|
0
|
1464
|
|
POST
|
Have you tried creating a replica schema to see if that will work? I have not used those myself but based on what I have read it will create a local copy of the exact features you need. Whether or not that will work for you is unknown but you could give that a try.
... View more
11-18-2025
08:53 AM
|
0
|
0
|
543
|
|
POST
|
Hi @MitchHolley1, Have you tried running the generate schema report in pro. I typically use that when identifying changes between test and production databases.
... View more
11-18-2025
08:18 AM
|
0
|
2
|
548
|
|
POST
|
Hi @mshanaghan, So in regards to both hosted and enterprise services, typically you would want to keep everything in either one or the other. Survey123 can be used to update information and write back to a published service from an enterprise sde database but that is bit of a tricky work around and isn't necessarily ideal. If you want to update a hosted service and create the relationships that way then that is probably more ideal when using Survey123. Otherwise it might be best to create the relationship in the feature service published from the enterprise sde database. There are some workarounds to getting information from bar codes in field maps.
... View more
11-18-2025
08:15 AM
|
1
|
4
|
1102
|
|
POST
|
Hi @JoseSanchez, Have you looked into using the Table to Domain Tool in ArcGIS Pro. If you modify a domain of one value but wish to update both code and description then you can use this tool. You can also simply use one field for both the code and description values of a domain. Ideally if one sets of codes/descriptions are dependent on another set of values then this tool might be the easiest. However, if there are only small changes, then it might be best to simply modify the codes and descriptions manually.
... View more
11-18-2025
08:06 AM
|
0
|
2
|
1500
|
|
IDEA
|
Hi @kyankraehenbuehllaixoversumchK, First, please use the code function when pasting any type of code, otherwise it makes it difficult to troubleshoot your issue. //Field: “Bestand Werte kopieren” (Copy Existing Values)
//Editing Expression:
if (IsEmpty($feature.BAUWERK_REF) || $feature.BESTAND_WERTE_KOPIEREN == 1) {
return false
} else {
var relatedFeatures = FeatureSetByRelationshipName(
$feature,
"ABWASSER_MASTER_OWNER.ABW_BESTAND_BAUWERK",
['BEZEICHNUNG']
);
var firstFeature = First(relatedFeatures);
return (
$feature.BEZEICHNUNG != firstFeature.BEZEICHNUNG
);
}
//Calculated Expression:
return 2
//Field: “Bezeichnung” (Label/Name)
//Calculated Expression:
if (IsEmpty($feature.BAUWERK_REF)) {
return $feature.BEZEICHNUNG
} else {
var relatedFeatures = FeatureSetByRelationshipName(
$feature,
"ABWASSER_MASTER_OWNER.ABW_BESTAND_BAUWERK",
['BEZEICHNUNG']
)
var firstFeature = First(relatedFeatures)
return firstFeature.BEZEICHNUNG
}
//Editing Expression:
//DomainName($feature, "BESTAND_WERTE_KOPIEREN") == "Werte aus Bestand kopieren" Secondly, are these calculations used in the same field calculation or are these two different fields with similar calculations. Depending on which then here is perhaps a better approach. Assuming these are the same field.
... View more
11-17-2025
07:52 AM
|
0
|
0
|
497
|
|
POST
|
You could go a more programmatic route. var fs = FeatureSetByPortalItem('d651aa4112e5408ea9a1cfabecd6485c', 23)
// Create schema for the returned FeatureSet
var HRC = "HOUR_OF_CRASH" ; var TODn = "TOD"
var FDict = Dictionary( HRC, "esriFieldTypeInteger", TODn, "esriFieldTypeString" )
var fields = [
{ name: HRC, type: FDict[HRC] },
{ name: TODn, type: FDict[TODn] }
];
var features = [];
for (var f in fs) {
FDict[HRC] = f.[HRC]
FDict[TODn] = When( hour >= 0 && hour <= 5, "Night", hour <= 8, "Morning", hour <= 15, "Day", hour <= 23, "Evening", Null )
Push( features, { attributes: FDict })
}
return FeatureSet( fields:fields, features:features, geometry:'' )
... View more
11-17-2025
07:45 AM
|
0
|
0
|
1081
|
|
POST
|
The other thing to add, depending on if you are using an enterprise sde database, is the NextSequenceValue. This is first generated by running the generate sequence tool that, once created, will autoincrement a new numerical number. If you are looking make that id alphanumeric, then you can concatenate the next sequential number with any string characters you want.
... View more
11-17-2025
06:02 AM
|
0
|
0
|
718
|
|
POST
|
Hi @Bec, So the issue is that you are not returning a feature. When creating a custom data expression you should return a value similar to the one below. var portal = Portal("https://www.arcgis.com");
var fs = FeatureSetByPortalItem('d651aa4112e5408ea9a1cfabecd6485c', 23)
// Create schema for the returned FeatureSet
var fields = [
{ name: "HOUR_OF_CRASH", type: "esriFieldTypeInteger" },
{ name: "TOD", type: "esriFieldTypeString" }
];
var features = [];
for (var f in fs) {
var hour = f.HOUR_OF_CRASH;
var tod = When( hour >= 0 && hour <= 5, "Night", hour >= 6 && hour <= 8, "Morning", hour >= 9 && hour <= 15, "Day", 16 && hour <= 23, "Evening", Null )
Push( features, { attributes: { HOUR_OF_CRASH: hour, TOD: tod } })
}
return FeatureSet( fields, Values, geometry:'' )
... View more
11-17-2025
05:54 AM
|
1
|
3
|
1099
|
|
POST
|
That was going to be my other recommendation as well. Having a dictionary of fields to map makes data migration easier but it is a bit time consuming if you only know one dataset and how to map to it. If I have multiple datasets I typically use a dictionary such as the one below. fieldmappings = {
('A_FieldA','B_FieldA','C_FieldA') : 'MyFieldA',
('A_FieldB','B_FieldB') : 'MyFieldB'
}
... View more
11-04-2025
06:49 AM
|
1
|
0
|
1226
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 1 | 02-10-2026 06:09 AM | |
| 1 | 03-04-2026 01:08 PM | |
| 1 | 02-24-2026 12:59 PM | |
| 3 | 03-03-2026 10:33 AM |
| Online Status |
Online
|
| Date Last Visited |
8 hours ago
|