<?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: Issue launching Survey123 from Field Maps Task Layout — “Survey link is invalid or requires an app that isn’t installed” in ArcGIS Field Maps Questions</title>
    <link>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656901#M11632</link>
    <description>&lt;P&gt;I have it enabled now and it's doing the same thing.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;iOS Version 26.0.1&lt;/LI&gt;&lt;LI&gt;Field Maps 25.2.2&lt;/LI&gt;&lt;LI&gt;Survey123 3.24.21&lt;/LI&gt;&lt;LI&gt;I am working on an online map&lt;/LI&gt;&lt;/UL&gt;</description>
    <pubDate>Thu, 09 Oct 2025 21:54:15 GMT</pubDate>
    <dc:creator>apgis16</dc:creator>
    <dc:date>2025-10-09T21:54:15Z</dc:date>
    <item>
      <title>Issue launching Survey123 from Field Maps Task Layout — “Survey link is invalid or requires an app that isn’t installed”</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656734#M11622</link>
      <description>&lt;P&gt;I’m running into an issue when trying to open a Survey123 record from a Field Maps Task Layout. Hoping someone can help me figure out what’s going on.&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;What I’m trying to do:&lt;/STRONG&gt;&lt;/U&gt;&lt;BR /&gt;I have a Survey123 form (item ID fe89e89f9ad0409b881b5406acb603ad) and a feature layer that includes a GlobalID field. In the new Field Maps Task Layout, I want to add a link that opens the Survey123 field app (not the web browser) and goes directly to the related record in edit mode.&lt;/P&gt;&lt;P&gt;Previously, in a standard popup, this web link worked perfectly:&lt;BR /&gt;&lt;A target="_new" rel="noopener"&gt;https://survey123.arcgis.com/share/fe89e89f9ad0409b881b5406acb603ad?mode=edit&amp;amp;globalId={GlobalID}&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Now, inside the Task Layout, I’ve tried multiple Arcade expressions, but all of them return an error saying “Survey link is invalid or requires an app that isn’t installed.” I've logged out, reloaded the map, and force closed the app between tries.&lt;/P&gt;&lt;P&gt;Here are the different versions I’ve tried so far:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var baseURL = "https://survey123.arcgis.com/share/fe89e89f9ad0409b881b5406acb603ad?mode=edit&amp;amp;globalId=
"
var gID = StandardizeGuid($feature.GlobalID, 'digits-hyphen')
return baseURL + gID&lt;/LI-CODE&gt;&lt;LI-CODE lang="c"&gt;var baseURL = "https://survey123.arcgis.app?itemID=fe89e89f9ad0409b881b5406acb603ad&amp;amp;action=edit&amp;amp;globalId=
"
var gID = StandardizeGuid($feature.GlobalID, 'digits-hyphen')
return baseURL + gID&lt;/LI-CODE&gt;&lt;LI-CODE lang="c"&gt;var baseURL = "arcgis-survey123://?itemID=fe89e89f9ad0409b881b5406acb603ad&amp;amp;action=edit&amp;amp;globalId="
var gID = Text($feature.GlobalID)
return baseURL + gID&lt;/LI-CODE&gt;&lt;P&gt;I'm wondering what URL scheme the new Task Layouts use. It would be great if Esri had some examples on this.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 16:23:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656734#M11622</guid>
      <dc:creator>apgis16</dc:creator>
      <dc:date>2025-10-09T16:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Issue launching Survey123 from Field Maps Task Layout — “Survey link is invalid or requires an app that isn’t installed”</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656828#M11625</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/66627"&gt;@apgis16&lt;/a&gt;&amp;nbsp;- Just to confirm your workflow: y&lt;SPAN&gt;ou have a map in Field Maps with a task-enabled layer, and you would like to open &lt;EM&gt;the same feature&lt;/EM&gt; in a corresponding survey in the Survey123 mobile app. Is that correct?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If so, then your first example is a link to the web survey, not the mobile app. And I believe your other two example baseURL links are missing two parameters:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;q:&lt;/STRONG&gt; -&amp;gt; prior to the globalID query&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;update=true&lt;/STRONG&gt; -&amp;gt; to leverage the Inbox to open an existing feature.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If you adjust your script, it should look like:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var baseURL = "https://survey123.arcgis.app?itemID=fe89e89f9ad0409b881b5406acb603ad&amp;amp;action=edit&amp;amp;update=true&amp;amp;q:globalId="
var gID = StandardizeGuid($feature.GlobalID, 'digits-hyphen')
return baseURL + gID&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following options should also work:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Hard-code the Survey123 link directly into the Link input and reference the GlobalID field using the curly bracket notation (no Arcade expression required):&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;https://survey123.arcgis.app?itemID=fe89e89f9ad0409b881b5406acb603ad&amp;amp;action=edit&amp;amp;update=true&amp;amp;q:globalId={GlobalID}​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Use an Arcade expression that uses the&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;&lt;A href="https://survey123.arcgis.app" target="_blank" rel="noopener"&gt;https://survey123.arcgis.app&lt;/A&gt;&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;universal app link.&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;return "https://survey123.arcgis.app?itemID=fe89e89f9ad0409b881b5406acb603ad&amp;amp;action=edit&amp;amp;update=true&amp;amp;q:globalId=" + $feature.GlobalID&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Use an Arcade expression that uses the&amp;nbsp; &lt;EM&gt;&lt;STRONG&gt;a&lt;/STRONG&gt;&lt;STRONG&gt;rcgis-survey123://&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;app link.&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;return "arcgis-survey123://?itemID=fe89e89f9ad0409b881b5406acb603ad&amp;amp;action=edit&amp;amp;update=true&amp;amp;q:globalId=" + $feature.GlobalID​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see the following resources for more info on how to craft Survey123 URLs:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://doc.arcgis.com/en/survey123/get-started/integrate-launchfieldapp.htm" target="_self"&gt;Launch the field app&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-survey123-questions/use-a-url-to-open-existing-record-to-edit-in-app/td-p/1320277" target="_self"&gt;Use a URL to Open Existing Record to Edit in App (Not Web)&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 09 Oct 2025 19:16:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656828#M11625</guid>
      <dc:creator>PiyaliKundu2</dc:creator>
      <dc:date>2025-10-09T19:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issue launching Survey123 from Field Maps Task Layout — “Survey link is invalid or requires an app that isn’t installed”</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656845#M11626</link>
      <description>&lt;P&gt;Hi, I tested all of these and the 1st, 3rd, and 4th still return me the same error as before. The second one opens up the S123 app but shows me a new error: "Cannot perform query. Invalid query parameters. Code 400". Do I need to have the inbox enabled? Right now I have the sent folder enabled.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 19:34:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656845#M11626</guid>
      <dc:creator>apgis16</dc:creator>
      <dc:date>2025-10-09T19:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Issue launching Survey123 from Field Maps Task Layout — “Survey link is invalid or requires an app that isn’t installed”</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656884#M11631</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/66627"&gt;@apgis16&lt;/a&gt;&amp;nbsp;- Yes, you should have the Inbox enabled. See &lt;A href="https://doc.arcgis.com/en/survey123/desktop/create-surveys/prepareforediting.htm" target="_self"&gt;Prepare to edit existing survey data&lt;/A&gt;&amp;nbsp;for more info.&lt;/P&gt;&lt;P&gt;Can you confirm the following:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Device and operating system&lt;/LI&gt;&lt;LI&gt;Version of Field Maps&lt;/LI&gt;&lt;LI&gt;Version of Survey123&lt;/LI&gt;&lt;LI&gt;In Field Maps, are you working in the online map or an offline area?&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 09 Oct 2025 21:08:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656884#M11631</guid>
      <dc:creator>PiyaliKundu2</dc:creator>
      <dc:date>2025-10-09T21:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Issue launching Survey123 from Field Maps Task Layout — “Survey link is invalid or requires an app that isn’t installed”</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656901#M11632</link>
      <description>&lt;P&gt;I have it enabled now and it's doing the same thing.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;iOS Version 26.0.1&lt;/LI&gt;&lt;LI&gt;Field Maps 25.2.2&lt;/LI&gt;&lt;LI&gt;Survey123 3.24.21&lt;/LI&gt;&lt;LI&gt;I am working on an online map&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 09 Oct 2025 21:54:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1656901#M11632</guid>
      <dc:creator>apgis16</dc:creator>
      <dc:date>2025-10-09T21:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Issue launching Survey123 from Field Maps Task Layout — “Survey link is invalid or requires an app that isn’t installed”</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1657176#M11637</link>
      <description>&lt;P&gt;I'll also note that the survey has a repeat section within it. I followed the instructions for settings here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en-us/knowledge-base/view-and-edit-the-000035097#:~:text=Open%20the%20survey%20in%20Survey%20123%20Connect.,the%20bind::esri:parameters%20field%20where%20you%20have%20a" target="_blank"&gt;How To: View and Edit Existing ArcGIS Survey123 Records Using the Survey123 Field App&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://doc.arcgis.com/en/survey123/desktop/create-surveys/prepareforediting.htm#ESRI_SECTION1_80CFFC9C38654DC293D4F36C5376C62E" target="_blank"&gt;Prepare to edit existing survey data—ArcGIS Survey123 | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have "query allowUpdates=true" in the bind::esri:parameters column for the repeat section&lt;/P&gt;</description>
      <pubDate>Fri, 10 Oct 2025 18:37:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/issue-launching-survey123-from-field-maps-task/m-p/1657176#M11637</guid>
      <dc:creator>apgis16</dc:creator>
      <dc:date>2025-10-10T18:37:34Z</dc:date>
    </item>
  </channel>
</rss>

