<?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: Pass Global ID from Collector to G in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842960#M21324</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Closely related to the original question, I am trying to pass the GlobalID from Collector features into a Survey123 field called CollectorID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the CollectorID field is text this works.&amp;nbsp;When the CollectorID field type is GUID however it appears to work (GlobalD passed, no brackets) but I cannot save the survey. I get the following message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.esri.com/legacyfs/online/400393_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea how to pass a GlobalID from Collector to a GUID field in Survey123? I am passing the GlobalID to a GUID field because I need to set up a relationship class between the Survey123 and the Collector features based on this passed GlobalID. If someone has an alternative way to get around this I'm also open to that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Apr 2018 19:23:18 GMT</pubDate>
    <dc:creator>AliciaRitzenthaler</dc:creator>
    <dc:date>2018-04-02T19:23:18Z</dc:date>
    <item>
      <title>Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842954#M21318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0in 0in 8pt;"&gt;&lt;SPAN style="color: #000000; font-family: Calibri; font-size: medium;"&gt;Has anyone been able to pass the Global ID from a service in Collector to the related GUID in Survey123 using the URL method?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0in 0in 8pt;"&gt;&lt;SPAN style="color: #000000; font-family: Calibri; font-size: medium;"&gt;I have a database relationship of Bridges to Inspections. In addition, Inspections have related Elements. Since Survey123 can only go two deep in relationships I have a service for Bridges in Collector and the Inspections and Elements in Survey123. I have created the Survey123 from the Inspection and Element service.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2018 15:24:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842954#M21318</guid>
      <dc:creator>KevinKozak</dc:creator>
      <dc:date>2018-01-25T15:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842955#M21319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you're asking for is possible. &amp;nbsp;You would need to configure the Bridges layer's pop-up to have a url that includes the GlobalID in the parameters; this is described in&amp;nbsp;&lt;A class="link-titled" href="http://doc.arcgis.com/en/survey123/reference/integratewithotherapps.htm" title="http://doc.arcgis.com/en/survey123/reference/integratewithotherapps.htm"&gt;Integrate with other apps—Survey123 for ArcGIS | ArcGIS&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://community.esri.com/groups/survey123/blog/2016/07/30/understanding-survey123s-custom-url-scheme"&gt;https://community.esri.com/groups/survey123/blog/2016/07/30/understanding-survey123s-custom-url-scheme&lt;/A&gt;&amp;nbsp;. &amp;nbsp;This would go into a hidden field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a known issue with Survey123 receiving the globalid value - it can't process the value if it already has curly braces ( { } ). &amp;nbsp;To get around that, the&amp;nbsp;survey should be designed with 2 fields to handle the globalid value:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The first field (let's cal it "incoming") should be a hidden field (or text, if you want to validate that it's receiving the value) that has a fieldType null (so it isn't submitted to the database. &amp;nbsp;In your case, using an existing feature class, this would be added if you have Survey123 create a form based on the feature class&lt;/LI&gt;&lt;LI&gt;The second field (parentglobalid) will hold the value, minus any curly braces. &amp;nbsp;This can be a calculate&amp;nbsp;(or again, text for validation checks) question with a formula like:&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;if(regex(${incoming}, '^\{[\w\-]*\}$'), substr(${incoming},1, string-length(${incoming}) - 1), ${incoming})&lt;/PRE&gt;&lt;P&gt;The regex detects if the guid is formatted as {1080901b-c30d-411b-a485-151c8f6ad8e6}, if the braces are present, it extracts the portion between the braces, otherwise it passes the guid unaltered. &amp;nbsp;The field type should by of esriFieldTypeGUID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the attached sheet for an example of this pattern.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jan 2018 16:55:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842955#M21319</guid>
      <dc:creator>JamesTedrick</dc:creator>
      <dc:date>2018-01-26T16:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842956#M21320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0in 0in 8pt;"&gt;Hello James,&lt;/P&gt;&lt;P style="margin: 0in 0in 8pt;"&gt;I appreciate your response. I read the articles you provided, they were informative. Being an old GIS dog trying to learn new tricks, I still have some questions.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;My goal is to maintain the relationship class between the Bridge service’s GlobalID and the Bridge GUID in the Inspection service. If I have created the survey by importing the Inspection service schema, which has the Bridge GUID already and cannot be seen in the survey as a question, how would I list this existing GUID as a question? Documentation says that reserved fields in a feature layer are not added to the XLSForm, which GloabalID is a reserved word. Adding such a field with the same name would seem to change the Inspection schema and create a new service. Your example calls this the “theguid” in the XLSForm.&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;How does a GlobalID and GUID work if the curly brackets are removed?&lt;/LI&gt;&lt;/UL&gt;&lt;P style="margin: 0in 0in 8pt;"&gt;Below is my thought process based upon your suggestions.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Bridge feature service has GlobalID field.&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;Inspection feature service has a GlobalID and brdg_guid fields.&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;In the Survey123 form have the following questions added:&lt;UL&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;brdg_guid_txt as type null&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;brdg_guid as type esriFieldTypeGUID and the calculation for the regex statement&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;Have Collector Bridge popup as: arcgis-survey123://?itemID=fe06d025e41a4ceabdb3dd1ba15713c6&amp;amp;field: brdg_guid ={GlobalID}&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thank you for your help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2018 20:44:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842956#M21320</guid>
      <dc:creator>KevinKozak</dc:creator>
      <dc:date>2018-01-31T20:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842957#M21321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;When Survey123 creates a form based on an existing feature service, it omits the GlobalID and GUID fields as the form rendered (including bridges and inspections) would automatically manage the relationships. &amp;nbsp;When switching to a URL-launched survey, we go from automatic management to manual management. &amp;nbsp;You need to manually add the ParentGUID question manually to accommodate this.&lt;BR /&gt;From the question, are you planning to edit the Bridge layer when being launched by a hyperlink? &amp;nbsp;This is currently not supported; opening the app by hyperlink is supported for add only (Inspection form)&lt;/LI&gt;&lt;LI&gt;Survey123 supports fields with a bind::Esri:fieldType of null - this means that a question will not be submitted and has no effect on the table schemas&lt;/LI&gt;&lt;LI&gt;The curly braces are added automatically by Survey123, which is why they need to be removed&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The URL as you've specified looks to be appropriate for what you're describing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2018 23:58:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842957#M21321</guid>
      <dc:creator>JamesTedrick</dc:creator>
      <dc:date>2018-01-31T23:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842958#M21322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0in 0in 8pt;"&gt;Hello James,&lt;/P&gt;&lt;P style="margin: 0in 0in 8pt;"&gt;I was able to implement your suggestions and it worked. Old dogs can learn new tricks. Below is the general outline I used in case someone needs to do the same type of function.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Create database in a file geodatabase with relationship class of Global ID to GUID.&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;Create ArcMap document with data layers and save as service in AGOL.&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;Set service to allow editing and share to editing group.&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;In Survey123 Connect, create new survey by importing service.&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;In XLS Form add a text question that has a Null field type for holding the related Global ID.&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;In XLS Form add a text question that has a GUID field type. For the question name, use the same name as the GUID in the service.&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;For the GUID question use the following calculation to remove the curly brackets from the Global ID.&amp;nbsp;if(regex(${brdg_guid_txt}, '^\{[\w\-]*\}$'), substr(${brdg_guid_txt},1, string-length(${brdg_guid_txt}) - 1), ${brdg_guid_txt})&lt;/LI&gt;&lt;LI style="color: #000000; font-size: 11pt;"&gt;In AGOL create a web map with the related service to the one in Survey123. Use the following popup line.&amp;nbsp; arcgis-survey123://?itemID=affe05ec8db8448daccb0688c9583ce8&amp;amp;field:brdg_guid_txt={GlobalID}&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help. If you are every in Olympia, WA please let me know. I owe you a cup of coffee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2018 16:44:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842958#M21322</guid>
      <dc:creator>KevinKozak</dc:creator>
      <dc:date>2018-02-06T16:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842959#M21323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;I have a follow up question associated with this topic.&amp;nbsp; I was able to successfully pass the GlobalID from Collector to Survey123 using the custom url.&amp;nbsp; It works as expected when creating a new record.&amp;nbsp; However, if I try to edit an existing record using the inbox in Survey123, I get a Code 400 send error.&amp;nbsp; After much trial and error, I noticed the GUID field had the curly brackets added back into the value.&amp;nbsp; If I went in and removed the curly brackets during the edit and resubmitted it would successfully update.&amp;nbsp; Otherwise, I get a&amp;nbsp;Code 400 send error.&amp;nbsp; Any thoughts?&lt;/P&gt;&lt;P&gt;Suddha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 14:05:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842959#M21323</guid>
      <dc:creator>SuddhaGraves</dc:creator>
      <dc:date>2018-04-02T14:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842960#M21324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Closely related to the original question, I am trying to pass the GlobalID from Collector features into a Survey123 field called CollectorID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the CollectorID field is text this works.&amp;nbsp;When the CollectorID field type is GUID however it appears to work (GlobalD passed, no brackets) but I cannot save the survey. I get the following message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.esri.com/legacyfs/online/400393_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea how to pass a GlobalID from Collector to a GUID field in Survey123? I am passing the GlobalID to a GUID field because I need to set up a relationship class between the Survey123 and the Collector features based on this passed GlobalID. If someone has an alternative way to get around this I'm also open to that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 19:23:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842960#M21324</guid>
      <dc:creator>AliciaRitzenthaler</dc:creator>
      <dc:date>2018-04-02T19:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842961#M21325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suddha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See my comments in&amp;nbsp;&lt;A _jive_internal="true" class="link-titled" href="https://community.esri.com/message/761251-re-survey123-converting-characters-to-code?commentID=761251&amp;amp;et=watches.email.thread#comment-761241" title="https://community.esri.com/message/761251-re-survey123-converting-characters-to-code?commentID=761251&amp;amp;et=watches.email.thread#comment-761241"&gt;https://community.esri.com/message/761251-re-survey123-converting-characters-to-code?commentID=761251&amp;amp;et=watches.email.t…&lt;/A&gt;&amp;nbsp; - for working with curly braces in globalids.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 19:36:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842961#M21325</guid>
      <dc:creator>JamesTedrick</dc:creator>
      <dc:date>2018-04-03T19:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842962#M21326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;Thanks for the responding.&amp;nbsp; I have read through the comment you suggested and I verified that I was following the instructions as noted in the comment.&amp;nbsp; The process appears to work when submitting the initial record.&amp;nbsp; However, the problem arises when I have to edit an existing record from the inbox.&amp;nbsp; When editing an existing record, the curly braces are put back on the GUID field.&amp;nbsp; Unless I manually remove the braces, I will receive an error when submitting.&amp;nbsp; I am hoping there is another way to automatically remove the curly braces when editing an existing record.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Suddha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 19:54:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842962#M21326</guid>
      <dc:creator>SuddhaGraves</dc:creator>
      <dc:date>2018-04-03T19:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842963#M21327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suddha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would not use a form that takes in the globalid via URL parameters in conjunction with the Inbox - we do not support editing via URL currently. &amp;nbsp;As I mentioned in the comment, the behavior of globalids and curly braces will be addressed in a future release of Survey123.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:01:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842963#M21327</guid>
      <dc:creator>JamesTedrick</dc:creator>
      <dc:date>2018-04-03T20:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842964#M21328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;Just to clarify the workflow, I pass the URL from Collector to a new Survey Form.&amp;nbsp; That part works fine.&amp;nbsp; However, if there is ever a need to edit the data in the existing Survey Form, I had planned to allow the user to access it via the Inbox from Survey123.&amp;nbsp; The user would not access the existing data using the custom URL, it would only be accessed via the Inbox.&lt;/P&gt;&lt;P&gt;I look forward to the future release where the behavior of GlobalIDs and curly braces are addressed.&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:16:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842964#M21328</guid>
      <dc:creator>SuddhaGraves</dc:creator>
      <dc:date>2018-04-03T20:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842965#M21329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can the incoming and parentglobalid fields be hidden? When I set the type to hidden, it doesn't populate the parent GUID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 12:24:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842965#M21329</guid>
      <dc:creator>ChrisBlinn1</dc:creator>
      <dc:date>2018-09-19T12:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842966#M21330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Christopher,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes the fields can be hidden. &amp;nbsp;I will note that the workaround of having 2 different fields to normalize is no longer needed. &amp;nbsp;Make sure the hidden parentglobalid question has an esrifieldtype of&amp;nbsp;esriFieldTypeGUID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 15:29:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842966#M21330</guid>
      <dc:creator>JamesTedrick</dc:creator>
      <dc:date>2018-09-19T15:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842967#M21331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So remove the regex as well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 15:55:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842967#M21331</guid>
      <dc:creator>ChrisBlinn1</dc:creator>
      <dc:date>2018-09-19T15:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842968#M21332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Update: I was able to get this working with a hidden parentglobalid field - thanks James!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2018 19:16:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842968#M21332</guid>
      <dc:creator>ChrisBlinn1</dc:creator>
      <dc:date>2018-09-20T19:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842969#M21333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you solve this? It is possible the incoming Global ID is not formatted correctly and &lt;A href="https://community.esri.com/migrated-users/3263"&gt;James Tedrick&lt;/A&gt;‌'s &lt;A _jive_internal="true" href="https://community.esri.com/thread/208613-pass-global-id-from-collector-to-g#comment-745268"&gt;answer above&lt;/A&gt; could work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2018 03:06:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842969#M21333</guid>
      <dc:creator>ElliottPlack1</dc:creator>
      <dc:date>2018-10-30T03:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842970#M21334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh nooo...&amp;nbsp; I had totally missed this issue of not being able to edit an existing feature using Survey123.&amp;nbsp; I had plans to incorporate this into the workflow for 2 different projects and need to come up a plan B quickly.&amp;nbsp; We really wanted to have the field inspector fill out a Survey.&amp;nbsp; Is there an elegant workaround?&amp;nbsp; Is the functionality in a project plan?&amp;nbsp; &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2018 20:45:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842970#M21334</guid>
      <dc:creator>ShanaGail1</dc:creator>
      <dc:date>2018-11-06T20:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842971#M21335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm a little unclear - Survey123 can edit an existing record via the Inbox. &amp;nbsp;Are you asking about editing an existing feature via URL (somewhat implied by posting in this conversation)? &amp;nbsp;If so, that is not currently possible. &amp;nbsp;This is something that we do plan to support in the future.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2018 17:47:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842971#M21335</guid>
      <dc:creator>JamesTedrick</dc:creator>
      <dc:date>2018-11-08T17:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842972#M21336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I would like to edit an existing feature via URL.&amp;nbsp; The workflow is that a user clicks on an existing electric conductor&amp;nbsp;using Collector, which then opens a survey by which they change an attribute of that existing feature.&amp;nbsp; The survey was created using that hosted feature service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since we can't do that, I have 2 questions -&lt;/P&gt;&lt;P&gt;* Do you have a workaround using a similar&amp;nbsp;workflow?&lt;/P&gt;&lt;P&gt;* When is the functionality going to be supported?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2018 19:26:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842972#M21336</guid>
      <dc:creator>ShanaGail1</dc:creator>
      <dc:date>2018-11-08T19:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Global ID from Collector to G</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842973#M21337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for all your advice throughout these forums. I am trying to create polygon, line or point features that collects a location and information in collector, than using&amp;nbsp;the&amp;nbsp;custom URL scheme pass the GlobalID and some information to a more detailed survey with repeats.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted this Survey to publish data to the same feature service (different feature class and table) of the original feature so it can be related to the survey results in AGOL. I was able to make this work creating relationship files and publishing the Survey123. I was able to create the custom url and pass the global ID through to survey123 using the "if(regex(${incoming}, '^\{[\w\-]*\}$'), substr(${incoming},1, string-length(${incoming}) - 1), ${incoming})" formula.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My tests have shown that it works though the windows web interface and on IOS, but it will not pass the GlobalID though using Android. I am on Android 9 using the "Collector for ArcGIS" and Collector (BETA), as well as using Survey123 (4.1) as well as Survey123 (Classic). Any advice? Thanks! Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Mar 2019 15:11:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pass-global-id-from-collector-to-g/m-p/842973#M21337</guid>
      <dc:creator>JosephGrossman</dc:creator>
      <dc:date>2019-03-01T15:11:42Z</dc:date>
    </item>
  </channel>
</rss>

