|
POST
|
Hello, since we are thinking of starting a project without involving ArcGIS Enterprise, our biggest concern is the access of a SQL server database (not geoenabled) I am thinking of using: ArcGIS Notebook Data interoperability on PRO (but this means that pro need to run al the time?)) Data pipeline seems to be unusable for this purpose. If the two mentioned methods are both fine, do you have experience with them, what should I consider, is there any other way I could/should consider? Thanks!
... View more
10-31-2024
07:45 AM
|
0
|
4
|
1867
|
|
POST
|
Hi! We loaded some images as Tiled Imagery Layer (as mosaicked image) in ArcGIS online and only room level is available. The size of all images is about 200GB I loaded only 2 images to test and they show at all levels. 2GB the 2 pictures I tested. what can it be? Do pyramids need to be created in ArcGIS Pro and then loaded as well maybe, but I thought it was generated by ArcGIS Imagery. Thanks!
... View more
10-23-2024
07:06 AM
|
0
|
0
|
952
|
|
POST
|
Hi @CodyPatterson thank you! I will reply to the first part of your answer, I need to digest the second one 😅 I didn't think of a distributed collaboration, but could be a game changer for many reason in our small testing environment. The external sharing isn't permanent, but needs to be tested from outside. Without changing anything of the previous mentioned Enterprise configuration: I set it up and I can see the layers shared listed in the Host (AGOL), even when I try to add it to a map they are there. The issue is: the data is not accessible both from within or outside the network. So there is still something I have to do in the system to make the data available I guess.
... View more
10-21-2024
07:22 AM
|
0
|
0
|
1346
|
|
POST
|
Hello, I need to expose ArcGIS Enterprise in order to add a service in AGOL. I need to figure out what to ask the IT for. Current implementation: ArcGIS Enterprise accessible only internally via "https://nameOfTheMachine.domain....." Self signed certificate Web adaptor(s) registered with the machine name. I've read about many options but I am not sure about what I should do exactly. I am confused. Open the port on firewall? Which port? Port forwarding? Which port? CA certificate? A Domain certificate is enough? I need to figure out what is the proper way to do this as I've always used Enterprise within my network. Any documentation or suggestion would be great! Thank you.
... View more
10-21-2024
06:14 AM
|
0
|
2
|
1373
|
|
POST
|
Hi @ThomasHoman , you are right. The IT had to reconfigure the custom domain/DNS that was sort of expired. Anyway, they fixed it and now it works. What was worrying me was that I could not access it at all, not even in editing mode.
... View more
08-28-2024
12:35 AM
|
0
|
1
|
1350
|
|
POST
|
Hi. A Hub has been running for years with a custom domain. Since last week the site the site cannot be found. Logged in in Arcgis.com I cannot view or configure. Any idea? Thanks
... View more
08-27-2024
03:43 AM
|
0
|
3
|
1407
|
|
POST
|
Hello! I have a web form that calculates an incremental ID and then concatenates it to form a refNumber. It works fine until you decide to update the point: let's say the position is incorrect and you need to move it. this is the code and below are the results: the number should stay the same as it is the same point: // Get the current feature's newID field value
var currentID = $feature.newID;
// Check if currentID is null or empty, meaning this feature needs a new ID
if (IsEmpty(currentID)) {
// Get the maximum value of the newID field from all features in layerName
var maxID = Max(FeatureSetByName($datastore, "layerName", ["newID"]), "newID");
return maxID + 1;
} else {
// If currentID is already set, return the existing currentID
return currentID;
} create a point with ID 5 and then moved it becomes 6 Any idea? Thanks!
... View more
08-26-2024
03:16 AM
|
0
|
2
|
1110
|
|
POST
|
Thank you @ToddW_stl, I wasn't aware of the limitation. For the time being, since I need the files in view mode only irrespective if they are loaded via Survey or other Apps, I decided to solve with a Dashboard that contains only a "Detail" element and a URL parameter link. I had this idea after struggling with the concat() of your solution 😀 Below is the calculation. the solution proposed by Zachary could be the best if I manage to get ALL attachments within the Survey, I'll test it later but the dashboard seems to be a good solution to me.
... View more
07-23-2024
06:17 AM
|
1
|
0
|
5445
|
|
POST
|
Hi @ToddW_stl thanks for sharing this. Your solution works beautifully and I also tested the new survey with only the attachments and it is perfect. here is an issue tough: the visible attachments are only those that are added from a survey. I have 5 surveys to be used in a sequence and the polygon is created from a webmap or PRO, the surveyor is supposed to see the documentation loaded from the office. I created a polygon in a webmap and I attached a pdf and a jpg. I open the survey and the files are not showing, I add a new pdf and a new jpg from the survey, I open the same survey or I open another one that reads the same FL and the files are visible, the ones added from the web map are not there yet. Any idea? Thanks
... View more
07-22-2024
08:51 AM
|
0
|
2
|
5527
|
|
POST
|
Hi @FredMitchell have you managed to solve this issue? I get the same error you get and at the same time I get "You'll need a new app to open this qrc link" Thanks!
... View more
07-22-2024
08:10 AM
|
0
|
1
|
5536
|
|
POST
|
Hello! We are testing some mobile applications on Portal. we do not have a CA Certificate, and I am trying to figure out what would be the best option. self-signed certificate: is it possible at all? [I remember it was possible once but then something had changed.] Domain certificate: would it work? Thanks!
... View more
07-09-2024
08:11 AM
|
0
|
0
|
448
|
|
POST
|
Hello! I have a code that works and that increments by 1 the last id of the same field. if the "NewID" is 400, as soon as I add a new feature that code becomes 401 and so on. the flow is this: 1. adds a new feature, 2. selects from a list the domain and 3. the RefNumber is the result of the concatenation of the domain + the incremented ID calculated as below. // Get the current feature's newID field value
var currentID = $feature.newID_web;
// Get the maximum value of the newID field from all features
var maxID = Max(FeatureSetByName($datastore, "Items", ["newID_web"]), "newID_web");
// If currentID is null, it means this feature needs a new ID
if (IsEmpty(currentID)) {
return maxID + 1;
}
// If currentID is already set, return the currentID
return currentID; Now, I was asked to increment by domain, such as: domain_w_001 domain_w_002 domain_t_001 domain_w_003 ...... I got lost at this point. Any idea on how to increment by domain? Thanks!
... View more
05-31-2024
07:36 AM
|
0
|
1
|
1009
|
|
POST
|
Fingers crossed, this weekend I will have time to test it. Thanks as always Josh.
... View more
05-31-2024
06:40 AM
|
0
|
0
|
956
|
|
POST
|
I am struggling on the same, finger crossed I managed. I would say that depends on the type of calculation, one solution does not fit all. Have you tried to use "calculationMode=whenEmpty"
... View more
05-15-2024
06:13 AM
|
0
|
1
|
3412
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-04-2025 08:07 AM | |
| 1 | 12-18-2020 02:18 AM | |
| 1 | 01-30-2017 08:08 AM | |
| 1 | 11-08-2024 12:38 AM | |
| 1 | 11-27-2023 08:36 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|