Poser une questionPoser une question
 

QuestionAutomating the MOSS -SSRS site export.

  • lundi 29 juin 2009 22:35essbee12 Médailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateur
     
    Hi,

    We are developing a SSRS 2005 integrated with MOSS 2007 solution to create a dashboard with SSRS web parts.
    One requirement is to export the complete site view containing various web parts to PDF or an image on a schedule or triggered by another process.

    Has anyone done anything similar?
    Can you provide some direction on how to achieve this?

    Any help is appreciated . Thanks 

Toutes les réponses

  • lundi 29 juin 2009 23:28André Lage Médailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateur
     
    Add a content editor WebPart and add this code: 

    <script> function printWindow(){ bV = parseInt(navigator.appVersion) if (bV >= 4) window.print() } </script> <img src="/imagens/print_ico.jpg" alt="Print This Page"> <a href="javascript:printWindow()">Print This Page</a>  

    Install PDF Creator http://sourceforge.net/projects/pdfcreator/  
    On print select PDF and you get page site as PDF  

    Hope this help...

    André Lage Microsoft SharePoint and CRM Consultant
    Blog:http://aaclage.blogspot.com
    Codeplex:http://spupload.codeplex.com/http://simplecamlsearch.codeplex.com/
  • mardi 30 juin 2009 03:03essbee12 Médailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateur
     
    thanks, but this would be provide a link to print/export the site as a PDF.

    I am looking to automate this process without user interaction. At a certain time or triggerred by the some event, the reports would be executed and and the snapshot of the site would be stored in pdf/image.
  • mardi 30 juin 2009 08:12RaghavanS Médailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateur
     
    Hi essbee12,

    My understanding:
    1) You have many reports created using SSRS and want to display them in the SharePoint
    2) You have many SSRS reports [say 4]
    3) You want to automate to create all the SSRS [4 reports] to be converted to a PDF

    Are you having the SSRS integrated with SharePoint (or) just displaying the SSRS reports in the report viewer web part?

    My Suggestion:
    1) SharePoint here is mainly used to display the report
    2) To automate the PDF creation, trying achieving the requirement in the SSRS end itself
    3) You can write .net console / windows app to achieve this
    4) Had the data been in SharePoint environment we can try to use SharePoint timer Job, but for your requirement i feel you can handle it without any SharePoint involvement

    Hope this helps
    Raghavan
  • mardi 30 juin 2009 16:10essbee12 Médailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateur
     

    Raghavan,

    The SSRS reports will be deployed in the report viewer web part. 

    Thanks for your suggestion.