Select to view content in your preferred language

Load records into INBOX Survey123

402
2
Jump to solution
09-11-2023 06:31 AM
kapalczynski
Occasional Contributor III

In field Maps I have the below code that opens Survey123 and loads all my records and opens the record with the relevant GOLBAL ID ... This works but I have a ton of records in the Feature Class and its taking a long time to load and open the one record. 

The Field Maps and S123 are pointing to the SAME data... I need S123 because Field Maps does not allow for a watermark on the Images it captures.

Is there a way to Modify the below to ONLY load the required record into the INBOX and open it with the S123 form instead of loading thousands of records each time?

Is there a WHERE Clause or something?  I would like to load and open 1 record not 5 thousand

 

 

 

<a href="arcgis-survey123://?itemID=cb33fc9a378f444444444422440146&amp;
                            portalUrl=https://portal.xxxx.xxx.gov/portal&amp;action=edit&amp;folder=inbox&
							amp;update=true&amp;filter=REL_GLOBALID:{GLOBALID}&amp;callback=https://fieldmaps.arcgis.app" 
							rel="nofollow ugc" target="_blank">Update OA-13 Inspection Form</a>

 

 

 

1 Solution

Accepted Solutions
kapalczynski
Occasional Contributor III

I got it with this

q:where=OBJECTID={OBJECTID}

<a href="arcgis-survey123://?itemID=10036314a98d44444440545e6&amp;action=edit&amp;folder=inbox&amp;update=true&amp;q:where=OBJECTID={OBJECTID}&amp;callback=https://fieldmaps.arcgis.app" rel="nofollow ugc" target="_blank">Open Permit Survey<br /><br />
</a> 

View solution in original post

2 Replies
kapalczynski
Occasional Contributor III

I got it with this

q:where=OBJECTID={OBJECTID}

<a href="arcgis-survey123://?itemID=10036314a98d44444440545e6&amp;action=edit&amp;folder=inbox&amp;update=true&amp;q:where=OBJECTID={OBJECTID}&amp;callback=https://fieldmaps.arcgis.app" rel="nofollow ugc" target="_blank">Open Permit Survey<br /><br />
</a> 
PaulaCutrone_GoCentroBus
New Contributor II

@kapalczynski This works PERFECTLY! Exactly what I was looking for. Thank you so much for figuring this out and posting your solution! This got me over the biggest hurdle launching my app! Thank you!!

0 Kudos