|
POST
|
I'm creating an attribute rule for a symbology label field to change when an asset type field is changed. I'm wondering if it's possible to store the original value and then revert to it if someone decides it's incorrect? I've tried storing the OG value as a variable and then returning that at the end of an IIF or When statement. Here's what I've tried so far and it's not working: var original_symbol = $originalFeature.symbol
if($feature.ASSETTYPE == 'Drop Manhole'){
return 'MANHOLE_DRP';
} else {
return original_symbol;
}
... View more
06-05-2025
01:32 PM
|
0
|
1
|
289
|
|
POST
|
Just add another connection and choose that one when it errors out. Some of my flows have two of the same connection, so that's how I workaround this issue
... View more
06-05-2025
01:26 PM
|
1
|
2
|
1281
|
|
POST
|
I've made and attribute rule to assign new asset ID numbers to pipes as they are drawn in ArcGIS Pro. I'm wondering if it's possible to have a prompt pop up that says "Do you want to assign an asset ID?" I want to give the user this option in case they draw the line incorrectly. Would this need to be part of a geoprocessing editing tool?
... View more
05-30-2025
12:44 PM
|
0
|
1
|
336
|
|
POST
|
Ah gotcha, the 3rd index. I just went with jr:choice-name(${dayofweek}, '${dayofweek}')
... View more
05-14-2025
11:11 AM
|
0
|
1
|
371
|
|
POST
|
I added the field dayname to the feature service and added this variable in Power automate. It's coming in blank in Google Sheets. My calculation is jr:choice-name(selected-at(${dayofweek}, 3), '${dayofweek}') The raw outputs of the S123 connector all have the domain codes. In this case dayofweek is 3, but dayname is null
... View more
05-14-2025
10:58 AM
|
0
|
3
|
1319
|
|
POST
|
OK. If I set it off null, it tells me that there is no field called Day Name in the feature service and won't publish.
... View more
05-14-2025
10:14 AM
|
0
|
6
|
1328
|
|
POST
|
OK. I set the field type to text, hidden with a label "Day Name". The bind::esri:field type is set to null. I'm able to successfully republish but it's still not showing up as a dynamic variable in Power Automate
... View more
05-14-2025
10:08 AM
|
0
|
8
|
1355
|
|
POST
|
OK, thanks. I added a calculate field called "Dayname." Now I need to figure out how to bring in this field to the Power Automate flow. It's not listed in the dynamic variables.
... View more
05-14-2025
09:11 AM
|
0
|
10
|
1361
|
|
POST
|
I set up a custom Enterprise 11.3 connector to use Survey123 triggers in Power Automate. I'm running into what seems to be a perennial issue: coded domain values. I'm writing new S123 submissions to Google Sheets, and the domain codes are transferring over, not the values. For instance the Site ID instead of the Site Name. I know there's a get coded domain values connector for Enterprise, but there isn't one for S123. Is there a calculation I can do on the field to get the domain value?
... View more
05-13-2025
04:04 PM
|
0
|
12
|
1785
|
|
POST
|
Agreed. These field types have been available for at least a year, but are incompatible with most ESRI products outside of Pro. Why does ESRI continue to release things that don't work??
... View more
04-15-2025
12:15 PM
|
3
|
0
|
1145
|
|
IDEA
|
This also needs to work in Enterprise. I can't add any time or date field to a Field Maps form. Even the older date/time field.
... View more
04-10-2025
09:30 AM
|
0
|
0
|
1031
|
|
IDEA
|
I want field users to be able to visit a site and have the site name calculated in a form from the geofence they are inside. I have this working in Arcade. I also want users to be able to fill out these forms on the web when they are NOT inside a site geofence, and to be able to choose the site name from the dropdown. I know I can accomplish this in Survey 123, but I want to keep everything in Field Maps forms for this application Here is my expression. var geofence = FeatureSetByName($map, "Security_Geofences",['Site'])
var site = First(Intersects($feature, geofence))
if (!IsEmpty(site)) {
return site['Site']
} else {
return null
}
... View more
04-04-2025
10:54 AM
|
3
|
1
|
454
|
|
POST
|
Hi Chris, I've revisited this and it's working. The problem I'm running into is that I want the field to still be editable if someone is making a report and they aren't in the site's geofence in Field Maps. Is there a way to make it calculated, but also editable? Here is my expression var geofence = FeatureSetByName($map, "Security_Geofences",['Site'])
var site = First(Intersects($feature, geofence))
if (!IsEmpty(site)) {
return site['Site']
} else {
return null
}
... View more
04-04-2025
10:46 AM
|
0
|
0
|
371
|
|
IDEA
|
So I have an sde table in Enterprise 11.3. It is registered and published in our Enterprise Portal. I've created a survey in S123 connect from the table. The problem I'm running into is with a time-only field. The time widget in the S123 iOS app records the time as hh:mm:ss in the sde table. The web version only records time as hh:mm, and I can't submit the survey because this results in an invalid ISO formatting (the lack of seconds). I don't care about recording the seconds in my survey, but I want to be able to submit from the app or the web and not have this issue come up. I'd like to keep the date and time fields separate. Not sure if this is a bug or something that should be an enhancement.
... View more
03-26-2025
03:48 PM
|
0
|
0
|
206
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | 2 weeks ago | |
| 1 | 09-13-2024 10:43 AM | |
| 1 | 06-05-2025 01:26 PM | |
| 3 | 04-04-2025 10:54 AM |
| Online Status |
Offline
|
| Date Last Visited |
Monday
|