<?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: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1130059#M39502</link>
    <description>&lt;P&gt;Thanks so much for sharing your steps on this!&lt;BR /&gt;&lt;BR /&gt;This is FYI for those running into other issues while following the steps.&lt;BR /&gt;I ran into an issue with trying to limit the length of both text fields one of which had domain applied. I received an error when republishing that the domain length was too short though it was not. Recreating the fields without a length limit solved the issue. It's likely I should have included the length in the XLSForm to match what is in AGOL. It wasn't a big deal to have a limited length with the two fields I added so I didn't bother with trying it out.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Jan 2022 14:32:37 GMT</pubDate>
    <dc:creator>cartezj1</dc:creator>
    <dc:date>2022-01-03T14:32:37Z</dc:date>
    <item>
      <title>THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092083#M36698</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Version: Survey123 Connect 3.12.232&lt;/P&gt;&lt;P&gt;We are trying to extract the latitude and longitude from a geopoint question of published survey. We followed the recommendations of this blog, from 2016: &lt;A href="https://community.esri.com/t5/arcgis-survey123-blog/pulling-data-from-geopoint-questions/ba-p/896838" target="_blank" rel="noopener"&gt;https://community.esri.com/t5/arcgis-survey123-blog/pulling-data-from-geopoint-questions/ba-p/896838&lt;/A&gt;. We tried using the hidden question type with pulldata to extract the x\y, and using decimal question type, pulldata and hidden appearance; in both cases we are getting the message that "The existing feature service is not compatible with the survey".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The survey was created in 2020, and the blog is from 2016. Why the addition of these questions is raising this warning? That we understand means that if we publish the survey a new service will be create and the old data will be lost.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Billy_0-1629857410207.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/21630i18AE4096D5359DFC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Billy_0-1629857410207.png" alt="Billy_0-1629857410207.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 02:12:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092083#M36698</guid>
      <dc:creator>Billy</dc:creator>
      <dc:date>2021-08-25T02:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092181#M36708</link>
      <description>&lt;P&gt;Just go to the feature layer and add the fields using the name and type from your XLS form. Then when publishing the survey, it will recognize the existence of those fields and not prompt for re-publishing the service.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 13:24:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092181#M36708</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-08-25T13:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092216#M36718</link>
      <description>&lt;P&gt;Josh is correct it is telling you the fields are not there but you can add them using AGOL.&lt;/P&gt;&lt;P&gt;Also if you just need to display the lat/long I use Arcade for this.&amp;nbsp; That way if the point is ever moved it will auto update vs the static fields.&lt;/P&gt;&lt;P&gt;Code is&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Convert a Web Mecator Lat/Long to a WGS84 Lat Long using Arcade in a web map pop up

var originShift = 2.0 * PI * 6378137.0 / 2.0;
var lon = (Geometry($feature).x / originShift) * 180.0;
var lat = (Geometry($feature).y / originShift) * 180.0;
lat = 180.0 / PI * (2.0 * Atan( Exp( lat * PI / 180.0)) - PI / 2.0);
return [lon, lat];

Or as text for passing to apps
var originShift = 2.0 * PI * 6378137.0 / 2.0;
var lon = (Geometry($feature).x / originShift) * 180.0;
var lat = (Geometry($feature).y / originShift) * 180.0;
lat = 180.0 / PI * (2.0 * Atan( Exp( lat * PI / 180.0)) - PI / 2.0);
return lon + " " + lat;&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 25 Aug 2021 14:25:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092216#M36718</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2021-08-25T14:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092405#M36735</link>
      <description>&lt;P&gt;Hi Josh\Doug,&lt;/P&gt;&lt;P&gt;Thanks for your answers. We need the lat\lon as separate fields in the database because we need it for another system when we export the data as csv.&lt;/P&gt;&lt;P&gt;Regarding the addition of the fields, Survey123 is offering to add the additional fields to the feature service during the re-publishing (see the publishing dialog image). Our concern is that we have added new fields in the past and never received the warning "The existing feature service is not compatible with the survey". Our understanding is that this warning means that if we re-publish the survey with the changes then a new feature service will be created and the old data will be lost.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 19:14:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092405#M36735</guid>
      <dc:creator>Billy</dc:creator>
      <dc:date>2021-08-25T19:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092411#M36736</link>
      <description>&lt;P&gt;You need to add the fields from the AGOL Content page, not via S123.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_0-1629919014197.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/21717iF4F91F26A7EB7F28/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_0-1629919014197.png" alt="jcarlson_0-1629919014197.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I don't know if that message and overwrite option is a new addition, but I have only seen it when adding fields to the &lt;EM&gt;original form&lt;/EM&gt; in Survey123 Connect.&lt;/P&gt;&lt;P&gt;When adding new fields to additional forms that were created using the "from existing feature service" option, I get a different error that my form cannot be published due to fields not being in the feature service.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 19:18:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092411#M36736</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-08-25T19:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092430#M36737</link>
      <description>&lt;P&gt;Before adding the fields in AGOL we need to be sure that when we try to re-publish the survey the old data won't be erased.&lt;/P&gt;&lt;P&gt;I searched the documentation for a reference to the warning message but didn't find anything.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 19:25:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092430#M36737</guid>
      <dc:creator>Billy</dc:creator>
      <dc:date>2021-08-25T19:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092432#M36738</link>
      <description>&lt;P&gt;If all fields are present and no schema changes need to be made to the underlying service, you see this:&lt;/P&gt;&lt;PRE&gt;The survey will be updated without affecting the existing data.&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Aug 2021 19:27:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092432#M36738</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-08-25T19:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092434#M36739</link>
      <description>&lt;P&gt;Ok, I will try it and report back the result.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 19:31:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092434#M36739</guid>
      <dc:creator>Billy</dc:creator>
      <dc:date>2021-08-25T19:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092696#M36751</link>
      <description>&lt;P&gt;I added the fields to the feature layer in AGOL like you recommended and re-published the survey. It worked fine without data loss.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 14:36:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092696#M36751</guid>
      <dc:creator>Billy</dc:creator>
      <dc:date>2021-08-26T14:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092860#M36755</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/43830"&gt;@Billy&lt;/a&gt;&amp;nbsp;Could you give summary of your steps?&lt;BR /&gt;is going to be good documentation here for future&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 18:59:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092860#M36755</guid>
      <dc:creator>anonymous55</dc:creator>
      <dc:date>2021-08-26T18:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092884#M36757</link>
      <description>&lt;P&gt;These are the steps, like Josh recommended:&lt;/P&gt;&lt;P&gt;1- Add the new questions in your XLS form in Survey123 Connect. In my case the question type was decimal and the appearance was set to hidden. At this point, if one tries to re-publish the survey you get the this warning "The existing feature service is not compatible with the survey".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Billy_0-1630005979541.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/21840i5A54EB24BD7355E7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Billy_0-1630005979541.png" alt="Billy_0-1630005979541.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2- Go to the location where the feature layer of your survey is hosted (ArcGIS Online or ArcGIS Enterprise), and open the layer to access its properties.&lt;/P&gt;&lt;P&gt;3- Click on the Data tap of the layer property window, select Field and then hit the Add button to add as many new field as the number of new questions added to the survey. The field name and data type have to be the same used in the XLS form.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Billy_1-1630006656686.png" style="width: 776px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/21841i95D89A6A41CD0930/image-dimensions/776x115?v=v2" width="776" height="115" role="button" title="Billy_1-1630006656686.png" alt="Billy_1-1630006656686.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;4- Go back to Survey123 Connect and re-publish the survey. This time the warning "The existing feature service is not compatible with the survey" and the list of fields not found in the feature service are gone.&lt;/P&gt;&lt;P&gt;5- Go to your Survey123 Mobile App and re-load the list of surveys to force the application to recognize the changes in the survey and ask you to update it. Normally when you open the survey in the mobile app you are prompted to update the survey but in this case it didn't happened. Maybe because the fields were added manually instead of automatically by Survey123 Connect.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 19:48:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1092884#M36757</guid>
      <dc:creator>Billy</dc:creator>
      <dc:date>2021-08-26T19:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1130059#M39502</link>
      <description>&lt;P&gt;Thanks so much for sharing your steps on this!&lt;BR /&gt;&lt;BR /&gt;This is FYI for those running into other issues while following the steps.&lt;BR /&gt;I ran into an issue with trying to limit the length of both text fields one of which had domain applied. I received an error when republishing that the domain length was too short though it was not. Recreating the fields without a length limit solved the issue. It's likely I should have included the length in the XLSForm to match what is in AGOL. It wasn't a big deal to have a limited length with the two fields I added so I didn't bother with trying it out.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jan 2022 14:32:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1130059#M39502</guid>
      <dc:creator>cartezj1</dc:creator>
      <dc:date>2022-01-03T14:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: THE EXISTING FEATURE SERVICE IS NOT COMPATIBLE WITH THE SURVEY</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1674549#M65009</link>
      <description>&lt;P&gt;I know this is an old post but if anyone else is getting this error-- I just got this warning message, selected "Add the following fields when publishing," and published. None of my old data was lost, even without adding the new fields in the AGOL content page first.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2025 17:51:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/the-existing-feature-service-is-not-compatible/m-p/1674549#M65009</guid>
      <dc:creator>MeganHomison</dc:creator>
      <dc:date>2025-12-22T17:51:32Z</dc:date>
    </item>
  </channel>
</rss>

