|
POST
|
Hi Mario, It is most likely failing because your print service fails to access agol base map services. If you set your print service Message Level to Error/Warning/Info, you should see more descriptive error message showing the reason behind the failure. The most likely reason your print service fails to connect basemap services is because of firewall settings. I think I usually asks users to do is this: log on to your server machine that is running your print service make sure you log as ArcGIS Server Account not as your account open a browser and try to access a agol basemap service hope this helps. Thanks. Tanu
... View more
03-05-2020
09:27 AM
|
0
|
0
|
1508
|
|
POST
|
Hi Wes, No problem. I did not see a reference to photo's in the blog post you shared, unless I am missing something. Is there any specific blogs referencing attachments? urgh. my bad! copy/paste error. I meant to send this help link: Attachment report elements—ArcGIS Pro | Documentation Yes, you are right - the attachment info is not there in the blog post. When we wrote the blog, Report didn't have attachment capability. We will either update the blog or create a new one for this. Thanks. Tanu cc: Scott M. MacDonald
... View more
03-04-2020
04:02 PM
|
2
|
1
|
3730
|
|
POST
|
one other thing, you need to use ArcGIS Pro 2.5 or newer while authoring your report file. And on the server side, you need ArcGIS Enterprise 10.8 or newerer.
... View more
03-04-2020
11:13 AM
|
1
|
0
|
3730
|
|
POST
|
Hi Wesley Collins, My apologies for the delay. Reports in ArcGIS Pro now supports attachments (images only). Here is the help topic: https://www.esri.com/arcgis-blog/products/arcgis-enterprise/mapping/print-reports-from-arcgis-enterprise-web-apps Could you pls give this a try and see whether it works for you? Thanks. Tanu
... View more
03-03-2020
09:41 PM
|
1
|
3
|
3730
|
|
POST
|
Hi Stefano, It seems like you are hitting a server side bug. Having said that, it looks like you can still achieve this a bit (might be better in some sense) different approach. Please see the blog post here: Dynamic Spatiotemporal Exploratory Analysis with Aggregated Results Using Time Series Data in ArcGIS Please let me know if you find this new approach is not going to help you much. Thanks. Tanu
... View more
03-03-2020
07:57 PM
|
1
|
0
|
1195
|
|
POST
|
if you don't have time slider use case, then here is a one liner that do so the job for you. iif(DateDiff(today(), $feature.datefield, 'days') < 1, $feature.datefield, -999) or iif(today() == $feature.datefield, $feature.datefield, -999) what kind of renderer/symbology you have for this layer?
... View more
02-20-2020
11:34 AM
|
0
|
0
|
951
|
|
POST
|
Thanks for reporting it. It turned out to be a bug in WAB Print Widget. The team is aware of this. Pls note, it works fine in AGOL Map Viewer.
... View more
02-19-2020
08:55 AM
|
2
|
2
|
3899
|
|
POST
|
hi Wesley Collins, we have 2 blog posts on this topic. please check whether any of them will help you. and we can go from there. Print reports from ArcGIS Enterprise web apps Printing Popups from Web Application Thanks
... View more
02-18-2020
06:06 PM
|
2
|
6
|
3730
|
|
POST
|
can you pls check whether you server, that is running your print service, has access to the map/feature service you added in your webmap? A quick way to do is: - log on to the server that is running your print service as the 'ArcGIS SOC Account user' - open a browser - try to access the map/feature service using their urls Also, I'd recommend to switch your print service's Message Level to Error/Warning, so that you can get informative error message instead of some very generic error message.
... View more
01-27-2020
01:14 PM
|
1
|
1
|
4214
|
|
POST
|
Hi Molly Watson, Sorry for the delay and thank you for providing valuable information. I will take a look. Lastly, I don't see a link to the blog post you referenced. Can you resend that? duh, forgot to copy/paste the url. here you go Print reports from ArcGIS Enterprise web apps I will get back to you soon.
... View more
01-17-2020
10:56 AM
|
0
|
0
|
3024
|
|
POST
|
Regarding creating line connecting those points, I do have a workaround for that too - but it gets a bit complicated and hence I didn't post it any where plust I only know how to do that for SQL Server using a user defined function, not sure how to achieve the same for other databases. Thanks to Thomas Colson, I realized there is another way to achieve this with existing SQL server function - no need to write user defined functions. See my comment here.
... View more
01-15-2020
06:29 PM
|
2
|
0
|
1013
|
|
POST
|
Hi Thomas Colson, That is an excellent idea!!! If you think it makes sense for your use case, you can follow the steps provided in the blog post that I mentioned in my last comment to make it dynamic (i.e. showing the latest always) and get rid the nightly task to create a new table with last 7 days worth of day. Plus you can use time slider to see how they traveled as time passed. In fact based on your idea (again thanks for that), I came up another solution to draw lines from those points. Here are flight paths (when no time is provided) ... that are created from these points The line layers has only two features instead of multiple features representing each segment of the polyline (which is btw something needed for some cases) Now if you enable time slider, you can play back how these flights moved. Here is the SQL (for SQL Server) that i used. select
ROW_NUMBER() OVER (ORDER BY ident) as objectid,
ident,
geometry::STLineFromText
(
concat('LINESTRING (', coord, ')'),
4326
) as shape
from (
select ident,
string_agg
(
concat(shape.STX, ' ', shape.STY), ', '
) within group (order by clock)
as coord
from flightawarepositions
WHERE ::r:time
group by ident
) a or a bit different version without subquery: select ident,
objectid = ROW_NUMBER() OVER (ORDER BY ident),
shape = geometry::STLineFromText
(
concat
(
'LINESTRING (',
string_agg
(
concat(shape.STX, ' ', shape.STY),
', '
) within group (order by clock),
')'
),
4326
)
from flightawarepositions
WHERE ::r:time
group by ident
NB: 1. for ::r:time syntax, please ArcGIS Pro doc here. 2. this is a very quick solution that I tried. I haven't tested whether it will hit any limits when it comes to concatenating large string
... View more
01-15-2020
06:26 PM
|
2
|
0
|
6884
|
|
POST
|
Hi Molly, Would it be possible for you to provide me a sketch of how the map and report would look like? also, are your services hosted on arcgis online or within an enterprise server. are they public that I can take a look at? lastly, pls take a look at the following blog post and see whether this might help you with reporting or not. Thanks. Tanu
... View more
01-13-2020
02:28 PM
|
0
|
2
|
3024
|
|
POST
|
Hi Mody Buchbinder, If you have their data in an enterprise database (or willing to move you data into an enterprise db), there is a workaround to label the latest point . https://www.esri.com/arcgis-blog/products/arcgis-pro/mapping/play-back-flight-data-using-time-slider-and-query-layer-in-arcgis-pro/ Regarding creating line connecting those points, I do have a workaround for that too - but it gets a bit complicated and hence I didn't post it any where plust I only know how to do that for SQL Server using a user defined function, not sure how to achieve the same for other databases.
... View more
01-13-2020
11:02 AM
|
1
|
1
|
6885
|
|
POST
|
Thanks for letting me know. As per Oracle help, it should work - I will look at this and update our help doc.
... View more
01-07-2020
01:54 PM
|
0
|
0
|
1976
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2026 04:42 PM | |
| 2 | 05-11-2026 04:59 PM | |
| 1 | 04-16-2026 01:37 PM | |
| 1 | 03-06-2026 04:33 PM | |
| 1 | 03-05-2026 03:22 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-10-2026
10:17 AM
|