|
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
|
1934
|
|
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
|
1951
|
|
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
|
2063
|
|
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
|
2075
|
|
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
|
416
|
|
POST
|
I unchecked the "Enable Sync" and everything started to work just fine.
... View more
02-27-2025
09:50 AM
|
0
|
0
|
1081
|
|
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
|
1122
|
|
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
|
3051
|
|
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
|
3056
|
|
POST
|
Hi @Woodpeckerus , were you able to find a solution for this issue?
... View more
10-03-2024
01:00 PM
|
0
|
0
|
1147
|
|
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
|
3436
|
|
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
|
801
|
|
POST
|
Hi, I started having the same issue this weekend, any new hosted feature layers I created were not listed in any ArcGIS Connector tools. But, if you manually add the ITEMID followed by layerId0 that should work (working for me). It's probably another system update that break something😁
... View more
08-27-2024
06:09 AM
|
0
|
0
|
2453
|
|
POST
|
Hello I am trying to truncate a hosted feature layer on AGOL using the REST API and Power Automate. I created an App in AGOL and I am using the client_id and client_secret to get a token. This seems to be working fine. But when I try to use the token I get the following error: User does not have permissions to access this service. Any guidance would be much appreciated. Thanks! the result is this: I am able to get a token but... I get the user does not have permissions to access this service
... View more
08-26-2024
09:33 AM
|
0
|
1
|
861
|
|
POST
|
Hi @Tiff it's been a while since I worked on that issue. I did open a ticket with Support and we were not able to find a solution. I did not spend more time on it... just learned to live with it. Sorry
... View more
08-05-2024
06:19 AM
|
1
|
0
|
2303
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-26-2026 01:47 PM | |
| 1 | 08-05-2024 06:19 AM | |
| 1 | 06-11-2025 08:07 AM | |
| 1 | 07-13-2025 04:58 PM | |
| 1 | 02-27-2025 08:13 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|