<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Isolation Trace - Skip Certain Control Valves Based on Attribute / Ground Condition in ArcGIS Utility Network Questions</title>
    <link>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701971#M6857</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/992937"&gt;@DonSanjeewaErangaJayaweera&lt;/a&gt;&amp;nbsp;-&amp;nbsp;&lt;SPAN&gt;network attributes are supported in the trace.&lt;BR /&gt;You shouldn't need to re-index or anything.&lt;BR /&gt;&lt;BR /&gt;Are you able to share some screenshots of the devices being selected and the trace tool. That might help troubleshoot this further.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 14 May 2026 03:01:11 GMT</pubDate>
    <dc:creator>gis_KIWI4</dc:creator>
    <dc:date>2026-05-14T03:01:11Z</dc:date>
    <item>
      <title>Isolation Trace - Skip Certain Control Valves Based on Attribute / Ground Condition</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701380#M6831</link>
      <description>&lt;P class=""&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;I’m working with a Water Utility Network in ArcGIS Pro 3.5 and trying to implement a custom isolation trace behavior.&lt;/SPAN&gt;&lt;/P&gt;&lt;H2&gt;&lt;SPAN&gt;Requirement&lt;/SPAN&gt;&lt;/H2&gt;&lt;P class=""&gt;&lt;SPAN&gt;We have control valves with a source attribute called:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;GroundCondition&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P class=""&gt;&lt;SPAN&gt;If:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;GroundCondition = "High Speed Road"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P class=""&gt;&lt;SPAN&gt;then the isolation trace should &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;NOT stop at that valve&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; and should instead continue to the next valid control valve.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;Operationally, these valves are difficult/inappropriate to use for isolation.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;HR /&gt;&lt;/DIV&gt;&lt;H1&gt;&lt;SPAN&gt;What I Tried&lt;/SPAN&gt;&lt;/H1&gt;&lt;H2&gt;&lt;SPAN&gt;1. Added a new field&lt;/SPAN&gt;&lt;/H2&gt;&lt;PRE&gt;&lt;SPAN&gt;IsolationEligible&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P class=""&gt;&lt;SPAN&gt;Values:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;1 = valid isolation valve&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;0 = should be skipped&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&lt;SPAN&gt;Calculated using:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;IIF(Upper(Trim($feature.GroundCondition)) == "HIGH SPEED ROAD", 0, 1)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;DIV&gt;&lt;HR /&gt;&lt;/DIV&gt;&lt;H2&gt;&lt;SPAN&gt;2. Added Utility Network network attribute&lt;/SPAN&gt;&lt;/H2&gt;&lt;P class=""&gt;&lt;SPAN&gt;Created a network attribute from &lt;/SPAN&gt;&lt;SPAN&gt;IsolationEligible&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;HR /&gt;&lt;/DIV&gt;&lt;H2&gt;&lt;SPAN&gt;3. Updated Isolation Trace configuration JSON&lt;/SPAN&gt;&lt;/H2&gt;&lt;P class=""&gt;&lt;SPAN&gt;I added &lt;/SPAN&gt;&lt;SPAN&gt;IsolationEligible&lt;/SPAN&gt;&lt;SPAN&gt; as a network attribute condition in:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;conditionBarriers&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;filterBarriers&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&lt;SPAN&gt;Example:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;{
  "name": "IsolationEligible",
  "type": "networkAttribute",
  "operator": "equal",
  "value": 1,
  "combineUsingOr": false,
  "isSpecificValue": true
}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;DIV&gt;&lt;HR /&gt;&lt;/DIV&gt;&lt;H1&gt;&lt;SPAN&gt;Observed Behavior&lt;/SPAN&gt;&lt;/H1&gt;&lt;H2&gt;&lt;SPAN&gt;Connected Trace&lt;/SPAN&gt;&lt;/H2&gt;&lt;P class=""&gt;&lt;SPAN&gt;Picks up the new field but behavior is not consistent&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;The trace stops devices where:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;IsolationEligible = 0&lt;/SPAN&gt;&lt;/PRE&gt;&lt;DIV&gt;&lt;HR /&gt;&lt;/DIV&gt;&lt;H2&gt;&lt;SPAN&gt;Isolation Trace&lt;/SPAN&gt;&lt;/H2&gt;&lt;P class=""&gt;&lt;SPAN&gt;Does NOT work as expected.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;Observed behavior:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Trace still stops at first control valve even when &lt;/SPAN&gt;&lt;SPAN&gt;IsolationEligible = 0&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;OR trace returns:&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;&lt;SPAN&gt;WARNING 002535: arcgis un trace warning&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P class=""&gt;&lt;SPAN&gt;with no results.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;HR /&gt;&lt;/DIV&gt;&lt;H1&gt;&lt;SPAN&gt;Important Finding&lt;/SPAN&gt;&lt;/H1&gt;&lt;P class=""&gt;&lt;SPAN&gt;After investigating Utility Network properties, I noticed:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Control Valve -&amp;gt; Category = Isolating Device&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P class=""&gt;&lt;SPAN&gt;It appears the Isolation Trace solver inherently treats these valves as valid isolation candidates before the custom network attribute condition is evaluated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This seems different from how Connected Trace behaves.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;&lt;STRONG&gt;Steps followed&lt;/STRONG&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;OL&gt;&lt;LI&gt;Created a new field along with a domain&lt;/LI&gt;&lt;LI&gt;Added auto Population Rule to make sure new data updates accordingly&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Updated all existing control values with correct logic (Calculate field)&lt;/LI&gt;&lt;LI&gt;Add Network Attribute&lt;/LI&gt;&lt;LI&gt;Validated network topology&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I introduce this IsolationEligible field to Supply Device FC and but values were calculated only for Control Value&amp;nbsp; subtype which is the isolating device. For other types the value is "Null"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;Questions&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Has anyone implemented similar “skip this valve during isolation solving” behavior?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Is there a supported way to influence Isolation Trace candidate valve selection using custom network attributes?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Is using separate asset types/categories the recommended pattern?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Are there other approaches people have successfully used?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;&lt;SPAN&gt;Any guidance or real-world patterns would be greatly appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2026 04:25:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701380#M6831</guid>
      <dc:creator>DonSanjeewaErangaJayaweera</dc:creator>
      <dc:date>2026-05-14T04:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Isolation Trace - Skip Certain Control Valves Based on Attribute / Ground Condition</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701387#M6832</link>
      <description>&lt;P&gt;Adding the condition barrier AND in FilterBarrier isn't going to be benficial.&lt;BR /&gt;If you want the trace to stop at a certain object then that condition belongs in the FilterBarrier sections.&lt;BR /&gt;&lt;BR /&gt;You should use a AND condition in your FilterBarriers section.&lt;BR /&gt;So your condition might look something like&amp;nbsp;&lt;STRONG&gt;Category = Isolating Device AND IsolationEligible = 1&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;This will mean that any Control Valve that is not on HighSpeedRoad will be treated as a Isolating Device.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;As a crude test, I tried this on our electric Network.&amp;nbsp;&lt;BR /&gt;I can confirm it skips any devices that are not subnetwork controllers and selects the one where ISSUBNETWORKCONTROLLER = True&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gis_KIWI4_0-1778549787546.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/152334i664E7C6A3186DC56/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gis_KIWI4_0-1778549787546.png" alt="gis_KIWI4_0-1778549787546.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gis_KIWI4_1-1778549938957.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/152335i657748B9B71B822A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gis_KIWI4_1-1778549938957.png" alt="gis_KIWI4_1-1778549938957.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2026 01:39:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701387#M6832</guid>
      <dc:creator>gis_KIWI4</dc:creator>
      <dc:date>2026-05-12T01:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: Isolation Trace - Skip Certain Control Valves Based on Attribute / Ground Condition</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701534#M6836</link>
      <description>&lt;P&gt;A condition barrier will prevent the trace from identifying sources, while filter barriers are used to identify candidate features to act as isolation equipment. For what you are trying to do, you want to configure a filter barrier. I'm just restating what&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/595273"&gt;@gis_KIWI4&lt;/a&gt;&amp;nbsp;said in a way that makes sense to me.&lt;/P&gt;&lt;P&gt;To be clear, there is no 'internal logic' or behavior of the UN with regards to condition barriers/filter barriers. We will only evaluate the attributes that are configured in the form. There are default condition barriers that are included in subnetwork definitions that are populated when you configure an isolation trace, but these are configurable and can be modified at will so therefore are not 'internal'.&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2026 14:21:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701534#M6836</guid>
      <dc:creator>RobertKrisher</dc:creator>
      <dc:date>2026-05-12T14:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Isolation Trace - Skip Certain Control Valves Based on Attribute / Ground Condition</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701712#M6848</link>
      <description>&lt;P&gt;Thank you&amp;nbsp; for your reply.&lt;BR /&gt;From the start I was using filter barriers.&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;Now I tested again using the exact condition:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;Category = 'Isolating Device' AND IsolationEligible = 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;but the behavior remained the same. May be he filter barrier logic may only evaluate built-in/system network attributes and ignore custom-created ones.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;DO you know whether custom network attributes are officially supported in filter barrier conditions for tracing/isolation workflows? If they are supported, are there any additional requirements such as indexing, schema registration, or publishing settings that need to be configured?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 09:19:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701712#M6848</guid>
      <dc:creator>DonSanjeewaErangaJayaweera</dc:creator>
      <dc:date>2026-05-13T09:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Isolation Trace - Skip Certain Control Valves Based on Attribute / Ground Condition</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701780#M6852</link>
      <description>&lt;P&gt;Once you've &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/utility-networks/add-network-attribute.htm" target="_self"&gt;created the network attribute&lt;/A&gt; you must &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/utility-networks/set-network-attribute.htm" target="_self"&gt;assign it to each field/class&lt;/A&gt; you want to associate with that network attribute then you must ensure that the field on each class is populated with the desired values.&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 14:52:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701780#M6852</guid>
      <dc:creator>RobertKrisher</dc:creator>
      <dc:date>2026-05-13T14:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Isolation Trace - Skip Certain Control Valves Based on Attribute / Ground Condition</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701970#M6856</link>
      <description>&lt;P&gt;Hi RobertKrisher,&lt;BR /&gt;&lt;BR /&gt;Thanks for your inputs.&lt;BR /&gt;Just to confirm that I have already done below steps for this testing.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Created a new field along with a domain&lt;/LI&gt;&lt;LI&gt;Added auto Population Rule to make sure new data updates accordingly&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Updated all existing control values with correct logic (Calculate field)&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Add Network Attribute&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Validated network topology&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I introduce this IsolationEligible field to Supply Device FC and but values were calculated only for Control Value&amp;nbsp; subtype which is the isolating device. For other types the value is "Null"&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2026 02:56:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701970#M6856</guid>
      <dc:creator>DonSanjeewaErangaJayaweera</dc:creator>
      <dc:date>2026-05-14T02:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Isolation Trace - Skip Certain Control Valves Based on Attribute / Ground Condition</title>
      <link>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701971#M6857</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/992937"&gt;@DonSanjeewaErangaJayaweera&lt;/a&gt;&amp;nbsp;-&amp;nbsp;&lt;SPAN&gt;network attributes are supported in the trace.&lt;BR /&gt;You shouldn't need to re-index or anything.&lt;BR /&gt;&lt;BR /&gt;Are you able to share some screenshots of the devices being selected and the trace tool. That might help troubleshoot this further.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2026 03:01:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-utility-network-questions/isolation-trace-skip-certain-control-valves-based/m-p/1701971#M6857</guid>
      <dc:creator>gis_KIWI4</dc:creator>
      <dc:date>2026-05-14T03:01:11Z</dc:date>
    </item>
  </channel>
</rss>

