|
POST
|
I would advise against calling First and then looping over the featureset. That could cause you to miss the first feature. Try this // Attribute Rule for Deleting Split objects
// Arcade Version 1.29
// Rule Version: 1.0.1 Separated Merge and Split Scripts
// 11/26/2025
// RUN PARAMETERS
// Triggers : Update
// Trigger Fields : Shape
// Exclude From application evaluation: True
var splitLayerName = 'RCL_SPLIT';
var rclSplit = FeatureSetByName($datastore, '<RCL_SPLIT_GUID>',['*'], false);
var deleteArray = [];
for (var feat in rclSplit){
Push(deleteArray,{
'globalID': feat.globalID
});
}
if (IsEmpty(deleteArray)){
return;
}
Console('Split: Deleting ' + Count(deleteArray) + ' Features: ' + deleteArray);
var result = {
'edit': [{
'className': splitLayerName,
'deletes': deleteArray
}]
};
Console(result);
return result;
... View more
12-01-2025
06:02 AM
|
0
|
0
|
712
|
|
POST
|
The asset package does convert the GlobalID field to a Guid and disable editor tracking. You might want to delete the GlobalID field(type GUID) and re-add it. Also enable editor tracking.
... View more
11-19-2025
04:09 AM
|
0
|
0
|
874
|
|
POST
|
Marco, I can repo it on my dataset too. Definitely seems like a bug. I would log it.
... View more
11-18-2025
04:50 AM
|
0
|
0
|
475
|
|
POST
|
Attribute Rules can only access tables in their own database. But there is a trick - https://support.esri.com/en-us/knowledge-base/creating-attribute-rules-to-access-feature-classes-in-a-000032146
... View more
11-18-2025
04:02 AM
|
0
|
0
|
725
|
|
POST
|
Can you recreate the rule using the new templated AR and see if that changes anything?
... View more
11-17-2025
01:03 PM
|
0
|
0
|
639
|
|
POST
|
Are all the layers in the same service? Are you deleting the point on the insert? If so, that could cause issues. I ran into similar things in the Abandon Features rule. Deleting $feature in an update/insert call does some bad things. I ended up using a Batch Calc Rule that would find all features marked for deleting and deleting them at a later time.
... View more
11-17-2025
12:24 PM
|
0
|
2
|
807
|
|
POST
|
Take a look at the templated rule - Generate ID. It has a option "Sequence by lookup" that could use an unique seq for grid. The templated rule writes the arcade, which you could modify to also get an ID field from the intersected layer. https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/generate-id-attribute-rule.htm#LI_A9FBB4CFF1C5407D9F9A092ABDF2FC3A
... View more
11-17-2025
05:20 AM
|
0
|
2
|
764
|
|
POST
|
Phase Change or the Network Attribute configured for phase propagation should only ever be set at locations where phase changes or deviates. This allows the system to calculate the downstream phase without the editor have to make downstream edits.
... View more
11-16-2025
06:38 AM
|
0
|
0
|
452
|
|
POST
|
BTW, if you want that valve in the results, you can use a Find Connected Trace instead of the Isolation Trace.
... View more
11-14-2025
07:58 AM
|
1
|
1
|
1039
|
|
POST
|
Ok, that picture helps. That valve is isolated by closing the other valves. So to isolate that area, that valve going into the cul-de-sac does not need to be closed. Now field operations, might choose to close that value, so the pipe is not drained and then does not have to be disinfected. But that valve is not required to be closed to isolate the area.
... View more
11-14-2025
07:56 AM
|
2
|
0
|
1042
|
|
POST
|
What do the results look like if you return all isolated features?
... View more
11-14-2025
07:17 AM
|
0
|
3
|
1084
|
|
POST
|
Hmm. Well it could be two things A: Using Phases Normal instead of Phase Change could be setting the phases energize. I do not think it is this though. That should only be set if the propagator can reach the asset, which it appears it cannot since the subnetwork trace stops B: Since the value was set and now the propagator cannot reach it, it does not know it has to reset it.
... View more
11-11-2025
08:09 AM
|
0
|
1
|
527
|
|
POST
|
If you do a subnetwork trace, does it select that downstream line? If you place a barrier pass that line? We need to find if there is a loop somewhere.
... View more
11-11-2025
07:01 AM
|
0
|
0
|
533
|
|
POST
|
What is the other unit? Do both units have a phase change set? If the other unit does not and not open, that is allowing the phase to push through.
... View more
11-11-2025
03:03 AM
|
0
|
0
|
1349
|
|
POST
|
are you modeling units in that switch? Are the units open?
... View more
11-10-2025
10:02 AM
|
0
|
0
|
1384
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Tuesday | |
| 2 | a week ago | |
| 1 | a week ago | |
| 1 | 3 weeks ago | |
| 1 | 4 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|