|
POST
|
I am experiencing the same issue on IOS 22.4.2 (build954) this functionality used to be working just fine and same as @RichSiko our field crews are relying on those URLs to pull asbuilt, service cards, etc.) it will works if you only have ONE media ... if you have multiple ... not working. I could create Arcade expressions but I would rather have the original functionality back PLEASE ESRI get this fix ASAP
... View more
12-23-2022
08:18 AM
|
0
|
0
|
3300
|
|
POST
|
Hello I have a flow in Power Automate that pull data from a Dataverse table, and update a hosted feature layer on AGOL. Everything seems to be working fine EXCEPT for my Date fields. below is what is the payload form Dataverse { "@odata.editLink": "cr3c3_coa_projectses(a85d55b7-1f82-ed11-81ac-000d3a37d89e)", "cr3c3_coaprjstartdate@OData.Community.Display.V1.FormattedValue": "12/22/2022 6:00 AM", "cr3c3_coaprjstartdate@odata.type": "#DateTimeOffset", "cr3c3_coaprjstartdate": "2022-12-22T06:00:00Z", "_cr3c3_coaemployee_value@OData.Community.Display.V1.FormattedValue": "Dominic Roberge", "_cr3c3_coaemployee_value@Microsoft.Dynamics.CRM.associatednavigationproperty": "cr3c3_coaEmployee", "_cr3c3_coaemployee_value@Microsoft.Dynamics.CRM.lookuplogicalname": "cr3c3_coa_stafflist", "_cr3c3_coaemployee_value@odata.type": "#Guid", "_cr3c3_coaemployee_value": "b302e0c1-2082-ed11-81ac-000d3a37dbf1", "cr3c3_coa_projectsid@odata.type": "#Guid", "cr3c3_coa_projectsid": "a85d55b7-1f82-ed11-81ac-000d3a37d89e", "statecode@OData.Community.Display.V1.FormattedValue": "Active", "statecode": 0, "statuscode@OData.Community.Display.V1.FormattedValue": "Active", "statuscode": 1, "_createdby_value@OData.Community.Display.V1.FormattedValue": "Dominic Roberge", "_createdby_value@Microsoft.Dynamics.CRM.lookuplogicalname": "systemuser", "_createdby_value@odata.type": "#Guid", "_createdby_value": "14855649-5267-ed11-9561-000d3a37d89e", "cr3c3_coaprjname": "test revised no staff", "timezoneruleversionnumber@OData.Community.Display.V1.FormattedValue": "4", "timezoneruleversionnumber": 4, "createdon@OData.Community.Display.V1.FormattedValue": "12/22/2022 5:40 PM", "createdon@odata.type": "#DateTimeOffset", "createdon": "2022-12-22T17:40:26Z", "cr3c3_prjuid": "7", } the 4th line has the data I am looking for to update my date field in AGOL. below is the error I am getting I have tried adding aFormatDateExpression (FormatDateTime(outputs('Get_a_row_by_ID')?['body/cr3c3_coaprjstartdate'],'MM-dd-yyyy')) but still no success. Any help would be much appreciated. Thanks!
... View more
12-22-2022
12:51 PM
|
0
|
10
|
4192
|
|
POST
|
hello everyone sorry it took so long, I had open a ticket with ESRI Support regarding this issue and they finally created a BUG as they were able to replicate the issue: Bug Number: BUG-000154427 Synopsis: The Arcade expression configured in a form within a web map does not get honored in Map Viewer Any ideas how I could generate a unique ID automatically? Thanks!
... View more
12-13-2022
12:22 PM
|
0
|
0
|
5190
|
|
POST
|
Thanks for the info. However when the expressio is enabled, I can't click the Create Feature button. when I test the expression it seems to be working if I disable the expresssion, then I can Create feature What am I missing? I also tested the process on a different HFL and different web map and same result.
... View more
11-24-2022
06:08 AM
|
0
|
1
|
5251
|
|
POST
|
Hello I started playing with the ArcGIS connector as well and kept getting the same error as listed in the original message. I was using a Hosted Feature Layer with a relationship class (was published from a FGDB). Then I tested the same workflow with a HFL published from FGDB but no relationship and it worked. Could it be the problem?
... View more
11-23-2022
09:14 AM
|
0
|
1
|
3843
|
|
POST
|
Hi Johannes thanks for helping me on this. I modified my expression accordingly and when I tried it in the web map.... nothing.... Then I decided to try it in the Field Maps app and it was working just fine (new record and updating existing record). I then tried to create and Experience Builder app to see how it would behave... same as web map, Empty FUID field. Any idea why it's not working properly in the web map? For this project, my users will enter/modify data either through a web map or experience builder app. Thanks!
... View more
11-23-2022
07:24 AM
|
0
|
3
|
5259
|
|
POST
|
Hello I have the following Arcade code to create a new Unique ID on a feature layer (hosted on ArcGIS Server). It's working fine for a NEW record, but if I try to select an existing record, it will update the UID field with the next available number. How can I avoid to overwrite an existing value? Thanks for any help you could provide. D var fs=FeatureSetByName($datastore,'dr_testPts',['FUID'],false);
var cCurrentFUID = $feature.FUID
var fFilter = Filter(fs, 'FUID IS NOT NULL');
var fMax = 0
var tMax = 0
for (var k in fFilter){
fMax = Max(Right(k.FUID, Count(k.FUID)-3))
tMax = When(fMax>tMax,fMax, tMax)
}
tMax +=1
var vNewFUID = "EOC" + text(tMax, "00000")
if (IsEmpty(cCurrentFUID)){
return vNewFUID
} else {
return cCurrentFUID
}
... View more
11-22-2022
12:10 PM
|
1
|
13
|
6414
|
|
POST
|
Hello Everyone Any updates on this BUG? I get the same error message but not on all web maps I am trying to load into Teams....
... View more
11-09-2022
06:14 AM
|
0
|
0
|
2558
|
|
POST
|
Ok I solved my own problem: 1) I added a Filter on my Feature layer to get one Site Location the time fExpression = "FUID='" + f.attributes['FUID'] +"'"
SLHFL.filter = fExpression and then , after I ran the buffer I am adding the new feature to my Buffer Layer using the following code buffLyr = use_proximity.create_buffers(SLHFL, distances=[dDist], units = 'Feet')
#Append to Buffer HFL
BufferHFL.edit_features(adds=buffLyr.layer.featureSet.features) working great!
... View more
11-04-2022
01:41 PM
|
0
|
0
|
1086
|
|
POST
|
Hello I have an AGOL item with 3 layers: Site Location (pts), Site Buffer (poly) and Site Area (poly). The Site Area has a field with a Distance value that I would like to use to create my buffers (different value for each area). So in my Notebook, I have a piece of code that select all the Site Location where the BufferFlag='N' then I intersect each of the records with my Site Area to get the proper value of the Distance to create the buffer…. AND THEN I AM STUCK! below is the section of code that I can't figure it out.(line 15 to 20) i=0
###for each Site Location WORKING
for f in SLHFLcount:
print(f.attributes['FUID'] + ' -- '+ f.attributes['BufFlag2'])
ptFeat = SLHFLcount.features[i].geometry
print(ptFeat)
print("~~~~~~~~~")
###Intersect with my Site Location WORKING
AreaHFLqry = AreaHFL.query(where='1=1', geometry_filter=filters.intersects(ptFeat))
print(len(AreaHFLqry))
if len(AreaHFLqry) >=1:
AreaHFLqryFeatures = AreaHFLqry.features
print(AreaHFLqryFeatures[0].attributes['Area1']+ ' -- '+ AreaHFLqryFeatures[0].attributes['Area2'] + ' -- '+ str(AreaHFLqryFeatures[0].attributes['Dist']))
###Create individual buffers NOT WORKING
dDist = AreaHFLqryFeatures[0].attributes['Dist']
buffLyr = use_proximity.create_buffers(SLHFL, distances=[dDist], units = 'Feet',output_name=BufferHFL)
#buffLyr_fc = buffLyr.layer
#print(buffLyr_fc)
map1.add_layer(BufferHFL)
###update BufFlag to Y
#strExpression = "FUID='"+str(f.attributes['FUID']+"'")
#SLHFL.calculate(where=strExpression,calc_expression={"field":"BufFlag2", "value": "Y"})
else:
print("we don't have a polygon yet")
i +=1
print("----------------")
print("Process completed") How can I create the buffer JUST for that selected Site Location and append the buffer to my Site Buffer layer? Any help would be much appreciated. Thanks!
... View more
11-03-2022
01:55 PM
|
0
|
1
|
1128
|
|
POST
|
I am not familiar with squarespace but if you can add a HTML tag in you code, the following code should do it: <iframe frameborder="0" style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;height:100%;width:100%;position:absolute;top:0px;left:0px;right:0px;bottom:0px" height="100%" width="100%"
src="https://cityofamesgis.maps.arcgis.com/apps/dashboards/5367247413a24b0784414e7f18eb5b97"></iframe> the final product is accessed through the following HTML page https://gis.cityofames.org/images/AFD/AFDburnpermits.html
... View more
10-11-2022
11:19 AM
|
2
|
6
|
12033
|
|
POST
|
Hello while in edit mode, if you click and hold the C key, you will be able to move around. Below is the list of all the short cuts in AGS pro. https://pro.arcgis.com/en/pro-app/latest/get-started/arcgis-pro-keyboard-shortcuts.htm
... View more
10-10-2022
12:03 PM
|
1
|
1
|
4089
|
|
POST
|
I didn't realized he needed the geometry... this one will returns all the records select * from COA_CEMETERY_SECTIONS
where OBJECTID in(select UID from
(
select l.*, s.SECTION_NAME,s.SUB_SECTION_NAME,s.SUB_SUB_SECTION_NAME,s.OBJECTID as UID
from
(select
OBJECTID,Shape,Name
from COA_CEMETERY_BURIAL_SITES where Name='Limited Sale') as l
cross JOIN
(select * from COA_CEMETERY_SECTIONS) as s
WHERE (s.Shape.STContains(l.shape.STCentroid()) = 1)) t
group by t.UID)
... View more
10-04-2022
12:17 PM
|
0
|
0
|
2719
|
|
POST
|
here an example: I have Burial sites flagged as Limited Sales. I want to know where in the Cemetery Which Sections) So I use this query to create custom reports. Is that what you were looking for? select SECTION_NAME, COUNT(*) as RecCount
from
(
select l.*, s.SECTION_NAME,s.SUB_SECTION_NAME,s.SUB_SUB_SECTION_NAME,s.OBJECTID as UID
from
(select
OBJECTID,Shape,Name
from COA_CEMETERY_BURIAL_SITES where Name='Limited Sale') as l
cross JOIN
(select * from COA_CEMETERY_SECTIONS) as s
WHERE (s.Shape.STContains(l.shape.STCentroid()) = 1)) t
group by t.SECTION_NAME
... View more
10-04-2022
11:36 AM
|
0
|
2
|
2728
|
|
POST
|
hello would this works for you: search_result = gis.content.search("*", item_type = "Web Map", max_items=2000)
print(len(search_result))
t = len(search_result)
while i <t:
print(i)
print(search_result[0])
print(" "+str(search_result[0]['title']) +" "+ str(search_result[0].id) + " -- "+ str(len(search_result)))
search_result.pop(0)
i+=1
... View more
09-26-2022
07:23 AM
|
0
|
0
|
1215
|
| 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 |
Tuesday
|