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&
portalUrl=https://portal.xxxx.xxx.gov/portal&action=edit&folder=inbox&
amp;update=true&filter=REL_GLOBALID:{GLOBALID}&callback=https://fieldmaps.arcgis.app"
rel="nofollow ugc" target="_blank">Update OA-13 Inspection Form</a>
Solved! Go to Solution.
I got it with this
q:where=OBJECTID={OBJECTID}
<a href="arcgis-survey123://?itemID=10036314a98d44444440545e6&action=edit&folder=inbox&update=true&q:where=OBJECTID={OBJECTID}&callback=https://fieldmaps.arcgis.app" rel="nofollow ugc" target="_blank">Open Permit Survey<br /><br />
</a>
I got it with this
q:where=OBJECTID={OBJECTID}
<a href="arcgis-survey123://?itemID=10036314a98d44444440545e6&action=edit&folder=inbox&update=true&q:where=OBJECTID={OBJECTID}&callback=https://fieldmaps.arcgis.app" rel="nofollow ugc" target="_blank">Open Permit Survey<br /><br />
</a>
@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!!