I have built a dataminer View that contains a button to produce SLA reports in HTML or PDF. The property in the View (name: SLA Service Names) contains all the SLA Service IDs and the button shape data is set to the following:
Label: Link
Value: http://10.87.192.224/Reports/Report.asp?report-template=Terrys%20Probe%20SLA%20Reports&report-title=Service%20Availability%20Report&report-message=&[Property:SLA Service Names]report-format=pdf
The total service SLAs in the report should produce around 160 entries but is only producing 50
Firefox is my default browser and Windows server 2012 has Max "URL length" and "query string" set to 10000
Any idea why my SLA reports are being truncated?
Note running the SLA reports within Reports and Dashboards module it works fine
Hi Terry,
In order to reduce the query length of the URL and to reduce complexity on your setup, I suggest you to do as follows:
Instead of linking the property with all service names combined, you can just pass the complete view along with your request instead. (use the [this ViewId] placeholder together with the report-view url parameter.)
This will reduce the complexity as you no longer need to define the property. It also brings more flexibility as new service SLAs added to this view will automatically end up in the reports without changing the property.
You will need the following ShapeData for your Visio drawing button:
Label: Link
Value: http://10.87.192.224/Reports/Report.asp?report-template=Terrys%20Probe%20SLA%20Reports&report-title=Service%20Availability%20Report&report-message=&report-view=[this ViewID]&report-format=pdf
Please let us know if that solved the case. Thanks
Answered
That worked perfectly – many thanks