|
POST
|
I think you might be missing something in your first expression (you are not referring the attribute section). In your case it's probably: Body/data/attributes/FIELDNAME below is a sample of a breakdown below is another example I have: hope this help (and not confuse you more 😁)
... View more
12-13-2023
10:44 AM
|
0
|
1
|
2947
|
|
POST
|
Could you try to add another Compose and put the expression to convert to epoch to see if that works. Then you would put the result of the new Compose into the 'Update_a_record_in_a_feature_layer'. Just to make sure you are getting the correct epoch value. Just an idea...
... View more
12-12-2023
12:51 PM
|
0
|
3
|
2955
|
|
POST
|
Hi Erica, can you show us what you are getting as output from the Apply Each and Compose when you run the flow?
... View more
12-12-2023
12:04 PM
|
0
|
5
|
2958
|
|
POST
|
Can you show us your Upload file from URL settings? I have a similar flow and below are my settings. This is working just fine for me
... View more
12-05-2023
06:30 AM
|
0
|
1
|
4704
|
|
IDEA
|
It would be nice to be able to rename an ArcGIS Connection similar to the SQL Server Connection (the Display Name option). Our use case is that we have lots of HFL owned by our PSA, so I have to create flows connecting using the PSA credentials and some flows using my own HFL items. Being able to identify which connections belong to which accounts would be helpful when comes time to "refresh" the connections to avoid a token issue. Thanks!
... View more
12-04-2023
02:44 PM
|
5
|
1
|
1060
|
|
IDEA
|
@AlixVezina (nothing personal here) but here's the thing, if ESRI had a true competitor, you guys would have never released a product without matching all functionalities from the previous version. Now, ESRI has the mindset of releasing products (ArcGIS Pro, AGS Online, mobile apps, etc.) with less functionalities than previous versions and tells us the clients/users to not worried, ESRI will add functionalities over time without a definite time line. I truly wished there was an alternative to ESRI out there... because the quality of ESRI's products has declined over the past few years and is a real issue for us (client/user) trying to help our customers (internal/external). That's just my 2 cents.
... View more
11-30-2023
08:48 AM
|
0
|
0
|
2597
|
|
BLOG
|
@AnthonyLatini the fix works for me... but I had to delete ALL previous ArcGIS Connector connections, then from within the "broken" flow create a new connection and Voila! back to normal. Thanks guys for working hard at finding and fixing the bug
... View more
11-16-2023
01:33 PM
|
1
|
0
|
411
|
|
POST
|
This issue has been fixed by ESRI (I received an email from ESRI tech support). Everything is working fine for me once again.
... View more
11-16-2023
11:35 AM
|
2
|
1
|
2529
|
|
POST
|
@Pavel148 ,The webhook got created, but I still can get any data coming in
... View more
11-09-2023
02:07 PM
|
0
|
0
|
2582
|
|
POST
|
here's another post of connection issues https://community.esri.com/t5/arcgis-for-power-automate-questions/issue-retrieving-feature-layer-using-template/m-p/1347816#M436
... View more
11-09-2023
01:13 PM
|
1
|
1
|
3933
|
|
POST
|
@Pavel148 , thanks for getting back to me. 1) issue is the same for When a Record is Created and when a record is updated an in Fetch updates, changes, or deletions from feature layer. 2) drop down works for Get Data from Feature layer 3) following your workaround, the webhook was created on the HFL and the flow ran success.
... View more
11-09-2023
09:31 AM
|
1
|
1
|
2623
|
|
POST
|
Thank you! That did the trick. I though I had tested it before but I guess not.🤣 D
... View more
11-02-2023
11:36 AM
|
0
|
0
|
2167
|
|
POST
|
Yes, if I create a new line, no problem I get the next UID as expected. The issue is when splitting a line .
... View more
11-02-2023
11:09 AM
|
0
|
0
|
2175
|
|
POST
|
that doesn't seem to be working for me. Below is the code I am using (which is from the UN water foundation) var assigned_to_field = $feature.FUID;
var id_selector_value = $feature.assetgroup;
function get_id(selector_value) {
var id_format = {}
var seq_val = null;
var selector_value_txt = Text(selector_value)
if (selector_value_txt == '1') {
id_format = {
'prefix': "DRSQ1",
'join_char': '',
'suffix': ''
}
seq_val = NextSequenceValue('DR_DB_SEQ_1');
}else if (selector_value_txt == '50') {
id_format = {
'prefix': "Wr-Jnctn",
'join_char': '-',
'suffix': ''
}
seq_val = NextSequenceValue('W_J_Wr_Jnctn_50_seq');
}else if (selector_value_txt == '51') {
id_format = {
'prefix': "Insltn-Jnctn",
'join_char': '-',
'suffix': ''
}
seq_val = NextSequenceValue('W_J_Insltn_Jnctn_51_seq');
} else {
return null;
}
var id_parts = remove_empty([id_format['prefix'], seq_val, id_format['suffix']])
return id_format['prefix'] + Text(seq_val , "00000")
}
// ************* End User Variables Section *************
// ************* Functions *************
function remove_empty(arr) {
var new_arr = [];
var j = 0;
for (var i = 0; i < Count(arr); i++) {
if (!IsEmpty(arr[i]) && arr[i] != '') {
new_arr[j++] = arr[i];
}
}
return new_arr;
}
// ************* End Functions Section *****************
if (IsEmpty(assigned_to_field) == false && assigned_to_field != '') {
return assigned_to_field
}
var new_id = get_id(id_selector_value)
if (IsEmpty(new_id)) {
return assigned_to_field;
}
return new_id (
... View more
11-02-2023
10:54 AM
|
0
|
0
|
2185
|
|
POST
|
Hello, I am looking for an Attribute Rule that would allow me to split a line (water main) and for one segment retain the original unique ID and the other segment, get the next available ID. Is that doable? Any guidance would be much appreciated. Thanks! D
... View more
11-02-2023
10:12 AM
|
0
|
6
|
2203
|
| Title | Kudos | Posted |
|---|---|---|
| 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 | |
| 1 | 11-05-2024 06:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|