Opening docs from OnDemand server
Opening docs from OnDemand server
(OP)
Can anybody tell if the following is possible:
I need to create reports for 250 individual users and publish them to the OnDemand server. The approach I would like to take is to create one generic dashboard document that I can publish for each user along with their individual reports. For this to work I will need to somehow generate the name of the detail document to be opened from the dashboard/EIS. I will know the documents physical name but do not know if I can access it from the dashboard through the OnDemand server.
I would really appreciate any feedback on this, as if this approach does not work not sure how to solve my problem
I need to create reports for 250 individual users and publish them to the OnDemand server. The approach I would like to take is to create one generic dashboard document that I can publish for each user along with their individual reports. For this to work I will need to somehow generate the name of the detail document to be opened from the dashboard/EIS. I will know the documents physical name but do not know if I can access it from the dashboard through the OnDemand server.
I would really appreciate any feedback on this, as if this approach does not work not sure how to solve my problem
RE: Opening docs from OnDemand server
It sounds like 250 separate reports is a little overwhelming to handle from one document, and I don't think you can reference a separate report section - it has to be from the active document. You would have to save 250 reports on the ODS hard drive, hyperlink to them using code like:
var MyURL = "MachineNameorNumber/ods-isapi"
Application.OpenURL(MyURL + "/Reports/BrioUser249Rpt.pdf","_new")
and these would be static reports - not updatable through Brio. This code will open up the referenced doc in a separate window, so when they leave the report they will return to the Brio Document. Any way you go, you have a lot of "publishing" to do!