IDEA
|
How is this still not implemented six years later?? We have a client who does all their work in AGOL/Field Maps, and they need incrementing IDs on their layers.
... View more
4 weeks ago
|
0
|
0
|
163
|
POST
|
Hello, I'm having trouble making this work on a constraint rule. I've tested the sample data from that blog post in my workspace so I know that does work. Here's the arcade I'm working with: //Start AR Check
//add a row in the aroptions table and set 1 or 0 to enable or disable the rules
var option = first(featuresetbyname($datastore, "Attribute_Rule_Options"))
if (option != null) if (option.EnableConstraintRules == 0) return true;
//End AR Check
if (!IsEmpty($feature.assetid) && !Equals($feature.assetid, $originalFeature.assetid)) {
return false; // Prevent the update
} else if (IsEmpty($feature.assetid)){
return false;
}
else {
return true; // Allow the update
}
... View more
06-11-2025
10:35 AM
|
0
|
1
|
232
|
BLOG
|
Hello, I'm having trouble making this work on a constraint rule. I've tested your sample in my workspace so I know it does work. Here's the arcade I'm working with //Start AR Check
//add a row in the aroptions table and set 1 or 0 to enable or disable the rules
var option = first(featuresetbyname($datastore, "Attribute_Rule_Options"))
if (option != null) if (option.EnableConstraintRules == 0) return true;
//End AR Check
if (!IsEmpty($feature.assetid) && !Equals($feature.assetid, $originalFeature.assetid)) {
return false; // Prevent the update
} else if (IsEmpty($feature.assetid)){
return false;
}
else {
return true; // Allow the update
}
... View more
06-11-2025
08:31 AM
|
0
|
0
|
238
|
POST
|
Is anyone accomplishing something similar to this with a single survey in a single flow?
... View more
06-11-2025
07:53 AM
|
0
|
0
|
481
|
POST
|
I favorited them and they showed up in fetch changes. But I'm not sure how I would use that. Here's how my flow looks. It actually works the first time, but it takes forever for the final email to go through. And that's me filling out and editing the survey immediately after receiving the first email. So it seems like to do need to reset something, I'm just not sure how to go about it. The two S123 connectors are identical with the same global ID. What I really need to figure out is how to kick off the last email when the survey_mode has changed from "new" to "edit"
... View more
06-10-2025
11:48 AM
|
0
|
0
|
524
|
POST
|
Ah thanks. I can only use the S123 connectors because my hosted survey layers don't show up in any of the ArcGIS connectors.
... View more
06-10-2025
09:10 AM
|
0
|
2
|
533
|
POST
|
Would you mind sharing a little more about how you implement this?
... View more
06-10-2025
08:13 AM
|
0
|
0
|
548
|
POST
|
Thanks! I will try this. The editing will be happening exclusively in S123. The manager will be getting an URL link to the submitted survey which they will edit.
... View more
06-09-2025
02:32 PM
|
0
|
4
|
601
|
POST
|
I have a public survey that is filled out for a rental fee waiver. There are hidden fields that a manager will fill out to approve or deny this request. This step is locked down to a managers group on AGOL. So far I have a PA flow that emails the filled out survey to the manager, and the hidden fields are exposed and editable. I'm trying to figure out how to resend the survey after it's been edited by the manager to the rental department. Can I do this in a single flow? Maybe a second "When a survey is submitted" trigger? I'm thinking the survey global ID doesn't change with editing though. Is anyone doing something like this?
... View more
06-09-2025
02:07 PM
|
0
|
8
|
630
|
POST
|
I have to add two of the same Enterprise 11.3 connections and toggle between them to be able to see any of my services in the trigger dropdowns. To get around the OP’s issue, I also made a flow with a single ArcGIS trigger that runs once a week to keep the connections refreshed. I was told to do this at Dev Summit. It would be nice if ESRI would either fix this with Microsoft or let everyone know about this simple workaround to keep persistent connections.
... View more
06-06-2025
08:55 AM
|
0
|
1
|
715
|
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
|
227
|
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
|
880
|
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
|
270
|
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
|
308
|
Title | Kudos | Posted |
---|---|---|
1 | 09-13-2024 10:43 AM | |
1 | 06-05-2025 01:26 PM | |
3 | 04-04-2025 10:54 AM | |
3 | 04-15-2025 12:15 PM | |
1 | 02-28-2025 01:59 PM |
Online Status |
Offline
|
Date Last Visited |
3 weeks ago
|