<?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 Add support for Shape_Length and Shape_Area labelling when publishing to AGOL and Enterprise in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idi-p/1260823</link>
    <description>&lt;P&gt;Currently, you &lt;STRONG&gt;can&lt;/STRONG&gt; label features in ArcGIS Online based on the Shape_Length and Shape_Area fields.&lt;/P&gt;&lt;P&gt;You &lt;STRONG&gt;can&lt;/STRONG&gt; also do this in ArcGIS Pro.&lt;/P&gt;&lt;P&gt;However, you &lt;STRONG&gt;cannot&lt;/STRONG&gt; publish a feature service with these labels, instead you get these errors.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="David_Brooks_0-1677152271968.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/63495i67C6DFC61320FA93/image-size/medium?v=v2&amp;amp;px=400" role="button" title="David_Brooks_0-1677152271968.png" alt="David_Brooks_0-1677152271968.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So both environments support it, but the sharing process doesn't.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Simple fix?&lt;/P&gt;&lt;P&gt;Please all upvote.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Feb 2023 11:40:04 GMT</pubDate>
    <dc:creator>David_Brooks</dc:creator>
    <dc:date>2023-02-23T11:40:04Z</dc:date>
    <item>
      <title>Add support for Shape_Length and Shape_Area labelling when publishing to AGOL and Enterprise</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idi-p/1260823</link>
      <description>&lt;P&gt;Currently, you &lt;STRONG&gt;can&lt;/STRONG&gt; label features in ArcGIS Online based on the Shape_Length and Shape_Area fields.&lt;/P&gt;&lt;P&gt;You &lt;STRONG&gt;can&lt;/STRONG&gt; also do this in ArcGIS Pro.&lt;/P&gt;&lt;P&gt;However, you &lt;STRONG&gt;cannot&lt;/STRONG&gt; publish a feature service with these labels, instead you get these errors.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="David_Brooks_0-1677152271968.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/63495i67C6DFC61320FA93/image-size/medium?v=v2&amp;amp;px=400" role="button" title="David_Brooks_0-1677152271968.png" alt="David_Brooks_0-1677152271968.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So both environments support it, but the sharing process doesn't.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Simple fix?&lt;/P&gt;&lt;P&gt;Please all upvote.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 11:40:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idi-p/1260823</guid>
      <dc:creator>David_Brooks</dc:creator>
      <dc:date>2023-02-23T11:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Add support for Shape_Length and Shape_Area labelling when publishing to AGOL and Enterprise</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1260899#M23419</link>
      <description>&lt;P&gt;&lt;FONT color="#999999"&gt;Disregard.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#999999"&gt;I don't have much experience with AGOL or Enterprise, but this might be a viable workaround for Enterprise:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;For Enterprise, you might be able to create a database view or a query layer that has a calculated field for LENGTH.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;For example, in Oracle, it would be:&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;&lt;FONT color="#999999"&gt;&lt;FONT face="courier new,courier"&gt;SELECT &lt;BR /&gt;   SDE.ST_LENGTH(SHAPE) AS SHAPE&lt;BR /&gt;   --other fields&lt;BR /&gt;FROM&lt;BR /&gt;    MY_FC&lt;/FONT&gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;The same would apply for AREA: &lt;FONT face="courier new,courier"&gt;SDE.ST_AREA(SHAPE)&lt;/FONT&gt;.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;I imagine you could publish the query to Enterprise and label based on that calculated field.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;Notes:&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT color="#999999"&gt;If using a database view, you might need to register the view with the geodatabase.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT color="#999999"&gt;The problem with using a view or a query layer might be: neither is editable.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT color="#999999"&gt;If you want to edit the layer in Enterprise, then maybe an attribute rule could be used instead to populate a LENGTH field in the actual feature class.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;Just thinking out loud as a non-expert.&amp;nbsp;I agree that out-of-the-box functionality would be better.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;Edit:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;After re-reading your question, I see that you specifically want to publish a feature service, likely for editing. So the idea above for creating a query won't work. Please disregard.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;Can you create dynamic joins in Enterprise? For example, could you create a view or query layer that has a calculated LENGTH field, then create a dynamic join from the FC to the query, allowing you to still edit the FC in the feature service, but also letting you label using the joined query's LENGTH field?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 21:11:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1260899#M23419</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2023-03-02T21:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Add support for Shape_Length and Shape_Area labelling when publishing to AGOL and Enterprise</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1261102#M23427</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/415930"&gt;@David_Brooks&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;are you publishing the feature service on your on-premises enterprise server/portal (by ref)? or as a host feature service in agol?&lt;/P&gt;&lt;P&gt;if it is enterprise server, did you try publishing as a map service w/o enabling feature service? did that work?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 20:09:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1261102#M23427</guid>
      <dc:creator>TanuHoque</dc:creator>
      <dc:date>2023-02-23T20:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add support for Shape_Length and Shape_Area labelling when publishing to AGOL and Enterprise</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1263759#M23524</link>
      <description>&lt;P&gt;This is for a hosted feature service in AGOL, nothing in Enterprise. Otherwise I wouldn't have written this as an Idea. Some good suggestions if it was Enterprise though.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 21:07:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1263759#M23524</guid>
      <dc:creator>David_Brooks</dc:creator>
      <dc:date>2023-03-02T21:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add support for Shape_Length and Shape_Area labelling when publishing to AGOL and Enterprise</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1383108#M28562</link>
      <description>&lt;P&gt;Best idea I've read all day &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/415930"&gt;@David_Brooks&lt;/a&gt;&amp;nbsp;and it would really help when building basemaps in ArcPro and publishing them to AGOL. Curious if you've found a quick solution?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 20:44:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1383108#M28562</guid>
      <dc:creator>CascadeHampton</dc:creator>
      <dc:date>2024-02-15T20:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Add support for Shape_Length and Shape_Area labelling when publishing to AGOL and Enterprise</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1678497#M37258</link>
      <description>&lt;P&gt;This is a very stupid limitation. I can use the Shape.STlength field as part of a label in Pro. I can use it in a label on an already published service in Portal. But I cannot publish from Pro to Portal with that field included as part of the label. Seriously?!?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2026 23:09:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1678497#M37258</guid>
      <dc:creator>MarkGo</dc:creator>
      <dc:date>2026-01-16T23:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Add support for Shape_Length and Shape_Area labelling when publishing to AGOL and Enterprise</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1678593#M37262</link>
      <description>&lt;P&gt;This limitation was introduced in the ArcGIS Pro Version 3.x if I remember right. For unknown reason, it is now longer possible (as described above). I opened a Bug report back then, because those fields were set by default as display fields, which caused issues if you just wanted to create a new feature class for a quick test and directly publish it as a service.&lt;BR /&gt;Recent versions no longer use these fields as default, but no reason was provided why this limitation was introduced in the first place.&lt;/P&gt;&lt;P&gt;My best guess is, that only user defined/editable fields are allowed and this is not the case for Shape_Length/Shape_Area.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jan 2026 11:15:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-support-for-shape-length-and-shape-area/idc-p/1678593#M37262</guid>
      <dc:creator>SimonSchütte_ct</dc:creator>
      <dc:date>2026-01-19T11:15:49Z</dc:date>
    </item>
  </channel>
</rss>

