<?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>idea Parcel Fabric: warn if trying to edit a version that is not a child of the default version in ArcGIS Parcel Fabric Ideas</title>
    <link>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/parcel-fabric-warn-if-trying-to-edit-a-version/idi-p/936947</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I have a new person who will be working on our parcels.&amp;nbsp; I set up a version for him which is a child of my qaqc version, and a grandchild of our default version.&amp;nbsp; He could start editing the parcels, but all the parcel construction tools were disabled.&lt;BR /&gt;&lt;BR /&gt;When I couldnt edit anything I decided to call technical support.&amp;nbsp; The person was helpful and thorough.&amp;nbsp; We checked the drivers, and the permissions, the services, etc.&amp;nbsp; After a while he rememberd that unlike other feature classes the parcel fabric can only be edited if it is the default version or a child of a default version.&amp;nbsp; Therefore editing on the grandchild of the default version would&amp;nbsp; not work.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Feature request:&lt;BR /&gt;Display a warning if we are trying to edit a parcel fabric that is not the default or a child of the default version, that is until it is possible to edit the parcel fabric using a grandchild version.&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jun 2014 19:02:06 GMT</pubDate>
    <dc:creator>MarkVolz</dc:creator>
    <dc:date>2014-06-25T19:02:06Z</dc:date>
    <item>
      <title>Parcel Fabric: warn if trying to edit a version that is not a child of the default version</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/parcel-fabric-warn-if-trying-to-edit-a-version/idi-p/936947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I have a new person who will be working on our parcels.&amp;nbsp; I set up a version for him which is a child of my qaqc version, and a grandchild of our default version.&amp;nbsp; He could start editing the parcels, but all the parcel construction tools were disabled.&lt;BR /&gt;&lt;BR /&gt;When I couldnt edit anything I decided to call technical support.&amp;nbsp; The person was helpful and thorough.&amp;nbsp; We checked the drivers, and the permissions, the services, etc.&amp;nbsp; After a while he rememberd that unlike other feature classes the parcel fabric can only be edited if it is the default version or a child of a default version.&amp;nbsp; Therefore editing on the grandchild of the default version would&amp;nbsp; not work.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Feature request:&lt;BR /&gt;Display a warning if we are trying to edit a parcel fabric that is not the default or a child of the default version, that is until it is possible to edit the parcel fabric using a grandchild version.&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 19:02:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/parcel-fabric-warn-if-trying-to-edit-a-version/idi-p/936947</guid>
      <dc:creator>MarkVolz</dc:creator>
      <dc:date>2014-06-25T19:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Parcel Fabric: warn if trying to edit a version that is not a child of the default version</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/parcel-fabric-warn-if-trying-to-edit-a-version/idc-p/936948#M27</link>
      <description>&lt;P&gt;Implemented in ArcGIS Pro using Attribute Rule Constraint rule.&lt;/P&gt;&lt;P&gt;Use the currentVersion($feature) to check reject edits if they are done on the default version (by certain users).&lt;/P&gt;&lt;P&gt;To allow editing of default to the administrator user you can also include the new user access capabilities.&lt;/P&gt;&lt;P&gt;Both are new in ArcGIS Pro 2.7.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="line number1 index0 alt2"&gt;var&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;version = gdbVersion($feature)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;//get the version&lt;/DIV&gt;&lt;DIV class="line number2 index1 alt1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="line number3 index2 alt2"&gt;if&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(version&amp;nbsp; ==&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;"sde.DEFAULT")&lt;/DIV&gt;&lt;DIV class="line number4 index3 alt1"&gt;{&lt;/DIV&gt;&lt;DIV class="line number5 index4 alt2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;//DEFAULT version logic e.g. prevent editing in default&lt;/DIV&gt;&lt;DIV class="line number6 index5 alt1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="line number7 index6 alt2"&gt;}&lt;/DIV&gt;&lt;DIV class="line number8 index7 alt1"&gt;else&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;if&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(version&amp;nbsp; !=&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;"sde.DEFAULT"&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&amp;amp;&amp;amp; version&amp;nbsp; !=&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;"")&lt;/DIV&gt;&lt;DIV class="line number9 index8 alt2"&gt;{&lt;/DIV&gt;&lt;DIV class="line number10 index9 alt1"&gt;&amp;nbsp;&amp;nbsp;//when in a version&lt;/DIV&gt;&lt;DIV class="line number11 index10 alt2"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="line number12 index11 alt1"&gt;}&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 15:58:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/parcel-fabric-warn-if-trying-to-edit-a-version/idc-p/936948#M27</guid>
      <dc:creator>AmirBar-Maor</dc:creator>
      <dc:date>2020-11-25T15:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Parcel Fabric: warn if trying to edit a version that is not a child of the default version - Status changed to: Implemented</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/parcel-fabric-warn-if-trying-to-edit-a-version/idc-p/1010451#M174</link>
      <description />
      <pubDate>Thu, 17 Dec 2020 00:17:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/parcel-fabric-warn-if-trying-to-edit-a-version/idc-p/1010451#M174</guid>
      <dc:creator>KoryKramer</dc:creator>
      <dc:date>2020-12-17T00:17:01Z</dc:date>
    </item>
  </channel>
</rss>

