<?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: Creating a sequential Unique ID when a new feature is added in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66212#M3800</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do a search on the forums, you'll find a lot of discussions, but I've never seen a viable solution.&amp;nbsp; It's not a trivial matter to be sure.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Sep 2015 02:12:31 GMT</pubDate>
    <dc:creator>JoeBorgione</dc:creator>
    <dc:date>2015-09-10T02:12:31Z</dc:date>
    <item>
      <title>Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66209#M3797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a sde feature class of different sites around the city that editors will use to create new ones created through an application. I am hoping that there is a way to when the editor goes into the app to create a new site, as the form pops up to begin editing- the site ID (unique ID for each site) will be automatically populated with the next number in sequence (last one created was site .00001 and the next one will be .00002 and so on). This will help with making sure that a unique ID isn't used twice and the editors don't have to remember the last one they used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 20:52:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66209#M3797</guid>
      <dc:creator>AlicePence</dc:creator>
      <dc:date>2015-09-09T20:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66210#M3798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What happens when two editors fire off the app at the same time?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 20:57:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66210#M3798</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2015-09-09T20:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66211#M3799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nothing at the moment - but now that you brought that up I'll probably add something to the app if this is needed for the unique IDs to not be duplicated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 21:14:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66211#M3799</guid>
      <dc:creator>AlicePence</dc:creator>
      <dc:date>2015-09-09T21:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66212#M3800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do a search on the forums, you'll find a lot of discussions, but I've never seen a viable solution.&amp;nbsp; It's not a trivial matter to be sure.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 02:12:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66212#M3800</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2015-09-10T02:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66213#M3801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alice,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One possible solution is using a database trigger.&amp;nbsp; Below is an example using SQL Server:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;CREATE TRIGGER [Vector].[trg_insert_id]
&amp;nbsp;&amp;nbsp;&amp;nbsp; ON [vector].[SITES]
&amp;nbsp;&amp;nbsp;&amp;nbsp; FOR INSERT
AS
BEGIN
&amp;nbsp;&amp;nbsp;&amp;nbsp; SET NOCOUNT ON;
&amp;nbsp;&amp;nbsp;&amp;nbsp; DECLARE @ID float
&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT @ID = MAX([SiteID])
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [vector].[SITES]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT @ID
&amp;nbsp;&amp;nbsp;&amp;nbsp; UPDATE [vector].[SITES]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET SiteID = @ID + 0.00001
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE OBJECTID IN (SELECT OBJECTID FROM INSERTED)
&amp;nbsp;&amp;nbsp; 
END&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The trigger is created on a feature class called 'Sites'.&amp;nbsp; After a feature is added, the trigger finds the largest SiteID, adds 0.00001 to this value and then updates the SiteID with this value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above example is a for a non-versioned feature class.&amp;nbsp; This will be more difficult for a versioned feature class.&amp;nbsp; Each update to a feature will be an insert into the A table, causing the Site ID to increase.&amp;nbsp; For example, you add a site and the Site ID is updated.&amp;nbsp; If you go back and update the site (i.e. change an attribute), the Site ID will update again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, when editing a feature in the web map the Site ID was not updated within the initial pop-up:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="screen1.PNG" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/126276_screen1.PNG" style="width: 620px; height: 336px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I set a refresh interval on the layer.&amp;nbsp; After making the edit and the refresh occurs, I was able to see the Site ID update:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="screen2.PNG" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/126277_screen2.PNG" style="width: 620px; height: 311px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One issue that I ran into is with the editing.&amp;nbsp; When using an ArcGIS Online Web Map/App, if I edited additional attributes, the trigger would not fire.&amp;nbsp; I have to add a point, close the attribute window, select out of editing (i.e click on 'Details') and then go back into the edit session to update the other attributes.&amp;nbsp; I'm currently looking into why this is occurring.&amp;nbsp; Are you going to use an ArcGIS Online Web Map/App, or develop a custom one for the editors?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:33:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66213#M3801</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-10T22:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66214#M3802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right now I am using Latitude's Geocortex HTML5 web applications as the app, but have been tossing around the idea of also using AGOL for just editing- if the steps you showed above work to some degree then I'll take the route of using AGOL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 15:31:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66214#M3802</guid>
      <dc:creator>AlicePence</dc:creator>
      <dc:date>2015-09-10T15:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66215#M3803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since you are working with an SDE feature class, why not go with the built-in unique identifier, ObjectID?&amp;nbsp; You seem to be after a basic, incremental unique identifier, which isn't much different than the ObjectID that SDE is already managing for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2015 14:41:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66215#M3803</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-09-15T14:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66216#M3804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That was one of my ideas since it does it automatically, but they need the ID numbers to be .00001, .00002 and so on&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2015 15:01:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66216#M3804</guid>
      <dc:creator>AlicePence</dc:creator>
      <dc:date>2015-09-15T15:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66217#M3805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But they need a working system more, right? &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2015 16:57:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66217#M3805</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-09-15T16:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66218#M3806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well right now, I have a SQL script in my application that runs a query on the last record found and displays it for them- it's a band-aid on this problem right now, but I tired convincing them about the ObjectID but they need it to be that string of numbers &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2015 17:22:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66218#M3806</guid>
      <dc:creator>AlicePence</dc:creator>
      <dc:date>2015-09-15T17:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66219#M3807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jake,&lt;/P&gt;&lt;P&gt;I observed the same issue, that "&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;if I edited additional attributes, the trigger would not fire&lt;/SPAN&gt;." After inspecting the HTTP traffic I noticed that the editing tool actually does cause the trigger to fire (at the insert of a new row), but then overwrites it with NULL when appyEdits is called again (and when editing attributes it is always called again.)&lt;/P&gt;&lt;P&gt;My solution was to enable geodatabase editor tracking on the feature class in order for my SQL trigger to be able to distinguish between edits to existing points and inserts of new points, like shown below (But it's Oracle syntax, not SQL Server.) -Tobias&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;CREATE OR REPLACE TRIGGER EGISADMIN.PED_COUNTERS_ID_BEF_INS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;BEFORE INSERT OR UPDATE ON EGISADMIN.PED_COUNTERS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;FOR EACH ROW&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;BEGIN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;IF :NEW.CREATED_DATE = :NEW.LAST_EDITED_DATE THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT PED_COUNTERS_S.NEXTVAL&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO :NEW.REQUESTID&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM DUAL;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; END IF;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; IF :NEW.CREATED_DATE &amp;lt;&amp;gt; :NEW.LAST_EDITED_DATE THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;--this is an edit to an existing point. here we need to block the incoming null value for requestid&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT :OLD.REQUESTID&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO :NEW.REQUESTID&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM DUAL;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; END IF;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;END&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;/&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 03:20:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66219#M3807</guid>
      <dc:creator>TobiasFimpel1</dc:creator>
      <dc:date>2015-09-16T03:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66220#M3808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, I will look into this.&lt;/P&gt;&lt;P&gt;What do you guys think about this tool:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.arcgis.com/home/item.html?id=6997e32c54bd40ca8ca13e1fdaf5948b"&gt;https://www.arcgis.com/home/item.html?id=6997e32c54bd40ca8ca13e1fdaf5948b&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2018 17:31:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66220#M3808</guid>
      <dc:creator>AndresCastillo</dc:creator>
      <dc:date>2018-07-06T17:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66221#M3809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would the concept of NextSequenceValue of Attribute Rules (ArcPro) in this thread work for you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/ideas/8531" target="_blank"&gt;https://community.esri.com/ideas/8531&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jun 2021 08:18:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66221#M3809</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2021-06-22T08:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66222#M3810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This looks cool, but I am using arcmap to publish services from our local servers.&lt;/P&gt;&lt;P&gt;Maybe this is another option?&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/thread/182383-auto-generate-sequential-asset-ids"&gt;https://community.esri.com/thread/182383-auto-generate-sequential-asset-ids&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2018 21:09:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66222#M3810</guid>
      <dc:creator>AndresCastillo</dc:creator>
      <dc:date>2018-07-06T21:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a sequential Unique ID when a new feature is added</title>
      <link>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66223#M3811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andres:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like you might be able to use the Auto-Increment solution once ArcPro can publish services directly to ArcGIS Server without too many bugs once it is hopefully released by ESRI in first half of 2019:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/ideas/12258" target="_blank"&gt;https://community.esri.com/ideas/12258&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might want to vote up this idea if you have not already done so.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jun 2021 08:18:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/creating-a-sequential-unique-id-when-a-new-feature/m-p/66223#M3811</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2021-06-22T08:18:28Z</dc:date>
    </item>
  </channel>
</rss>

