<?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: PullData AGOL Layer AutoPopulate Field in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327876#M51683</link>
    <description>&lt;P&gt;Hey there,&lt;/P&gt;&lt;P&gt;I got this to work! A few notes:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;getRecordAt/getValueAt are spatial queries. Since you're essentially doing an aspatial table lookup, you should be using getRecord/getValue.&lt;/LI&gt;&lt;LI&gt;getRecord would return the entire JSON which you can then pull from. For example, if there were numerous fields that you want to get data from, you can use getRecord to pull the entire JSON, then use pulldata("@json"...) to pull from that as opposed to making numerous queries on the feature layer.&lt;/LI&gt;&lt;LI&gt;Since you only want to return one attribute, you can use getValue. In the attached XLSXform, I set a couple of null notes that stores the URL to the HFL and the where clause. Those are then called in the calculation. Though they could all go in the calculation, calling them as variables makes it more readable.&lt;/LI&gt;&lt;LI&gt;An important thing to note about the where clause is that if your inventory number is an integer, the where clause should be looking for an integer value, but if the inventory number is a string, the where clause should be looking for a string. E.g., INVENTORY_NUMBER = {Inventory} vs. INVENTORY_NUMBER = &lt;STRONG&gt;'&lt;/STRONG&gt;{Inventory}&lt;STRONG&gt;'&lt;BR /&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;In my testing, it seemed to work regardless but it could potentially cause issues.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The calculation that did work is the following:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;pulldata("@layer", "getValue", "attributes.DESCRIPTION", ${hfl_url}, ${where_clause})&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Documentation:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformformulas.htm#ESRI_SECTION1_BB97985CAFB740EE8AEF99EFD6E238E3" target="_self"&gt;Query a Feature Layer&lt;/A&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Hope that helps!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="20230912_Esri_Community_Support_Pulldata.gif" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/80485i459FA970161CAF20/image-size/large?v=v2&amp;amp;px=999" role="button" title="20230912_Esri_Community_Support_Pulldata.gif" alt="20230912_Esri_Community_Support_Pulldata.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Sep 2023 18:31:05 GMT</pubDate>
    <dc:creator>Vinzafy</dc:creator>
    <dc:date>2023-09-12T18:31:05Z</dc:date>
    <item>
      <title>PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327855#M51682</link>
      <description>&lt;P&gt;I am beyond frustrated with this even after all the research and and tutorials I have been reviewing and nothing is working. This should be a very simple concept and I am missing something.&lt;/P&gt;&lt;P&gt;Attachment: Enter Inventory Number - The user is to enter the company inventory number (lets say 1050). From there, I would like it to automatically populate the field (Modern's Inventory Description).&lt;/P&gt;&lt;P&gt;I have a hosted feature layer on AGOL that has the Inventory Number and Description.&lt;/P&gt;&lt;P&gt;In the calculation:&amp;nbsp;pulldata("@layer", "getValueAt", "attributes.DESCRIPTION", "PATH TO AGOL", ${Inventory})&lt;/P&gt;&lt;P&gt;However, when I enter 1050 into the survey, the Inventory Description remains blank.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help since I am really lost here.&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 17:56:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327855#M51682</guid>
      <dc:creator>ModernElectric</dc:creator>
      <dc:date>2023-09-12T17:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327876#M51683</link>
      <description>&lt;P&gt;Hey there,&lt;/P&gt;&lt;P&gt;I got this to work! A few notes:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;getRecordAt/getValueAt are spatial queries. Since you're essentially doing an aspatial table lookup, you should be using getRecord/getValue.&lt;/LI&gt;&lt;LI&gt;getRecord would return the entire JSON which you can then pull from. For example, if there were numerous fields that you want to get data from, you can use getRecord to pull the entire JSON, then use pulldata("@json"...) to pull from that as opposed to making numerous queries on the feature layer.&lt;/LI&gt;&lt;LI&gt;Since you only want to return one attribute, you can use getValue. In the attached XLSXform, I set a couple of null notes that stores the URL to the HFL and the where clause. Those are then called in the calculation. Though they could all go in the calculation, calling them as variables makes it more readable.&lt;/LI&gt;&lt;LI&gt;An important thing to note about the where clause is that if your inventory number is an integer, the where clause should be looking for an integer value, but if the inventory number is a string, the where clause should be looking for a string. E.g., INVENTORY_NUMBER = {Inventory} vs. INVENTORY_NUMBER = &lt;STRONG&gt;'&lt;/STRONG&gt;{Inventory}&lt;STRONG&gt;'&lt;BR /&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;In my testing, it seemed to work regardless but it could potentially cause issues.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The calculation that did work is the following:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;pulldata("@layer", "getValue", "attributes.DESCRIPTION", ${hfl_url}, ${where_clause})&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Documentation:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformformulas.htm#ESRI_SECTION1_BB97985CAFB740EE8AEF99EFD6E238E3" target="_self"&gt;Query a Feature Layer&lt;/A&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Hope that helps!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="20230912_Esri_Community_Support_Pulldata.gif" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/80485i459FA970161CAF20/image-size/large?v=v2&amp;amp;px=999" role="button" title="20230912_Esri_Community_Support_Pulldata.gif" alt="20230912_Esri_Community_Support_Pulldata.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 18:31:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327876#M51683</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-12T18:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327911#M51685</link>
      <description>&lt;P&gt;That looks like it did the trick. That is exactly what I was trying to accomplish.&amp;nbsp;&lt;/P&gt;&lt;P&gt;(2) follow-up questions:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; 1: Is there a way to hide the where clause in the survey so it doesn't confuse or crowd the form for the user (Attachment).&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; 2: In the past, when I could create and publish a survey from Survey123 Connnect and record data, other users complained they could not see recorded surveys from others. Is this a known issue or more of a lack of knowledge on my part?&lt;/P&gt;&lt;P&gt;Appreciate it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 19:11:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327911#M51685</guid>
      <dc:creator>ModernElectric</dc:creator>
      <dc:date>2023-09-12T19:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327917#M51686</link>
      <description>&lt;P&gt;Awesome! Glad that worked for you. To answer your follow-up questions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Absolutely! Any line items can be hidden in a survey by setting the appearance for the item (column F) to "hidden".&lt;/LI&gt;&lt;LI&gt;If I'm understanding you right, you're mentioning that users are unable to see submissions from other users of the survey? If so, I would start by going to the Survey123 website (&lt;A href="https://survey123.arcgis.com/" target="_blank"&gt;https://survey123.arcgis.com/&lt;/A&gt;), click on the survey in question, then click on the collaborate tab &amp;gt; share results. There, you can control who is able to see survey results on the Survey123 website.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you're talking more about other users needing to see previous submissions in S123 directly, I would look to the &lt;A href="https://doc.arcgis.com/en/survey123/desktop/create-surveys/prepareforediting.htm" target="_self"&gt;"Inbox" feature&lt;/A&gt;.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 12 Sep 2023 19:24:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327917#M51686</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-12T19:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327937#M51689</link>
      <description>&lt;P&gt;Appreciate it.&amp;nbsp; I believe this will set the foundation for what I need to accomplish.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 20:08:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327937#M51689</guid>
      <dc:creator>ModernElectric</dc:creator>
      <dc:date>2023-09-12T20:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327938#M51690</link>
      <description>&lt;P&gt;Awesome! Happy to help &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 20:12:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327938#M51690</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2023-09-12T20:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327947#M51694</link>
      <description>&lt;P&gt;I am going to throw one final curve ball - thanks to my manager.&lt;/P&gt;&lt;P&gt;If the user starts typing in the Inventory Description and finds in the drop-down what they want (I need to reprogram that for a drop-down), that it would auto-populate the Inventory Number.&amp;nbsp;&lt;/P&gt;&lt;P&gt;SO basically, the user would have a choice to enter the Inventory Number and AutoPopulate the Description OR in reverse. Is this able to be programmed?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 20:33:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1327947#M51694</guid>
      <dc:creator>ModernElectric</dc:creator>
      <dc:date>2023-09-12T20:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1380049#M54624</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/171700"&gt;@Vinzafy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question for you. I have been reworking my code in my spreadsheets for Survey123 Connect. Previously, the pulldata function was looking at a stand-alone table. Now, I am trying to pull the data from a hosted feature layer that is published from ArcGIS Pro. Some of the feature classes/fields use Domains. When I run the code for the autopopulate based on a previous entry, the field is populated with the Domain Code. That is not helpful. I need the field to populate the Domain Description. How do I ensure that happens?&lt;/P&gt;&lt;P&gt;Appreciate it&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 21:50:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1380049#M54624</guid>
      <dc:creator>ModernElectric</dc:creator>
      <dc:date>2024-02-08T21:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1380631#M54673</link>
      <description>&lt;P&gt;Hey again,&lt;/P&gt;&lt;P&gt;I was stumped at first but I figured out a way! For some background, pulling the label of domains is possible via the jr:choice-name() function Great blog post from Ismael &lt;A href="https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-xlsform-functions/ba-p/893567" target="_self"&gt;here&lt;/A&gt;. The syntax is the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;jr:choice-name(choice, 'question')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here, "choice" refers to the chosen code from the attribute domain; "question" refers to the actual question &lt;STRONG&gt;within&lt;/STRONG&gt; the survey where the selection is made (e.g., select_one question).&lt;/P&gt;&lt;P&gt;The roadblock here is that the question containing the domain must be in the survey for jr:choice-name to work. Since the goal is to get the label of the domain from a separate hosted feature layer via pulldata(), that means there is no select_one question in the survey.&lt;/P&gt;&lt;P&gt;Let's consider the following domain for a field called "Animal" from the feature layer we want to pulldata() from:&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;&lt;EM&gt;&lt;STRONG&gt;Code&lt;/STRONG&gt;&lt;/EM&gt;&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;&lt;EM&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;&lt;/EM&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;1&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;Dog&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;2&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;Cat&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If we used pulldata(), what&amp;nbsp; is returned in the raw JSON is the code, not the description. For example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{"attributes":{..."Animal":1,...}}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This doesn't work because we want, "Dog" not 1. We can't use jr:choice-name to retrieve "Dog" because, that domain isn't present in our survey.&lt;/P&gt;&lt;P&gt;However, what we can do is simulate that question in our survey. The way I did this was the following:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Create a select_one question in your survey (e.g., a question called "Animal_Domain_Placeholder") that contains the same codes and descriptions as the target domain (the {1: "Dog"&amp;nbsp; 2: "Cat"} domain in this example).&lt;BR /&gt;&lt;BR /&gt;This question can be hidden and null so it doesn't actually display in your survey or create a new field in your schema. We're essentially using this as a placeholder to for jr:choice-name() to reference from.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Next, for the question where you want to return the description, in the calculation cell, setup jr:choice-name() with the pulldata() function nested as the "choice" parameter and the placeholder question created above as the "question" parameter.&lt;BR /&gt;&lt;BR /&gt;E.g.,&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;jr:choice-name(pulldata("@json", ${json_question}, "attributes.Animal"), '${Animal_Domain_Placeholder}')​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the value returned from the pulldata() call is '1' (referring to "Dog"), what the jr:choice-name() function is doing is basically the following:&lt;BR /&gt;&lt;BR /&gt;Take the value returned from the "choice" parameter (1 in this example) and search the choices for the question stated in the "question" parameter (select_one question called "Animal_Domain_Placeholder" in this example). If found, return the label.&lt;/P&gt;&lt;P&gt;Since we have created the corresponding domain in our survey, it recognizes that, based on the "Animal_Domain_Placeholder" question, the value of 1 refers to the label "Dog".&lt;/P&gt;&lt;P&gt;It always gets a bit confusing when you nest things, but hopefully that makes sense!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 21:49:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1380631#M54673</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2024-02-09T21:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1407315#M56080</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/171700"&gt;@Vinzafy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assisted me with this awhile back, but was never really able to figure out how to get it right. I've been asked to make major improvements to our initial elementary Survey123 forms and working on the design and coding in excel. Figuring this out is going to help me on a number of forms.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 21:26:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1407315#M56080</guid>
      <dc:creator>ModernElectric</dc:creator>
      <dc:date>2024-04-08T21:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1414734#M56452</link>
      <description>&lt;P&gt;My pleasure! Glad I was able to offer some help. Best of luck in the next iteration of your forms &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 14:17:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1414734#M56452</guid>
      <dc:creator>Vinzafy</dc:creator>
      <dc:date>2024-04-24T14:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: PullData AGOL Layer AutoPopulate Field</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1638088#M63609</link>
      <description>&lt;P&gt;Very Useful, thanks! I use this to query a GlobalID of an existing address and create the new survey result at that same spot automatically...&lt;/P&gt;&lt;TABLE width="1859"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="178"&gt;type&lt;/TD&gt;&lt;TD width="178"&gt;name&lt;/TD&gt;&lt;TD width="199"&gt;label&lt;/TD&gt;&lt;TD width="163"&gt;hint&lt;/TD&gt;&lt;TD width="163"&gt;guidance_hint&lt;/TD&gt;&lt;TD width="163"&gt;appearance&lt;/TD&gt;&lt;TD width="163"&gt;required&lt;/TD&gt;&lt;TD width="163"&gt;required_message&lt;/TD&gt;&lt;TD width="163"&gt;readonly&lt;/TD&gt;&lt;TD width="163"&gt;default&lt;/TD&gt;&lt;TD width="163"&gt;calculation&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;text&lt;/TD&gt;&lt;TD&gt;GEOM&lt;/TD&gt;&lt;TD&gt;Pulled from AddressPT&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;pulldata("@layer", "getValue", "geometry", "&lt;A href="https://MYPORTAL.ORG/basemap/rest/services/BASEMAPS/MISC_BASEMAP/FeatureServer/0" target="_blank" rel="noopener"&gt;https://MYPORTAL.ORG/basemap/rest/services/BASEMAPS/MISC_BASEMAP/FeatureServer/0&lt;/A&gt;", "GlobalID = '{9XXXXXXXXXXXXXXX8}'")&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;geopoint&lt;/TD&gt;&lt;TD&gt;Leaks_Breaks_point&lt;/TD&gt;&lt;TD&gt;SKETCH LOCATION&lt;/TD&gt;&lt;TD&gt;MOVE THE POINT TO THE APPROXIMATE LOCATION OF THE LEAK&lt;/TD&gt;&lt;TD&gt;yes&lt;/TD&gt;&lt;TD&gt;PLEASE MARK THE ROUGH LOCATION OF THE LEAK&lt;/TD&gt;&lt;TD&gt;null&lt;/TD&gt;&lt;TD&gt;concat(number(pulldata("@json",${GEOM},"y"))," " ,number(pulldata("@json",${GEOM},"x")))&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 31 Jul 2025 16:42:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/pulldata-agol-layer-autopopulate-field/m-p/1638088#M63609</guid>
      <dc:creator>ahargreaves_FW</dc:creator>
      <dc:date>2025-07-31T16:42:09Z</dc:date>
    </item>
  </channel>
</rss>

