|
POST
|
@Neal_t_k , I don't think this is going to work as the calculation over write the existing value with the coalesce formula. I am probably going to need an IF statement there instead...
... View more
05-28-2025
09:31 AM
|
0
|
3
|
3072
|
|
POST
|
Hi @ChristopherCounsell Yes, I have 2 "dummy" fields as NULL used as place holder (one for the dropdown list and one for the "Other" option). I do not want to created true fields has I want to use this process for the entire survey and I have about 10 questions with dropdown list. The current process work GREAT if I create a new entry from scratch. How could I make use of the search functionality to populate a dropdown using live data from the map service, with an Other option in case of a new value for that dropdown and retain the existing value.... all that without having to create 2 extra fields in the layer. Thanks!
... View more
05-28-2025
08:03 AM
|
0
|
11
|
3083
|
|
POST
|
Hello, I am following the steps from this post Open List and it's working fine to ge my unique list of values in the dropdown list https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-open-lists/ba-p/1180879 However, when I Edit the survey, I "loose" the original value that was entered. How can I retain the original value when I am in edit mode? - I've tried Calculated field , not working Attached the section of the spreadsheet showing above. The process is working fine with CSVs... I just would like to be able to use the "live" data from the map service as users start to add more options for each dropdowns. Any help or suggestions would be much appreciated. Thanks!
... View more
05-27-2025
02:49 PM
|
0
|
16
|
4799
|
|
POST
|
well I know that, I enabled feature access on the feature service with the following options: I have the fields in the the feature service with values: If I don't add them to the survey, they are not returned in the payload. I just need then hidden (or I could probably do with read only)
... View more
05-08-2025
08:35 AM
|
0
|
0
|
2546
|
|
POST
|
well... never assume the obvious.... One issue was that the date fields were NOT included in the Survey (my bad I should have checked that first..I am taking over from a co-worker).... But now, when I try to add these fields in the survey (read only) I get the following: I did enabled all the options listed above , but still no go. @j-bromp , how to you have the Created_date field setup in the Survey Connect?
... View more
05-08-2025
08:12 AM
|
0
|
3
|
2563
|
|
POST
|
ok, but I also have other DATE fields (not system fields) and those are not coming either
... View more
05-02-2025
07:06 AM
|
0
|
0
|
2675
|
|
POST
|
Hi, I am using FME to pull payload from a webhook setup on Survey123. Everything is working fine, however, no DATE fields are returned in the payload: below is the payload returned {
"applyEdits" : [
{
"id" : 0,
"updates" : [
{
"attributes" : {
"status" : "Assigned",
"assignedto" : "BLABLABLA",
"globalid" : "e1c4c605-c4f1-4be0-8669-3d064abb2ea4",
"OBJECTID" : 45
}
}
]
}
],
"feature" : {
"attributes" : {
"actyear" : 25,
"actidint" : 6,
"actid" : "GRM2500006",
"actcategory" : "Solutions",
"acttype" : "Update GIS solution or application",
"details" : "test",
"urgent" : "No",
"urgent_details" : null,
"division" : "Administrative Services",
"bureau" : "Human Resources",
"plannedstartdt" : null,
"plannedenddt" : null,
"plannedeffort" : 0,
"status" : "Assigned",
"assignedto" : "BLABLABLA",
"actualenddt" : null,
"pocname" : "ESRI GISResourceMgmt",
"pocemail" : "aBLABLABLA",
"capabilities" : "Under Review",
"orggoal" : "Under Review",
"corepillar" : "Under Review",
"prggoal" : "Under Review",
"strategicaction" : null,
"frameworkpillar" : null,
"globalid" : "e1c4c605-c4f1-4be0-8669-3d064abb2ea4",
"OBJECTID" : 45
},
"geometry" : null,
"layerInfo" : {
"id" : 0,
"name" : "GIS_Activities",
"type" : "Feature Layer",
"globalIdField" : "globalid",
"objectIdField" : "OBJECTID",
"relationships" : [
{
"id" : 0,
"name" : "Effort",
"relatedTableId" : 2,
"cardinality" : "esriRelCardinalityOneToMany",
"role" : "esriRelRoleOrigin",
"keyField" : "globalid",
"composite" : true
},
{
"id" : 1,
"name" : "Comments",
"relatedTableId" : 1,
"cardinality" : "esriRelCardinalityOneToMany",
"role" : "esriRelRoleOrigin",
"keyField" : "globalid",
"composite" : true
}
]
},
"result" : {
"globalId" : "e1c4c605-c4f1-4be0-8669-3d064abb2ea4",
"objectId" : 45,
"uniqueId" : 45,
"success" : true
},
"attachments" : null
},
"eventType" : "editData"
} Data in So, what am I missing? Thanks for any input
... View more
05-02-2025
06:43 AM
|
0
|
9
|
2687
|
|
POST
|
Hello I am creating a data expression in dashboard, trying to convert data fields (from Central Time to UTC). When I look at the individual features, it's working, everything looks like I want it. However, when I push to the featureset to be used in a table , ALL the date fields have the same values... What am I doing wrong? Thanks! var portal = Portal('https://www.arcgis.com');
var fs = FeatureSetByPortalItem(
portal,
'1b32fd673de04b16b15bf5a923b7d1fb',
0,
[
'dr_DateTime',
'dr_DateText'
],
false
);
// return fs
var features = [];
var feat;
// Populate feature array
for (var f in fs) {
feat = {
'attributes': {
'dr_DateTimeMd': ChangeTimeZone(f['dr_DateTime'],"+06:00"),
'dr_DateTimeF': f['dr_DateTime'],
'dr_DateTimeUTCF': ToUTC(f['dr_DateTime']),
'dr_DateTextF': f['dr_DateText']
}}
Push(features, feat);
};
// return features
var dowDict = {
'fields': [
{'name': 'dr_DateTimeMd', 'type': 'esriFieldTypeDate'},
{'name': 'dr_DateTimeF', 'type': 'esriFieldTypeDate'},
{'name': 'dr_DateTimeUTCF', 'type': 'esriFieldTypeDate'},
{'name': 'dr_DateTextF', 'type': 'esriFieldTypeString'}
],
'geometryType': '',
'features': features
};
// Convert dictionary to feature set.
var fs_dict = FeatureSet(dowDict);
return fs_dict raw featureset Each individual features: Final featureset
... View more
03-25-2025
07:58 AM
|
0
|
0
|
502
|
|
POST
|
I unchecked the "Enable Sync" and everything started to work just fine.
... View more
02-27-2025
09:50 AM
|
0
|
0
|
1258
|
|
POST
|
Hello I have an AGOL feature layer (published from ArcGIS Pro) and for some reason I can' get the Pipeline the Replace to work it's a very basic flow: Pushing data from Portal to AGOL I keep getting this message: The selected layer does not support the truncate operation Feature service settings: Could it be that's because I have a VIEW related to that feature service? I have another flow very similar (target is an AGOL native feature service) no VIEWs and the Pipeline works just fine Both targets have "supportsTruncate" : false, so I don't think it's the issue. Any ideas? Thanks!
... View more
02-27-2025
08:13 AM
|
1
|
2
|
1299
|
|
POST
|
well, sometimes you have to look at the OUTPUT of the previous step to get what you are looking for So you might have to create the expression yourself: Yes, the compose was something I came up with trial and error and google search. Might not be the best way to do it, but it's working for me. Lots of trial and error
... View more
11-05-2024
06:51 AM
|
1
|
2
|
3509
|
|
POST
|
Hi @ZacharyHart below is a screenshot of my flow which is working just fine. It's very similar to your first flow you are showing, perhaps try a body/items in the apply to each2 step? I also use a Compose step to get all the detail info from item, then I can extract what ever info I need. Hope this help.
... View more
11-05-2024
06:11 AM
|
0
|
4
|
3514
|
|
POST
|
Hi @Woodpeckerus , were you able to find a solution for this issue?
... View more
10-03-2024
01:00 PM
|
0
|
0
|
1332
|
|
POST
|
Hi @JonJones1 I had a similar process has yours and the way I setup my flow was as follow: 1) I created a dummy hosted table on my AGOL matching the Excel table schema 2) I Created a Power Automate flow that filter the "Active" records from my Excel spreadsheet (I have Active and Inactive records... make sure your Field name do not have spaces in it... apparently it's a bug in the Filter function), then I add new records in my dummy hosted table. 3) I am using Data Pipelines (in AGOL) to update my Master hosted feature layer using the Dummy Hosted table if I have new records or some of the existing records have been updated. In my case, I am not dealing with a lot of records (less than 200) or live data so the process is fairly quick and I can schedule it to run it every hours. I am sure there are many different ways to get this process done, I just wanted to share my process. Good luck!
... View more
09-18-2024
07:44 AM
|
2
|
0
|
3787
|
|
POST
|
OK, I solved my problem: 1) I was using the wrong URI... (https://www.arcgis.com/sharing/generateToken) 2) I had to encrypt my credentials using the following expression in the body: concat('username=',encodeUriComponent('USERNAME'),'&password=',encodeUriComponent('PASSWORD'),'&referer=',encodeUriComponent('https://www.arcgis.com')) this is working great!
... View more
08-30-2024
07:17 AM
|
0
|
0
|
921
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 13 | 06-29-2026 12:07 PM | |
| 1 | 03-26-2026 01:47 PM | |
| 1 | 08-05-2024 06:19 AM | |
| 1 | 06-11-2025 08:07 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|