|
POST
|
Hey @ashcom, Can you please verify what version of the ArcGIS API for Python you are using? @CoMAGOL_ADMINISTRATOR is correct regarding no method in the Python API to create a new survey from existing feature layer. Since there are considerable form configuration options beyond just mapping field types from a feature layer to question types in a survey your script would need to configure the XLSForm how you need. Including things such as appearances for questions, calculations, relevant logic, etc. Then pass that configured XLSForm into the publish() method. Would you be able to provide additional information on how you would like to use a “create-from-feature-service” method in the Python API? Would you want a submission_url and form_id as input parameters for the create() method and an output from the create() method being a barebones XLSForm that does field type to question type mapping like creating from a feature layer in Connect? Regarding the error: {
"<PARENT_TABLE> Errors": {},
"<CHILD_TABLE> Errors": {
"Field Errors": [
"Field not found in the feature service for the globalid question.",
"Field not found in the feature service for the parentglobalid question."
]
} Assuming you are using a version of the Python API greater than 2.4.0 and are seeing this error, this would be a defect in the publish() method. It looks like your feature layer has a related layer/table that either has different field names for the global ID based relationships or does not use global ID based relationships. Would you be able to share a bit more about the schema of your feature layer?
... View more
a week ago
|
0
|
0
|
62
|
|
EVENT
|
Please join us for an Survey123 Mobile, ArcGIS Survey123 Studio, & Survey123 website holistic testing event. Please select the date you would like to participate. We encourage the participants in the Australian Eastern Standard Time zone to participate on Friday, June 11, 2026 (Australian Eastern Standard Time) to facilitate international scheduling. In-Person* or Virtual Offering Thursday, June 11, 2026 | 9 am to 12 pm (Pacific Time Zone) Virtual Offering Friday, June 12, 2026 | 11 am to 2 pm (Australian Eastern Standard Time) Test Focuses: Survey123 Mobile & Survey123 Studio Application performance and stability Tabular repeats Big button data capture experience Survey123 website Feature reports on premises Web designer undo/redo capability Creating a survey from repeat layers Updates to AI utils The focus of the event is the ArcGIS Survey123 website, Survey123 Mobile application as well as the ArcGIS Survey123 Studio application. We are looking for user feedback on application stability and performance when testing their existing Survey123 form designs. Members of our development team will host the session and be available for questions and feedback. In preparation for this session, please ensure you are signed up for the Survey123 Early Adopter Community and accept the Terms of Use of the Esri Beta agreement. If you or someone on your team is interested in participating, please RSVP to HolisticTesting@esri.com. Please include the day you would like to participate and your preference in attending in-person or virtual. Once confirmed, meeting details will be sent to you. *Note: In-person offering will be hosted at Esri Headquarters in Redlands, California. Holistic Testing Event participants will be responsible for travel expenses, lodging, local transportation, and meals. To accommodate our users, Esri will provide free access to hardware, software, and development personnel. For more details, visit the Holistic Testing program website. Thank You, Holistic Testing Team & ArcGIS Survey123 Product Team
... View more
3 weeks ago
|
1
|
0
|
418
|
|
POST
|
Hey @DouglasMarshall1, Try: <date_field> = timestamp 'yyyy-mm-dd HH24:mm:ss' This came from https://developers.arcgis.com/rest/services-reference/enterprise/query-feature-service-layer/#date-time-queries which is the REST API operation the pulldata("@layer") function is using. I would also suggest testing your where clause using the query operation on the REST API directly to see if it works there.
... View more
a month ago
|
0
|
1
|
395
|
|
EVENT
|
Greetings from Redlands! Please join us for an ArcGIS Survey123 Mobile & ArcGIS Survey123 Studio holistic testing event. Please select the date you would like to participate. We encourage the participants in the Australian Eastern Standard Time zone to participate on Friday, May 15, 2026 (Australian Eastern Standard Time) to facilitate international scheduling. The two testing dates are listed below: Thursday, May 14, 2026, from 9 am to 12 pm (Pacific Time Zone) (In-Person or virtual) Friday, May 15, 2026, from 11 am to 2 pm (Australian Eastern Standard Time). (virtual only) The focus of the event is the new ArcGIS Survey123 Mobile application as well as the ArcGIS Survey123 Studio application. We are looking for user feedback on application stability and performance when testing your existing Survey123 form designs. Members of our development team will host the session and be available for questions and feedback. In preparation for this session, please ensure you are signed up for the Survey123 Early Adopter Community and accept the Terms of Use of the Esri Beta agreement. If you or someone on your team is interested in participating, please RSVP to: HolisticTesting@esri.com. Please include in the email which day you would like to participate and your preference in attending in-person or virtual only. With confirmation, we will send the meeting details. In-person session will be hosted in Redlands at Esri Headquarters. ** Please note, Esri will not be responsible for any travel expenses, hotel, local transportation, or meals for this testing effort. To accommodate our users, Esri will provide free access to hardware, software, and development personnel during your visit to Redlands. For more details, please visit Holistic Testing. Thank You, Holistic Testing & ArcGIS Survey123 Teams Software Products, Esri Inc
... View more
04-30-2026
08:11 AM
|
0
|
0
|
244
|
|
POST
|
Hey @TroyWilten, Was the last time you republished the survey from Connect a week and a half ago? If you retry publishing the survey again today do you see the same behavior? If so can you select the "Files" button in Connect and open the .webform file. Is there an error message in the .webform file?
... View more
04-27-2026
03:55 PM
|
0
|
0
|
221
|
|
POST
|
Hey @Teresa-AZ, Please see the Feature layer requirements Survey123 documentation topic. Survey123 does not support traditional versioning and does require a GlobalId's to be enabled on the feature class. An alternative would be to consider using ArcGIS Field Maps which has a number of form design elements to assist with field data collection
... View more
04-15-2026
01:14 PM
|
0
|
1
|
877
|
|
POST
|
Hey @EthanMcGhee10, Thank you for raising this! The `height` parameter in the body::esri:style column isn't something on the immediate roadmap. That said I have brought the feedback in internally for review. @Neal_t_k is spot on the "large map" tool in the geo* question is the best workaround for now, and logging an ArcGIS Survey123 Idea with your use case will help track progress on the request.
... View more
04-15-2026
12:56 PM
|
0
|
0
|
328
|
|
POST
|
Hey @HariharNepal, Additional to @Neal_t_k's suggestion, you can change the WHERE clause in feature_object_ids = i.query(where="1=1", return_ids_only=True, order_by_fields='objectid ASC')
for j in range(len(feature_object_ids['objectIds'])): to be a specific survey. `where=1=1` will loop through all the records in the feature layer and download attachments for each one. If you only want one specific survey record you could set the where parameter to something like: where="objectid=1" - this will return just the survey record whose objectid is equal to 1 where="field_name = 'some_value'" - this will return zero to multiple surveys who have 'some_value' set in the attribute field called field_name You can get really intricate with the where expression, for more info see the Query (Feature Service/Layer) REST API doc topic.
... View more
04-15-2026
12:41 PM
|
0
|
0
|
536
|
|
POST
|
Hello @ChandraLala, In Connect please select the Files button and open the file in your content folder called <yourSurveyName>.webform If the contents of your webform file is a JSON error message that says "Error: Entity expansion limit exceeded: #### > 1000", this is a known issue with the 3.25 release and is logged as BUG-000183859. If this is also what you see on your end please feel free to reach out to Esri Technical Support so you can be attached to the defect and track progress.
... View more
03-27-2026
02:21 PM
|
0
|
1
|
2056
|
|
POST
|
Hey @IDEMuniMendoza, Thank you for verifying you're seeing the issue in the web app! For the first issue where you're not seeing the calculations run I see you commented on https://community.esri.com/t5/arcgis-survey123-questions/webforms-not-running-calculations/m-p/1692926#M65730 I think this is the same issue. If you try setting calculationMode=always under the bind::esri:parameters column for your "f_sin" and "f_act" questions does that work around the issue? On the second issue of data not submitting to the related table I don't believe I'm reproducing what I interpret as the scenario. I have a hosted feature layer with a parent layer and 3 related tables and when I create my survey based on that hosted feature layer the schema I see in Connect is: Which I believe is equivalent to your image 2. I removed table1 and table3 from my form design only leaving table2 and published the survey: When I submit a record in the Survey123 web app I do see the related records come through in table2 A couple of things to cross reference: How are your relationships configured? Are they GlobalID to GUID or GUID to GUID relationships? Are you using a hosted feature layer, or a non hosted feature layer from ArcGIS Enterprise?
... View more
03-27-2026
09:56 AM
|
0
|
0
|
1015
|
|
POST
|
Hello @IDEMuniMendoza, Can you please verify when you are submitting surveys are you using the Survey123 web app or the field app? On the second issue noted regarding the submission of related records is your survey configured with a submission_url?
... View more
03-27-2026
08:33 AM
|
0
|
2
|
1067
|
|
POST
|
Hello @ArthurMartinez, Did you author the survey in the Survey123 web designer or Survey123 Connect (desktop application)?
... View more
02-27-2026
03:21 PM
|
0
|
2
|
456
|
|
POST
|
Hey @RyanMullee, Check out the Hydrant Inspection or Manhole Inspection for ideas on how to model your data schema. They both follow a similar idea where irrigation heads are hydrants/manholes in the samples and their repeats are equivalent to incident reports. This UC presentation on Modeling Inspection Workflows may also be helpful. Additionally while the terminology in this Tech Support KB article is quite dated the concept of the workflow is still relevant and very powerful.
... View more
02-27-2026
03:19 PM
|
0
|
0
|
201
|
|
POST
|
Hello @TariqKing, If you are using a grid layout in one of your groups this is a known defect and is logged as BUG-000177843. You can work around this defect by downloading your survey in Survey123 Connect and moving all the generated_note_* note questions that are at the top of the survey worksheet to the end of the worksheet beneath all other questions. You will then need to republish the survey from Connect. Please note republishing the survey from Survey123 Connect will prevent future edits from the Survey123 web designer.
... View more
02-27-2026
02:55 PM
|
1
|
0
|
470
|
|
EVENT
|
Click Here to Register Join us on Thursday, February 19th, 2026 9:00am - 12:00 pm Pacific Time or Friday, February 20th, 2026 11:00am - 1:30 pm Australian Eastern Daylight Time to get hands on with our next generation ArcGIS Survey123 apps as well as new features coming to the Survey123 website and web app. The list of features planned for testing are: Next generation Survey123 mobile app & Connect Tabular repeats in next generation mobile app Authoring repeats in web designer Undo / redo operations in web designer Calculation mode in web designer & web app Option to hide published surveys from the Survey123 field app or web app We will provide an overview of the next generation apps accompanied by live demos, then you will be able test test them out! In preparation for this session, please ensure you are signed up for the Survey123 Early Adopter Community and accept the Terms of Use of the Esri Beta agreement. Your collaboration and feedback is greatly appreciated! Thank you!
... View more
02-04-2026
10:30 AM
|
0
|
0
|
357
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 02-27-2026 02:55 PM | |
| 6 | 12-17-2025 01:51 PM | |
| 1 | 11-04-2025 02:14 PM | |
| 1 | 10-15-2025 01:53 PM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|