Clarity

  • 1.  A Jasper Advanced Report In PPM Page

    Posted Mar 18, 2016 06:45 PM

    Dear Friends

     

    How can I put a Jasper Report on a CA PPM Page like seen in the picture above?

     

    Portlet Jasper.png



  • 2.  Re: A Jasper Advanced Report In PPM Page

    Posted Mar 28, 2016 08:52 AM

    You need to create an html portlet and insert it into the page.

     

    As exemple in you HTML Portlet you would put something like:

    <iframe width="1024" height="1024" src="https://*yourServer*/reportservice/flow.html?_flowId=viewReportFlow&standAlone=true&ParentFolderUri=/*ReportFolder*&reportUnit=/*ReportFolder*/*ReportName*"></iframe>

     

    as exemple if your report is in the following folder:  /custom/report/  and your report name is alloc_by_investment... line would look like this:

     

    <iframe width="1024" height="1024" src="https://*yourServer*/reportservice/flow.html?_flowId=viewReportFlow&standAlone=true&ParentFolderUri=/custom/report*&reportUnit=/custom/report/alloc_by_investment"></iframe>

     

    If you do need to pass a parameter to a report you use the "&" as example

    <iframe width="1024" height="1024" src="https://*yourServer*/reportservice/flow.html?_flowId=viewReportFlow&standAlone=true&ParentFolderUri=/custom/report*&reportUnit=/custom/report/alloc_by_investment&param1=200"></iframe>

     

    hope this help

     

    Eric