Project Server Performance report using SSRS - Report display issue

Hi All,
We have developed and deployed a SSRS report in Project Server BI Center using performance dashboard, but half of the report only visible i.e. it is showing horizontal scroll bar at the bottom as below. I tried to change the web part width and height but
there is no difference. I also tried to change the performance point dashboard height and width but faced same issue. 
Thanks in advance, Arun

As Per me their is not way to deal this issue. When you use web part and deploy SSRS  RDL in project server horizontal bar display in the bottom if display area is not enough to display the data.
whatever height or width you choose in web part property it will come.
We have to live with this problem .
kirtesh

Similar Messages

  • How to consume the Calendar Exception details from Project Server 2013 to an SSRS report using PSI ?

    Hello,
    Can anyone guide me how to access the calendar exception details from Project Server using PSI?
    I need to extract calendar details of enterprise resources , like exception name, exception type, exception start date and exception end date into my SSRS report hosted in SharePoint 2013 and 2010.
    I would be helpful if I can get a sample of this. I have read through many PSI documents in fact still going through ,what  PSI does and doesn't ,  PSI methods etc. from Project Server SDK and MSDN . Moreover, I
    am a beginner in .NET programming. I am confused and have lots of questions in my mind, like which PSI service should be used in my report(is it  just Calendar.svc), can we pull the details as XML type data source my SSRS report ,are
    there any other configuration settings apart from " setting up an event handler by installing an event handler assembly on each Project Server computer in the SharePoint farm, and then configuring the event handler
    for the Project Web App instance by using the Project Server Settings page in the General Application Settings of SharePoint Central Administration" (as per prerequisites for PSI in SDK) , how can I implement authentication settings
    -(when user with proper SharePoint permission
    can accesses the SSRS report  )
    Kindly bear with me if my questions are not appropriate .
    Please do guide me, and .
    Thanks in Advance!!
    Mridhula
    Mridhula.S

    Hi Brendan,
    Project server reporting database doesn't contain the calendar info. The only supported way to use the PSI to read the calendar info from Published database.
    See this
    reply from Amit.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Project Server User Security + Custom SSRS Reports Project List Parameter

    Hello, below is the issue / challenge scenario:
    I'mnt. We have to remove the smaller chunk of queries that are hitting the published database to get the user security permissions. I'm using custom SSRS reports that are pulling data from Reporting database and other custom financial SQL DB's. I need to
    figure out a solution to get the list of accessible projects for a particluar user using PSI. I did find this technet article that addresses my issue in a way
    http : // technet . microsoft . com/en-us/office/ee862408(v=office.14).aspx#pj2007_ta_SecurityInReports_DevelopingThePsiProxiesClassLibrary
     the above solution means that I need to change many of my existing report queries (going to published DB)
    Is there a simpler way to maintain a table that I can populate with the Project GUID's, name , user id, name using PSI? I can then refer the existing SQL's procs, TVF's to point to this table instaed of going to the published DB (unsupported method)
    Any help/ direction is greatly appreciated
    thanks,
    SG

    Hello,
    The ReadProjectStatus PSI method defaults to Project for the Project Type, the value is 0. If you want other project types is gets slightly more complicated as you have to have multiple data sets for the ReadProjectStatus call, one for each project type
    - each time specifying the default projType. For example for Projects (0) the query is:
    <Query>
    <Method Namespace="http://schemas.microsoft.com/office/project/server/webservices/Project/" Name="ReadProjectStatus">
    <Parameters>
    <Parameter Name="projType"><DefaultValue>0</DefaultValue></Parameter>
    </Parameters>
    </Method>
    <SoapAction>http://schemas.microsoft.com/office/project/server/webservices/Project/ReadProjectStatus</SoapAction>
    <ElementPath IgnoreNamespaces="true">ReadProjectStatusResponse/ReadProjectStatusResult/diffgram/ProjectDataSet/Project{PROJ_NAME,PROJ_UID,PROJ_TYPE}</ElementPath>
    </Query>
    For sub projects (5) it is:
    <Query>
    <Method Namespace="http://schemas.microsoft.com/office/project/server/webservices/Project/" Name="ReadProjectStatus">
    <Parameters>
    <Parameter Name="projType"><DefaultValue>5</DefaultValue></Parameter>
    </Parameters>
    </Method>
    <SoapAction>http://schemas.microsoft.com/office/project/server/webservices/Project/ReadProjectStatus</SoapAction>
    <ElementPath IgnoreNamespaces="true">ReadProjectStatusResponse/ReadProjectStatusResult/diffgram/ProjectDataSet/Project{PROJ_NAME,PROJ_UID,PROJ_TYPE}</ElementPath>
    </Query>
    You have to repeat this for all project types you want to include, create a hidden parameter for each project type then create a parameter to join them up and use the combined parameter to filter the data sets that get the data from the Reporting
    database.
    For other parameters in the ReadProjectStatus method see:
    http://msdn.microsoft.com/en-us/library/gg210536(v=office.15).aspx
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Need to display report using SSRS

    I have a query that display above format from different tables.
    But since in row 2 and 3 date, time,day values are same, I don't want it do display it again in row 3.Below is the required format.
    How to do this. I need to display this report using SSRS
    Need Help..Thanks
    Abhinav

    This is basically a presentation issue.
    You should be dealing this in your front end tool like say reporting services. The property is called Hide Duplicates in SSRS and is available from textbox properties. You dont need to do anything at sqlserver query end for this.
    If you really have no other way then you can use a logic as below
    select
    case when t1.[Date] IS NULL then '' else cast(t.[Date] as varchar(20)) end AS [Date],
    case when t1.[Date] IS NULL then '' else cast(t.[Day] as varchar(10)) end AS [Day],
    case when t1.[Date] IS NULL then '' else cast(t.[Time]
    as varchar(10)) end AS [Time],
    t.company
    from table t
    left join (select [Date],[Day],[Time],MIN(Company) AS MinComp
    FROM Table
    GROUP BY [Date],[Day],[Time]
    )t1
    ON t1.[Date] = t.[Date]
    AND t1.[Day] = t.[Day]
    AND t1.[Time] = t.[Time]
    AND t1.MinComp = t.Company
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Balance Sheet/Income Statement Report using SSRS

    I am trying to create a balance sheet, income statement report using ssrs. Due to lack of experience, I am seeking some help from someone who has already built one. For the report I am trying to built, the data isn’t readily available
    in a master/detail format. I need to connect to an Oracle DB, run one or more stored procedures (in Oracle) to put data in a temporary/run-time table (reporting table) and read that data to create the financial statement.
    Any help or guidance would really be appreciated.

    Hi Khaga,
    Adding to Vishal's reply, before we can connect an Oracle data source, the system administrator must have installed the version of the .NET Data Provider for Oracle that supports retrieving data from the Oracle database. This data provider must be installed
    on the same computer as Report Builder and also on the report server. To retrieve data from an Oracle database, we can use Oracle or OLE DB data source type. For more details about the connection string, please see the following document:
    http://msdn.microsoft.com/en-IN/library/dd220591.aspx
    Besides, we can refer to the following SSRS tutorial about create a basic report in Reporting Service:
    http://msdn.microsoft.com/en-IN/library/ms167305.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to set DbConnections when scheduling a crystal report using Crystal Reports Server Java SDK?

    Post Author: Manjula
    CA Forum: JAVA
    Hi,
    Trying to schedule a report using Crystal Reports Server Java SDK. Want to pass DBConnections from API, though passing DBConnections, the report is not being scheduled and says "Failed to retrieve data from the database.Details:&#91;Database Vendor Code:6550&#93;.
    Would be thankful if someone could answer my point as applicable.
    Here is the code attached.
    ISDKList dbLogons = oReport.getReportLogons();int dbLogonSize = dbLogons.size();
    for(int i=0; i<dbLogonSize; ++i) {
    IReportLogon dbLogon = (IReportLogon)dbLogons.get(i);
    dbLogon.setDatabaseName("DBname");
    dbLogon.setUserName("usrname");
    dbLogon.setPassword("pwd");
    Thanks in advance.

    Post Author: Manjula
    CA Forum: JAVA
    Ted,
    Thank you for your valuable information.
    First, tried scheduling on Central Management Console and then with the java code.It worked fine, but here is another question for you.
    On the Console, a report exists with ServerName and UserName harcoded and when trying to set ServerName and UserName from the java code, its throwing exception. Where as Password is not set on Console, am able to set password from java.
    And DatabaseName is not set on Console (non editable), unable to set the same from java too. Why is it so?
    So, my question is - though ServerName,DatabaseName,UserName,Password exists on the Console report, can't I override those parameters from java?
    Would be greatful if you answer my question and provide me some guidance.
    Thanks in advance.

  • How to view multiple reports using crystal reports 2008

    Hi ,
    I am working on vb6 project where in i am trying to generate reports using crystal reports 2008.
    For this , i am making use of Interop Form Wrapper class in vb6.
    I have a business requirement where in i need to view multiple reports  on my screen.
    please suggest me as to how this can be achieved.
    Thanks in Advance
    Regards,
    Ramnath

    Hi Ludek,
    I  am directly now using crystal report viewer control in my vb6 project.
    As mentioned in previous mail, i have created a Interop Wrapper class over crystal report viewer control in .Net using visual studio 2008 and i am making use of wrapper class in my vb6 project.
    I am able to access all the properties that have been defined in my Interop wrapper Class but the only stuff i need is to view multiple reports generated one after the another for a single button click Event.
    Please find below the code that iam using to load and generate reports.
    Note:
    1. frm is the instance of my Interop Wrapper Class built over CR viewer control
    2. All the user defined methods of Wrapper class that you see below will internally call the actual crystalreportviewer   properties defined in my Wrapper class
    Say for e.g   frm.DisplayToolbar(True) will internally  execute  crystalreportViewer1.DisplayToolbar = True
    frm.SetReportSource(strRptFilePath,0)          
    frm.SetSelectionFormula(strrecordSelectionFormula)
    frm.DisplayToolbar(True)               
    frm.ShowExportOption(True)
    frm.ShowPrintOption(True)
    frm.ShowRefreshOption(True)
    frm.ShowPAgeNavigateOption(True)
    frm.ShowZoomOption(True)
    frm.ShowParameterPanelOption(True)
    frm.Show()
    Thanks in Advance
    Regards,
    Ramnath

  • Generate report using Word Report Generation VIs error

    When I Generate report using Word Report Generation VIs  ,the error is generated.
    This is  my Vi
    can somebody  tell the error reason?
    The attaché is Vi (one is 2011,other is 8.6)
    Attachments:
    report-8.6.vi ‏16 KB
    report2.vi ‏33 KB
    template.doc ‏40 KB

    Hi Ben64
                 Thank you! The problem is solved.
       BUT when I use the Word Easy Graph vi  ,the result is
    I want the Graph (curve),like as:
    How Can I do get the picture.
    I have other problem. I want to get default name for the new word file.
    liang

  • Create subscriptions for Powerview reports like SSRS reports in SharePoint 2010

    Hi,
    I have created the power view reports in SharePoint 2010 and now I want to create an email subscription for Powerview reports like SSRS reports in SharePoint 2010. Is it possible? If not, is there any workaround?
    Thanks,
    Suresh.

    Hi Suresh: 
    Unfortunately, you can't setup subscriptions in PowerView like you can on SSRS. I would suggest you to open up a connect item here and request for this feature - http://connect.microsoft.com/SQLServer
    Hope this helps.
    Faisal Muhammed My Blog

  • Pre-Purchase Question - Deploying Crystal Report to SSRS Report Server

    Our company has recently installed a SQL 2005 server for our accounting system.  I had intended going down the path of using SQL Reporting Services as our reporting tool and deploying them to the builtin Report Server.  However, I've been using Crystal Reports for years and find it much more user friendly for a non-programmer to use.  I can actually write a report in Crystal, SSRS took me 3 days to achieve very little, I believe it requires too much SQL reporting knowledge for a beginner.
    After spending many hours trawling the net looking for a solution to this problem, I found that Crystal comes as part of Visual Studio.  However, I also believe the version of Visual Studio that comes with SQL2005 is the basic version, and I'd need the Pro version to get the Crystal add on. 
    To this end, I've downloaded the trial version of Crystal 2008 and installed it.  I find I can write a report in Crystal, and then I can manually add that report to a SSRS project. When I open the Crystal Report within Visual Studio I can see all the correct Crystal toolbars and menus etc, so it would appear that the installation of Crystal for Visual Studio has integrated properly.  I can then deploy that report to the Report server and see the report on the web page.  However clicking to open the report then opens the full Crystal Reports application, instead of just displaying the report in the web page.
    I've been unsuccessful in finding a solution to the above deployment problem.  I'm seeking a solution so that my users can just see the report without Crystal itself opening up.  I've been advised that there is a Crystal Report Server that I can purchase, but I don't wish to go to that expense when we already have this functionality built into our SSRS server.
    Can you please advise if it's possible to deploy the Crystal report to the SSRS Report Server and then open the report within the web page without opening the full Crystal app, and if so what steps I would need to take to implement this. 
    If this issue can be resolved, I'll be more than happy to purchase the full Crystal 2008 package and forget SSRS as a bad idea.
    Sorry to be so long winded, I wanted to be clear what the issue is.  Any information /advice would be very much appreciated.

    Hello Diane,
    I would not know if Crystal Report can be used with SSRS but I know for sure that you can use the embedded Crystal Reports Version with comes with VS 2005 or VS 2008 to create reports and to display them in web and windows application.
    We have lots of samples how to do this in our [dev community|https://boc.sdn.sap.com/].
    Also, you can use [Crystal Reports 2008|https://boc.sdn.sap.com/developer/library/CR2008SDK] with MS SQL 2005.
    Other products like Crystal Reports server can also use MS SQL 2005.
    Please see our [supported platforms for CR 2008|http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000712280&_OBJECT=011000358700000675322008E] on windows.
    Hope this helps
    Falk

  • In Drill through report pass hyperlink value as parameter to another report using ssrs 2008 R2

    Hi All,
    I have one drill through SSRS report in which if I click one hyperlink in the summmary report it should be passed as parameter for detail report, like this....
    Summary:
    AccountType
    A1
    A2
    If I click A1 then that should be passed as parameter to detail report and display A1 data in detail report
    If I click A2 then that should be passed as parameter to detail report and display A2 data in detail report.
    Please give me some ideas or expression code to achieve this in using SSRS 2008R2. Its very urgent.
    Thanks,
    RH
    sql

    Thanks the folowing is my source data for the parameter I am including to the drill through
    SELECT DISTINCT
    case
    when EA_STATUS in ('E4', 'U4', 'P5', '02', '03', '04','B2','B3','B4','12')
    then CAST('Project' AS VARCHAR(15))
    else CAST('Non-Project' AS VARCHAR(15))
    end as EA_PROJECT_GROUP_DESC
    FROM TEAMS.FMPROD_V_EA
    As you can see it has only 2 values.So how do you suggest I wirte the expression to include in the report.
    The name of the parameter I will be using is EAProjectGroup.but below is the error I am getting trying to run the report
    rsMissingFieldInDataSet] The dataset Trends contains a definition for the Field EA_PROJECT_GROUP_DESC. This field is missing from the returned result set from the data source.
    [rsErrorReadingDataSetField] The dataset Trends contains a definition for the Field EA_PROJECT_GROUP_DESC. The data extension returned an error during reading the field. There is no data for the field at position 45.
    Preview complete -- 0 errors, 72 warnings
    what does the position 45 mean?

  • Project server 2007 - users amount in reporting services

    Hi!
    I wanted to know how/where can i found information about how many users defined as reporting services users (users that can access reports from SSRS)
    Thank you
    Ofir
    Ofir Marco , MCTS P.Z. Projects

    Hello,
    If it was me, I would get the ProjectUID and pass this into the MSP_EPM_DeleteProject stored procedure on the Project Server Reporting database rather than the Reporting DB rebuild. Some say the DB rebuild using the backup and restore option
    is "safer" but providing you have full DB backups beforehand then fully test it should be fine. To be 100% safe, I would raise a support ticket with Microsoft if you are not happy with using one of the two options. Regarding the questions you have
    - yes take full DB backups of all PWA database before either approach then fully test after. The reporting database will effectively get rebuilt using the backup then restore option for the enterprise custom fields - this might take a long time depending on
    the amount of data you have and the specs of the servers. Some links below for Reporting DB rebuilding:
    http://www.epmcentral.com/pjadmin/pjserver10/rebuilddb.php
    http://www.msprojectnow.com/Blog/tabid/142/entryid/166/Default
    Hope that helps :)
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Deployment of reports using SSRS

    I am using VS2012 and SQL Server 2012 and I am developing a WinForm application. What choices do I have for deploying the reports associated with the Solution. The obvious one is the Report Manager. Is there another option?
    Thanks,
    John

    Hi John,
    If you want to display a report in your Windows Forms application, we can use a ReportViewer control. The ReportViewer controls work in either local processing mode or in remote processing mode. In local processing mode, we can display the .rdlc report from
    a stream, or from an embedded resource in your application. In remote processing mode, we can display the .rdl report from a Reporting Services report server.
    If you want to deploy some reports from the Solution to report server, we can specify the report server and optionally the folders for reports and shared data sources so that we can publish the items in a Report Server project to a report server.
    References:
    Adding and Configuring the ReportViewer Controls
    Set Deployment Properties (Reporting Services)
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Problem in Display the Crystal report using Crystal report Viewer 2008

    Hi All,
    I have developed crystal web project with crystal report using Eclipse IDE. when I deploy this web application using Tomcat server 6.0 in Windows xp, Windows Vista.. It is working fine..
    But When I deploy it into Windows 2000 server ,  I am not able to see Last 2 columns of the report page in the Viewer.
    But When I tried to Export as Excel, I got all the datas in the Report and also when I preview the report in Eclispe IDE using crystal viewer plugin it is working fine in Windows 2000 server also..
    Thanks in Advance for your help..
    Regards,
    SathiyaMBPS

    Windows 2000 is not supported in current versions of CR. Check the platforms PDF file.

  • Project Server 2013 Default Pivot Excel report

    Hi All,
    We have configured the default excel report available in the BI Center. When we open the project overview report and select the project names we are getting the below error. But when we open the report in excel it is working fine. I have followed the steps
    in the below post, but still same issue.
    http://blogs.technet.com/b/excel_services__powerpivot_for_sharepoint_support_blog/archive/2013/01/31/powerpivot-for-sharepoint-browser-refresh-fails-data-refresh-not-supported-in-office-web-apps.aspx
    Thanks in advance, Taj

    Hello. The ODATA reports will not refresh / update in Excel Services when using Project Server on-premise, open these in Excel client to update. ODATA reports will refresh in Excel Services in Project Online (office 365). If on-premise, use either the
    OLAP cube or the Reporting schema database tables / views as the data source in the Excel reports if you these to be refreshable in the web. Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

Maybe you are looking for

  • Could not create task or type of type: validateTask

    While writing a master Ant script which calls the build.xml of individual BPEL processes, the following exception is thrown. validateTask: [echo] [echo] ------------------------------------------------------------- [echo] | Validating workflow [echo]

  • Please help!!! Maps is not working anymore in my N...

    Hello guys, I happen to use the maps before in find place under address. I can see the roads and blocks on the map moving when you try to use the cursor keys. But when I visited nokia site, I found there is the latest map loader to download latest ma

  • Ccmsping registration problem in Solution manager

    hi, I am installing CCMSPING agent to check "System Availability" from Solution Manager. In our system ladscape we have multiple systems on sigle host. for eg) TP7 & DW1 on single host cpafisb8. I have successfully registered the CCMSPING agent in So

  • Syncing selected playlists set but get more than are checked

    Recently changed to syncing selected playlists to make room on iPod as library got too big. Problem is that list of playlists on iPod is different from those that are checked in settings for iPod. More are on iPod than are checked. I thought it might

  • Nokia 5233 Storage Question. You need to know this...

    Hi, I'm not new to Discussions. PLEASE NOTE BEFORE READING THIS THREAD: I've digged EVERYwhere you can think of, so please have in mind that I come here because I really need to know this, I don't want to double-post anything or start a spam war or s