|
POST
|
I have a simple survey configured with an Inbox enabled. After I submit a photo using Collect I go to the inbox to view it and get a cartoon image with a line through it. What am I missing. I am using 3.13.246 & Connect 3.13.251. I can access the attachments endpoint found in the logs, but then there is a "Destroying request" on the next line. I am using portal 10.9.1. ="PortalRequest" function="onCompleted" filename="SurveyService.qml" line="138"] PortalRequest: Created request ="PortalRequest" function="query" filename="SurveyService.qml" line="164"] PortalRequest: attachments request url: https://company.com/server/rest/services/secmg/s123_epa/FeatureServer/0/19277/attachments ="PortalRequest" function="onDestruction" filename="SurveyService.qml" line="142"] PortalRequest: Destroying request: https://company.com/server/rest/services/secmg/s123_epa/FeatureServer/0/19277/attachments ="AppAlert" function="positionSourceAlert" filename="AppAlert.qml" line="145"] AppAlert: positionSourceAlert alertType: 4 ="Portal" function="onStateChanged" filename="Portal.qml" line="404"] Portal: Application state changed: 2
... View more
01-25-2022
04:48 PM
|
0
|
1
|
1178
|
|
POST
|
Can you use or_other with a select_one_from_file using a .csv. It does not appear so, just want to confirm. I would rather not add Other to my CSV as I only need it in specific locations and don't want to filter it out everywhere.
... View more
11-23-2021
01:03 PM
|
0
|
1
|
1038
|
|
POST
|
To clarify this is in regards to Enterprise custom connector.
... View more
08-25-2021
06:20 AM
|
0
|
0
|
3504
|
|
POST
|
https://support.esri.com/en/technical-article/000025025 Is it possible to alter the connector to fire when editing existing record (from sent folder or inbox)? To clarify this is in regards to Enterprise custom connector.
... View more
08-24-2021
12:08 PM
|
0
|
9
|
3539
|
|
POST
|
OutcomeSummary_copy is null OutcomeSummary_copy is not null
... View more
06-11-2021
05:45 AM
|
0
|
1
|
2812
|
|
POST
|
I am not using Batch, just on insert/update. But they may share the same limitation when editing a non-like FC types.
... View more
04-27-2021
01:22 PM
|
0
|
0
|
3784
|
|
POST
|
Source - Archive enabled (for use in Survey123) Target - Versioned Dataset
... View more
04-27-2021
01:20 PM
|
0
|
1
|
3789
|
|
POST
|
Are there limitations on versioned FC when working with advanced attribute keywords. I am attempting to do an update on another FC and I receive this error when triggering the rule. "Objects in this class cannot be updated outside of an edit session. My rule works when it is not versioned and I receive this message when it is versioned. I can't find any documentation on this. @XanderBakker @HusseinNasser2
... View more
04-27-2021
12:25 PM
|
1
|
6
|
3834
|
|
POST
|
I don't think the maps support pop-ups or what you are trying to do which is in effect the same as using Collector or Field Maps with a url link to prepopulate data in a survey. I would incorporate Field Maps into your solution for that function.
... View more
04-01-2021
08:33 AM
|
0
|
1
|
3980
|
|
POST
|
pulldata("@exif", ${q_1photoa}, "GpsLatitude") The above works on images but when appearance is set to annotate, the pulldata on '@exif' calculations stops working Is this to be expected?
... View more
03-30-2021
12:55 PM
|
0
|
1
|
1444
|
|
POST
|
A repeat with allowAdds with a nested repeat with images enabled with allowUpdates will allow a user to collect a new record and submit. It will then allow new images to be collected from the Inbox in the nested image repeat (shows blank as expected for images already taken) but the RowID of the repeat changes dropping the images taken with Collect. I have attached the survey. Notice how the 'Collect' images get dropped when the RowID changes to accommodate the new image. Should this be allowed yet as it doesn't work.
... View more
03-29-2021
07:50 AM
|
0
|
2
|
1219
|
|
POST
|
This script adds a number of rows to a table on insert of another table. It uses an array to updated a field value when these rows are entered. I would like to enter multiple field values instead of just one, which works as seen below. My first script is what works with one value, using a simple array. My second script is what I am trying to accomplish but I am not sure how to format my row. var rowid = $feature.uniquerowid
var myArray = ['value1','value2','value3']
var counter = 0
if(IsEmpty($feature.inspect_date)){
for (var os in myArray){
myArray[counter] =
{
"attributes": {
"parentrowid": rowid,
"q_2control": myArray[os],
"number": counter
}
}
counter++
}
return {
"result": rowid,
"edit": [{
"className": "featureClass",
"adds": myArray
}]
}
}
else {
return rowid
} I would like to enter multiple fields for each row added. Something like this: var rowid = $feature.uniquerowid
var myArray = [['value1A,'value1B'],['value2A,'value2B'],['value3A,'value3B']]
var counter = 0
if(IsEmpty($feature.inspect_date)){
for (var os in myArray){
myArray[counter] =
{
"attributes": {
"parentrowid": rowid,
"q_2control": myArray[os[a]],
"choice": myArray[os[b]]
"number": counter
}
}
counter++
}
return {
"result": rowid,
"edit": [{
"className": "featureClass",
"adds": myArray
}]
}
}
else {
return rowid
} @XanderBakker You can see above in my add statement I am updating two fields on each row...or trying to.
... View more
02-11-2021
08:38 AM
|
0
|
1
|
2626
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 2 weeks ago | |
| 3 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 3 weeks ago | |
| 2 | 05-20-2026 02:50 PM |