<?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: External Choice List not Updating when Survey123 Opened from Field Maps/URLs in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327465#M51654</link>
    <description>&lt;P&gt;Dynamic external choice lists have potential, but the limitations when we are working offline or starting a survey from other locations (e.g. ArcGIS Field Maps) are too limiting. It is annoying that Survey123 does not recognize that the external choice list has been updated or even that the survey has been updated. We've run into the same challenge as many of our folks are working far from an internet connection. Our solution is to use python to update the external choice csv in the survey's media folder (typically nightly). The users are still required to update their survey in Survey123, but at least the Survey123 App in this case recognizes that the survey has been updated and prompts the user to get the update (along with the updated csv). The python we use to update the csv started with this excellent sample by&amp;nbsp;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/251557" target="_blank"&gt;@ZacharySutherby&lt;/A&gt;&amp;nbsp;Find it here:&amp;nbsp;&lt;A href="https://github.com/Esri/Survey123-tools/tree/main/Update_Media_Folder" target="_blank"&gt;Survey123-tools/Update_Media_Folder at main · Esri/Survey123-tools · GitHub.&amp;nbsp;&lt;/A&gt;&lt;BR /&gt;In our case we needed some other functions in there to pull SQL server data and write the csv, but&amp;nbsp; in your case it sounds like you could grab the csv from online if it is already being managed there. Some sample code for that:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;""" Download a csv hosted in ArcGIS online as a CSV Item 
    using the ArcGIS API for Python in Python 3.x
"""
import tempfile
import arcgis

# REQUIRED PARAMETERS
csv_item_id = ''

# OPTIONAL PARAMETERS
username = ''  # if blank, use Pro's login
password = ''  # required if username not blank
download_folder = ''  # if blank uses temp dir

if username:
    gis = arcgis.gis.GIS(username, password)
else:
    gis = arcgis.gis.GIS("Pro")

if gis.users.me:
    print(f"You are logged in {gis.users.me.username}")
    csv_item = gis.content.get(csv_item_id)
    if csv_item:
        if not download_folder:
            tmpdir = tempfile.TemporaryDirectory()
            download_folder = tmpdir.name
        downloaded_csv = csv_item.download(download_folder)
        print(f"Downloaded csv to {downloaded_csv}")
    else:
        csv_item_location = r'https://maps.arcgis.com/home/item.html?id=' + csv_item_id
        print(f"Failed to find the csv item at {csv_item_id}")
else:
    # note: if you have Pro installed and your active connection is not logged in with your
    #       credentials, you may still be connected to an organization as a public user...
    print("It looks like you are not logged in. Please log in and try again.")
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Sep 2023 20:48:36 GMT</pubDate>
    <dc:creator>fklotz</dc:creator>
    <dc:date>2023-09-11T20:48:36Z</dc:date>
    <item>
      <title>External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327390#M51648</link>
      <description>&lt;P&gt;Bringing this question from 2021 back to life that &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/169433"&gt;@RobertAnderson3&lt;/a&gt; posed.&lt;/P&gt;&lt;P&gt;Original thread can be found here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/td-p/1075687" target="_self"&gt;External Choice List not Updating when Survey123 Opened from Field Maps&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Essentially, when using external choice lists, the only way to have surveys receive updated choice lists is to manually open the affected surveys in the Survey123 app. This was stated as expected behaviour as external choice lists are updated via a check on the info page.&lt;/P&gt;&lt;P&gt;Thus, if a survey is launched via URL from a source like Field Maps or Dashboards which bypass the info page, updated choice lists would &lt;STRONG&gt;not &lt;/STRONG&gt;be received by the survey. I've also noticed that if a survey is updated, downloading survey updates do &lt;STRONG&gt;not &lt;/STRONG&gt;include downloading updated choice lists.&lt;/P&gt;&lt;P&gt;Though the method of downloading updated choice lists is simple, if users are unaware/skip manual updating, they may not receive the updated choice lists before they are required. If those users are now in an area with no signal, they are now stuck using an outdated choice list.&lt;/P&gt;&lt;P&gt;At the very least, if checking for updating external choice lists could be incorporated in the process of updating surveys, that could help solve the issue.&lt;/P&gt;&lt;P&gt;There were comments in the original thread about this issue being on the radar, but it doesn't seem there have been any updates since 2021. Posting this to see if a fix is still on the radar and bring some awareness to this issue for those affected.&lt;/P&gt;&lt;P&gt;Thanks all.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Update: &lt;A href="https://support.esri.com/en-us/bug/unable-to-view-linked-content-when-launching-arcgis-sur-bug-000141398" target="_self"&gt;BUG-000141398&lt;/A&gt; was logged in 2021 and brought up in a &lt;A href="https://community.esri.com/t5/arcgis-survey123-questions/survey123-issue-external-choice-list-csvs-don-t/td-p/1211043" target="_self"&gt;thread&lt;/A&gt; from 2022 with a similar issue. Unfortunately it seems there hasn't been additional progress since the bug was logged, but it has been elevated and another tech support case related to the bug was placed by &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/169433"&gt;@RobertAnderson3&lt;/a&gt;.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Update: Although the workaround provided by &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/439089"&gt;@fklotz&lt;/a&gt; marked as the solution doesn't solve the root issue, until an official update from Esri fixes the issue, this seems to be the best solution available!&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 16:03:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327390#M51648</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-18T16:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327465#M51654</link>
      <description>&lt;P&gt;Dynamic external choice lists have potential, but the limitations when we are working offline or starting a survey from other locations (e.g. ArcGIS Field Maps) are too limiting. It is annoying that Survey123 does not recognize that the external choice list has been updated or even that the survey has been updated. We've run into the same challenge as many of our folks are working far from an internet connection. Our solution is to use python to update the external choice csv in the survey's media folder (typically nightly). The users are still required to update their survey in Survey123, but at least the Survey123 App in this case recognizes that the survey has been updated and prompts the user to get the update (along with the updated csv). The python we use to update the csv started with this excellent sample by&amp;nbsp;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/251557" target="_blank"&gt;@ZacharySutherby&lt;/A&gt;&amp;nbsp;Find it here:&amp;nbsp;&lt;A href="https://github.com/Esri/Survey123-tools/tree/main/Update_Media_Folder" target="_blank"&gt;Survey123-tools/Update_Media_Folder at main · Esri/Survey123-tools · GitHub.&amp;nbsp;&lt;/A&gt;&lt;BR /&gt;In our case we needed some other functions in there to pull SQL server data and write the csv, but&amp;nbsp; in your case it sounds like you could grab the csv from online if it is already being managed there. Some sample code for that:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;""" Download a csv hosted in ArcGIS online as a CSV Item 
    using the ArcGIS API for Python in Python 3.x
"""
import tempfile
import arcgis

# REQUIRED PARAMETERS
csv_item_id = ''

# OPTIONAL PARAMETERS
username = ''  # if blank, use Pro's login
password = ''  # required if username not blank
download_folder = ''  # if blank uses temp dir

if username:
    gis = arcgis.gis.GIS(username, password)
else:
    gis = arcgis.gis.GIS("Pro")

if gis.users.me:
    print(f"You are logged in {gis.users.me.username}")
    csv_item = gis.content.get(csv_item_id)
    if csv_item:
        if not download_folder:
            tmpdir = tempfile.TemporaryDirectory()
            download_folder = tmpdir.name
        downloaded_csv = csv_item.download(download_folder)
        print(f"Downloaded csv to {downloaded_csv}")
    else:
        csv_item_location = r'https://maps.arcgis.com/home/item.html?id=' + csv_item_id
        print(f"Failed to find the csv item at {csv_item_id}")
else:
    # note: if you have Pro installed and your active connection is not logged in with your
    #       credentials, you may still be connected to an organization as a public user...
    print("It looks like you are not logged in. Please log in and try again.")
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2023 20:48:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327465#M51654</guid>
      <dc:creator>fklotz</dc:creator>
      <dc:date>2023-09-11T20:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327658#M51662</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/171700"&gt;@Vinzafy&lt;/a&gt;&amp;nbsp;for bringing this back around. The fact this hasn't been addressed when Esri is so happy to promote the integration of their apps is baffling. It needs to be included.&amp;nbsp;&lt;/P&gt;&lt;P&gt;And thank you&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/439089"&gt;@fklotz&lt;/a&gt;&amp;nbsp;for that work around, it's nice but definitely seems foolish to have to do it this way publishing it as form updates, really removes the purpose of linked content.&lt;/P&gt;&lt;P&gt;I had recently had issues with 3.17 as well where if I published the survey with a linked CSV in the media folder from testing it would not update from AGOL either. So the entire process truly needs a clean up.&lt;/P&gt;&lt;P&gt;I see you put in a case with Esri Support, if you are able to share an Enhancement Request or Bug number or such if they give you one please share it so others can request having it added to our accounts as well!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 11:58:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327658#M51662</guid>
      <dc:creator>RobertAnderson3</dc:creator>
      <dc:date>2023-09-12T11:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327660#M51663</link>
      <description>&lt;P&gt;As well there was this idea from&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/454586"&gt;@abureaux&lt;/a&gt;&amp;nbsp;posted on the forum, but for some reason has had minimal traction.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-survey123-ideas/survey-checks-for-updates-when-loaded-from-web/idi-p/1078268" target="_blank"&gt;https://community.esri.com/t5/arcgis-survey123-ideas/survey-checks-for-updates-when-loaded-from-web/idi-p/1078268&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 12:00:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327660#M51663</guid>
      <dc:creator>RobertAnderson3</dc:creator>
      <dc:date>2023-09-12T12:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327746#M51670</link>
      <description>&lt;P&gt;My pleasure! It definitely is a shortfall and one that could cause some major issues for field folks if big updates to external choice lists are incorporated, but not manually downloaded.&lt;/P&gt;&lt;P&gt;Good to know as well that updating the CSV in the media folder for linked content doesn't update the AGO item. I haven't tried that method yet (I always updated the CSV in AGO directly), and knowing this, it's not something I'll try moving forward.&lt;/P&gt;&lt;P&gt;I have been in touch with a tech support rep. As that case evolves (and hopefully escalates to an enhancement or bug), I'll be sure to post updates and the corresponding request/bug number &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 14:54:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327746#M51670</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-12T14:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327755#M51673</link>
      <description>&lt;P&gt;Thanks for sharing the idea! Commented there as well to hopefully build traction.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 15:01:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327755#M51673</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-12T15:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327761#M51674</link>
      <description>&lt;P&gt;Python and Farley to the rescue! Just like the good ol' days. Thanks so much for your detailed response. I always appreciate how you break down the issue, propose a solution, describe why and how the solution works, and provide resources. It's always such a huge help.&lt;/P&gt;&lt;P&gt;It's great to know that updating the external choice CSV in the survey's media folder does trigger an update to the end-user. Thanks for sharing that. It is unfortunate that updates to linked content aren't at least packaged in with updates to surveys as I feel it's a reasonable assumption that it would be. Nevertheless, it's great to see there is at least some kind of workaround to it and that sample code and Github page are great resources. Go Python!&lt;/P&gt;&lt;P&gt;Appreciate your time as always Farley &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 15:09:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327761#M51674</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-12T15:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327849#M51681</link>
      <description>&lt;P&gt;Even just small updates like adding a new employee or asset to the list is a major miss if not updated. Oh yeah, it definitely doesn't update the AGOL which I'm glad for. I was talking about a bug where it was preventing the survey on device from grabbing the updated AGOL item, I think 3.18 may have fixed that though.&lt;/P&gt;&lt;P&gt;And alright sounds good, hopefully it will quickly!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 17:44:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1327849#M51681</guid>
      <dc:creator>RobertAnderson3</dc:creator>
      <dc:date>2023-09-12T17:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1328516#M51722</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Update for everyone&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I got an update from the Esri Canada Support team and it was brought up that a bug already exists for this issue. See the page below:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;STRONG&gt;&lt;A href="https://support.esri.com/en-us/bug/unable-to-view-linked-content-when-launching-arcgis-sur-bug-000141398" target="_self"&gt;BUG-000141398&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The bug was submitted on July 13, 2021 and currently has the status, "Under Consideration".&lt;/P&gt;&lt;P&gt;I put forward a case to escalate the bug which I believe is why the last modified date is today.&lt;/P&gt;&lt;P&gt;Current workaround is the following which is not very helpful:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;EM&gt;Launch ArcGIS Survey123 without using the URL parameters.&lt;/EM&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Note that there is also this thread from 2022 that addresses the same issue:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://community.esri.com/t5/arcgis-survey123-questions/survey123-issue-external-choice-list-csvs-don-t/td-p/1211043" target="_self"&gt;Survey123 Issue - external choice list CSVs don't download with survey&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/439089"&gt;@fklotz&lt;/a&gt; for the Python workaround! Currently seems to be the best option until this bug gets addressed in some fashion.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/169433"&gt;@RobertAnderson3&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/412943"&gt;@ChristopherCounsell&lt;/a&gt;, &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/508233"&gt;@ahargreaves_FW&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/454586"&gt;@abureaux&lt;/a&gt; - tagging you all here as you've had some involvement with this in the past.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 21:51:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1328516#M51722</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-13T21:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1328520#M51723</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/251557"&gt;@ZacharySutherby&lt;/a&gt; ! Tagging you here as you were on &lt;A href="https://community.esri.com/t5/arcgis-survey123-questions/survey123-issue-external-choice-list-csvs-don-t/td-p/1211043" target="_self"&gt;this thread&lt;/A&gt; back in 2022 and mentioned &lt;A href="https://support.esri.com/en-us/bug/unable-to-view-linked-content-when-launching-arcgis-sur-bug-000141398" target="_self"&gt;BUG-000141398.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Do you know if there have been any updates or further consideration regarding this bug? Any information would be much appreciated!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 21:54:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1328520#M51723</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-13T21:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1328715#M51737</link>
      <description>&lt;P&gt;Thanks for the update! I'll be putting in a ticket to get linked to that bug as well, though reading the title of it being "unable to view" instead of "unable to update" has me wondering if it's exactly the same thing or not.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 15:03:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1328715#M51737</guid>
      <dc:creator>RobertAnderson3</dc:creator>
      <dc:date>2023-09-14T15:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: External Choice List not Updating when Survey123 Opened from Field Maps/URLs</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1329650#M51788</link>
      <description>&lt;P&gt;Ah great catch! Devil's in the details. Based on the &lt;A href="https://community.esri.com/t5/arcgis-survey123-questions/survey123-issue-external-choice-list-csvs-don-t/td-p/1211043" target="_self"&gt;thread&lt;/A&gt; that the bug was mentioned in by Zach, it appears to correspond to the issues we're having. However, that thread was from 2022 and the bug was logged in 2021 and the language in the bug is a bit discrepant from what this issue is. Either way, appreciate you putting in a ticket for the bug as well to get more traction this!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:40:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/external-choice-list-not-updating-when-survey123/m-p/1329650#M51788</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-18T15:40:31Z</dc:date>
    </item>
  </channel>
</rss>

