Project systems -  cannot output durations in query display data in cube

I am trying to create a query which displays the durations of the various levels of projects: wbs, network, network element etc..
I can see the duration data (i.e. 345 days) displayed in the infocube 0ps_c02 if I use the display cube content function.
I cannot get this data to display in any queries. I am using completely standard business content for the cube and I am using standard content key figures for actual and planned duration. I have also tried to create my own key figures on the duration key figure but no information is being output.
Any help would be much appreciated.

Hi,
Before running your report have you checked at cube level, all loaded request have reporting symbol?
roll up was finished?
Above issued happened to only query or all query's?
Thanks

Similar Messages

  • Export Project and Change the Duration Cause the Finish date error

    I use VB.NET to create a MS Project Instance and use this Instance to add task, and set task's Name, Start and Finish, the Project file is created successfully, and the Duration value will be automatically generated by Project, but if I change the Duration
    value in Project, the Finish date isn't correct, for example, if I set the the Start is "10/21/2014" and Finish is "10/31/2014", the generated Project file has a Duration value is "9 days", and if I change the Duration value to
    "2 days", the Finish date will be changed to "10/21/2014", why this problem happen? I have no idea about this problem.

    when you set Start is "10/21/2014" and Finish is "10/31/2014", the generated Project file has a Duration value is "9
    days" because it is taking Saturday and sunday as non working days.
    By default in Project server calendar both Saturday
    and Sunday are non workng days. If you want to make these day as working day you have to configure the calendar once you will do it then it will display duration value as 11.
    When you change the value then after changing value click on Calculate button so that project server can calculate value correctly it is not required to click on Calculate
    all the time but some time project server takes time to reflect the chnages but if you will publish the project it will calculate correctly and display proper finish date ( I
    change the Duration value to "2 days", the Finish date will be changed to "10/21/2014 as 10/23/2014)
    kirtesh

  • SAP Query Display data from 2 internal tables

    Hi ABAP Gurus,
    I am developing a SAP Query.
    I have created an infoset with the custom infotype 9050 and added the table ZPA9050 into the Infoset.
    How do I input values to the ZPA9050 fields? A checkbox for making a Selection field is not available in the Query (SQ01)
    For every pa9050 entry there exist multiple records of ZPA9050. I need to display the pa9050 fields in the 1st row and the corresponding zpa9050 fields in the subsequent rows.
    Kindly advise how to accomplish this task. 
    A quick reply is highly appreciated.
    Useful answers will be rewarded.
    Thanks
    Sriram

    Hi Deepika,
       Your reqirement is to print data from the two internal tables ..and if u r not using interactive alv  then u need to merge data into single internal table... if anycase u dont want to merge in the table itab as u told u can use another final internal table in which u can merge data from the two previous interal tables then u pass this final internal table to ur FM.
    Thanks & Regards
    Ashu Singh

  • Table for budget distribution undet project system.

    hi,
    do any one know the table for budget distribution under a project system?
    i need to get the data of budget assigned to a WBS level with the position ID, for a project. the transaction code to distribute the budget is by using transaction code - IM52.
    i posted this question in here before, but the answer i get is incorrect, as i need the table for budget under porject system. thanks

    Check these tables:
    PRPS  WBS (Work Breakdown Structure) Element Master Data
    IMPR  Investment Program Positions
    IMPS  Assignable Operative Objs for Capital Investment Positions
    IMAK  Appropriation requests - general data

  • Unable to display data no entry in the table without using Model clause

    Hi,
    I've an urgent requirement described below :
    The previously posted Question has been answerted using Model Clause:
    Is there any way out to solve it without using Model clause:
    I've a table named as "sale" consisting of three columns : empno, sale_amt and sale_date.
    (Please ref. The table script with data as given below)
    Now if I execute the query :
    "select trunc(sale_date) sale_date, sum(sale_amt) total_sale from sale group by trunc(sale_date) order by 1"
    then it displays the data for the dates of which there is an entry in that table. But it does not display data for the
    date of which there is no entry in that table.
    If you run the Table script with data in your schema, then u'll see that there is no entry for 28th. Nov. 2009 in
    sale table. Now the above query displays data for rest of the dates as its are in sale table except for 28th. Nov. 2009.
    But I need its presence in the query output with a value of "sale_date" as "28th. Nov. 2009" and that of "total_sale" as
    "0".
    Is there any means to get the result as I require?
    Please help ASAP.
    Thanks in advance.
    Create table script with data:
    CREATE TABLE SALE
    EMPNO NUMBER,
    SALE_AMT NUMBER,
    SALE_DATE DATE
    SET DEFINE OFF;
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('12/01/2009 10:20:10', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('11/30/2009 10:21:04', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('11/29/2009 10:21:05', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('11/26/2009 10:21:06', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (100, 1000, TO_DATE('11/25/2009 10:21:07', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 5000, TO_DATE('11/27/2009 10:23:06', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 4000, TO_DATE('11/29/2009 10:23:08', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 3000, TO_DATE('11/24/2009 10:23:09', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (200, 2000, TO_DATE('11/30/2009 10:23:10', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 7000, TO_DATE('11/24/2009 10:24:19', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 5000, TO_DATE('11/25/2009 10:24:20', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 3000, TO_DATE('11/27/2009 10:24:21', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 2000, TO_DATE('11/29/2009 10:24:22', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into SALE
    (EMPNO, SALE_AMT, SALE_DATE)
    Values
    (300, 1000, TO_DATE('11/30/2009 10:24:22', 'MM/DD/YYYY HH24:MI:SS'));
    COMMIT;
    Any help will be needful for me
    Regards,

    select sale_date,sum(sale_amt) total_sale
    from
    select empno,0 sale_amt,(sale_date + ao.rn) sale_date
    from
    select empno,sale_amt,sale_date ,(t.nxt_dt - t.sale_date) diff
    from
    select empno
    ,sale_amt,trunc(sale_date) sale_date
    ,trunc(nvl(lead(sale_date) over (partition by 1 order by sale_date),sale_date)) nxt_dt
    from sale
    ) t
    where (t.nxt_dt - t.sale_date) >1
    ) rec,(select rownum rn from user_objects where rownum<=200) ao
    where ao.rn <=(rec.diff-1)
    union all
    select empno,sale_amt,trunc(sale_date) sale_date
    from sale
    group by sale_date
    order by 1;
    ~~~~Guess this will serve the purpose...
    Cheers Arpan

  • Cannot get BI JDBC query to display results..

    My connection to the Oracle DB works fine. The system check in Portal returns OK. The system alias is visible in VC. I can browse tables and views. I can use the BI integration wizard to set up a query, and I am also able to review the output (see the actual table rows) within the query configuration tool.
    BUT - I can't get the data to be displayed in an output table. I have dragged a table from the output port of the BI query, the column names are what they should be. When deploying the model I get a warning: 'Element "BI query : "All Data : VC_test" is not in use'.
    What am I doing wrong here?
    Help MUCH appreciated!!
    Henning

    Hello
    It's necessary to add a "Start point" on the input of the SQL table. Something like:
    Start point => SQL table => output table
    Guido

  • Change display Date format from 06.2011 to june 2011 in output of Query

    Hi All,
                Change display Date format from 06.2011 to june 2011 in output of Query  Execution. i used time charcteristics 0calmonth in query, output display is coming 06.2011, i want to display output in june 2011 format, anyone tell me how to convert this Date format.

    Hi Nandish,
    as tibollo said you just need to mark 0CALMONTH with text in RSD1.
    Kindly note that you don't need to do data load for this object.
    It will automatically derive by system.
    Just change the Info object 0CALMONTH in RSD1, Go to Master Data/text column and check mark on with text.
    Then activate it.
    Regards,
    Ashish

  • Display ALV on click of custom filed in custom project system report

    Hi All,
    Need your guidence.
    I am working on custom project system drill down reports which is created using report painter CJE1/CJE2.
    Requirement is to display one custom field in drill down output and on double click event of that custom field , need to display one ALV.
    I am able to manage to add new custom field in output but not getting how to handle double click event as no user exit / or BADI getting triggered.
    Please let me know is it possible to develop such scenario or not?
    Thanks in advance.

    Hi Rachna,
    First let us know is custom field z? or standard?
    if z then for achieving this functionality please search same word key in abap forum as functionality is related to abap.
    if standard then share few screenshot what is already exist and what you want to add.
    Regards,
    Sanjeev

  • Display to projection system problem

    On several projection systems at school I hook up my MacBook with a VGA connection and it works fine. However, there are other projectors that give me difficulty. The display on the computer changes and both the monitor and the projector displays the information much larger than usual and I have to continually scroll back and forth to show the information. I have tried the F7 key. Is there something I might need to adjust before I make the connection to the projection?
    Can anyone help me?

    I would suggest checking the display settings in System Preferences when this happens. You should be able to adjust the settings there.

  • Spooling the output of a Query with out displaying the rows

    Hello All,
    Is it possible to spool the output of
    a query/dbms_output.put_line with out displaying
    the Query output on the console.
    In my case,list of rows in the output is huge, I want
    to eliminate displaying the output of query
    so that spooling will complete faster.
    Thanks in advance.
    -Srini

    You can do:
    SET TERMOUT OFFIn your script before doing the spool command.
    You will have to write your query as a .SQL script and run it from SQL*Plus in order for it to work the way you expect.
    sqlplus -s username/password @query_script.SQL

  • Known Issue: MIDL fails to compile IDL files in UAP projects. Gives following error: midlrt : error MIDL4034: Failed to load a dependency file. Windows.winmd (HRESULT:0x80070002 - The system cannot find the file specified. )

    Visual Studio gives the following error:
    midlrt : error MIDL4034: Failed to load a dependency file. Windows.winmd (HRESULT:0x80070002 - The system cannot find the file specified. )
    This is because Visual Studio is looking for a WinMD file that contains the base types.  Unfortunately the metadata path passed by default to MIDL through Visual Studio does not resolve to the correct file.

    Work around:
    Update the "Additional Metadata Directories" for MIDL to include the Windows.Foundation.FoundationContract.WinMD
    To update the “Additional Metadata Directories” in Visual Studio, do the following:
    1)  Right click on your C++ Project file.
    2)  Choose properties.
    3)  Under Configuration Properties, click MIDL
    4)  Under MIDL choose “Command Line”
    5)  In the Additional Options text box enter:
    /Metadata_dir "C:\Program Files (x86)\Windows Kits\10\References\Windows.Foundation.FoundationContract\1.0.0.0”
    or on X86 machines
    /Metadata_dir "C:\Program Files\Windows Kits\10\References\Windows.Foundation.FoundationContract\1.0.0.0”

  • I would like to ask about imovie. my project cannot output and how can i divide my project in imovie into two part??, i would like to ask about imovie. my project cannot output and how can i divide my project in imovie into two part??

    i would like to ask about imovie. my project cannot output and how can i divide my project in imovie into two part??, i would like to ask about imovie. my project cannot output and how can i divide my project in imovie into two part??

    Go to the Project Library View and select your project.
    Then FILE/DUPLICATE PROJECT and give the duplicate a name like "your name - part 1".
    Then duplicate it again and give the duplicate a name like "your name - part 2"
    Now you can open "part 1" as a project and delete everything that is in part 2.
    Open "part 2" as a project and delete everything that is in part 1.

  • Error message on my development workstation: The system cannot find the file specified.

    Post Author: cseverin
    CA Forum: Crystal Reports
    Hi,
    I am currently developing an ASP.NET website using Visual Studio.NET 2005. I am using the .NET 2.0 framework, VB.NET as my programming language and I connect successfully to a SQL Server 2005 database.  I can select, insert, update and delete data from the database elsewhere in my project, so I know basic connectivity isn't an issue.  The problem seems to be with Crystal Reports. 
    I created a folder called 'Reports' in my project and added a Crystal Report file (OpenFiles.rpt) to it.  I designed the report and initally used a hard-coded SQL query as its datasource so I could quickly get the database fields onto the report and preview them.  All worked fine. 
    To make the report accessible to the rest of the website, I created an .xsd dataset file containing the three tables (and their corresponding tableadapters) that the report requires and then redeveloped the report using the dataset as the datasource for the report.  After doing this, the preview no longer worked.
    Next, I added a page to the website and dragged a Crystal Report Viewer Control onto it.  In the code behind the page I wrote:
    Option Strict On
    Imports System.Data
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Partial Class Reports
         Inherits System.Web.UI.Page
         Private objOpenFilesreport As OpenFilesReport
         Private rptOpenFiles As ReportDocument
         Private strLastErrorMessage As String = Nothing
         Private errLastException As Exception = Nothing
         Dim strFileKey As String
         Dim strJurisdictionCode As String
         Dim strStaffId As String
         Dim strReportId As String
         Private Sub ConfigureCrystalReports()
              Dim reportPath As String = Server.MapPath("OpenFiles.rpt")
              Dim rptopenfiles As New ReportDocument
              rptOpenFiles.Load(reportPath)  <== I checked this during execution and the value correctly points to the OpenFiles.rpt file in the Reports     folder of my project
              Dim ConnectionInfo As ConnectionInfo = New ConnectionInfo()
              ConnectionInfo.DatabaseName = my database
              ConnectionInfo.UserID = login id of user
              ConnectionInfo.Password = user's password
              SetDBLogonForReport(ConnectionInfo, rptopenfiles)
              CrystalReportViewer1.ReportSource = rptopenfiles
         End Sub
         Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
             ConfigureCrystalReports()
         End Sub
         Private Sub SetDBLogonForReport(ByVal ConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
              Dim myTables As Tables = myReportDocument.Database.Tables
              For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
                   Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                   myTableLogonInfo.ConnectionInfo = ConnectionInfo
                   myTable.ApplyLogOnInfo(myTableLogonInfo)
              Next
         End Sub
    End Class
    I added a hyperlink to one of the existing pages on the website to navigate to this page with the report viewer on it.  When I run the website in Visual Studio and click on the hyperlink I get the following:
    Server Error in '/MyTest' Application.
    The system cannot find the file specified.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Runtime.InteropServices.COMException: The system cannot find the file specified.Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace:
    &#91;COMException (0x80004005): The system cannot find the file specified.
    &#93;
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +126
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +442
    &#91;Exception: Load report failed.&#93;
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +513
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +1378
       CrystalDecisions.CrystalReports.Engine.ReportDocument.EnsureLoadReport() +149
       CrystalDecisions.CrystalReports.Engine.ReportDocument.get_DataDefinition() +85
       CrystalDecisions.CrystalReports.Engine.ReportDocument.get_ParameterFields() +158
       CrystalDecisions.Web.CrystalReportSource.BindControlParameter(Parameter parameter) +130
       CrystalDecisions.Web.CrystalReportSource.DataBindParameters() +191
       CrystalDecisions.Web.CrystalReportSource.EnsureParameters(Boolean forceDataBind) +90
       CrystalDecisions.Web.CrystalReportSource.LoadCompleteEventHandler(Object sender, EventArgs e) +47
       System.Web.UI.Page.OnLoadComplete(EventArgs e) +96
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +4086
    Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832 
    Any ideas, anyone?
    Also, assuming I can get past this error, I will need to figure out how to fill the tables in the .xsd dataset file.  I have written a class for the dataset that includes functions that populate the tables in the dataset from the database by executing SQL queries.  But how do I call these functions at the time the report is run?
    This is my first Crystal report written in .NET and I've been struggling with it for days now.  Any help would be most appreciated!
    Thanks very much!
    Chris Severin

    hello, the error message is obviously coming from one of the installed mcafee extensions. please directly contact mcafee technical support - they can likely give you more detailed guidance and are the only ones who can fix bugs or make necessary adjustments in the addon.

  • Message 069 - Output could not be displayed (it may not be complete)

    Hi Gurus,
    KIndly help me please. Upon trying to print a billing document in VF31, the message Message 069 - Output could not be displayed (it may not be complete) appears and as a result I cannot print preview the document. However, I tried doing the print preview in our testing environment and I didn't experienced the same error. KIndly help me what configuration should I compare the two systems. Thank you in advance
    Thanks and regards,
    Happy

    Hi
    First of all check wheather condition record has been maintained or not in VV32.If not maintained then maintain in VV31.Also check wheather any batch job is running or not for that output type.If it is running then there are chances to get that message.You might of not faced the same problem in your sandbox server because you might have manually entered the output type
    Regards
    Srinath

  • Report-Report Interface from BW to Project Systems

    I'd like to jump from BW reports based on 0PS_C04 into the corresponding R/3 line items. If I specify CJ74 as the transaction target then run the BW report and choose the corresponding option from the 'GoTo' menu the following message is displayed. I find this very confusing -- it seems to be saying that the report behind the transaction cannot be used in the report-report interface, but in the procedure says always use the program in the report-report interface.
    Can anybody understand what the message is telling us? Can anyone tell me how to jump to an R/3 line item report from BW Project System cube?
    Thanks
    Robert Williams
      You cannot use the report-report interface to call up report RKPEP000                                                                               
    Message no. HF 800                                                                               
    Diagnosis                                                                               
    Line item report RKPEP000 is not suitable for the report/report        
          interface.                                                                               
    Procedure                                                                               
    Always enter RKPEP000 as the receiver report for project line items in 
          the report/report interface. This program uses the transfer parameters 
          to determine which line item reports can be accessed.

    Hi
    I dont know whether you have solved the problem or not yet
    But i came up with the same issue....
    Use interface program RKPBW000 instead of RKPEP000 in the RRI settings.
    OSS Note : 356166
    Thanks

Maybe you are looking for

  • ORA-00600: internal error code, arguments: [25012], [5], [524]

    Hello, We are getting ORA-00600: internal error code, arguments: [25012], [5], [524], [], [], [], [], [] in alertsid.log file. Content of /oracle/PRD/saptrace/usertrace/ora_1220283.trc ======================================================= SESSION I

  • Error loading plugins. AISaveForWeb.aip

    The problem with my computer set to Adobe Illustrator CS5. 20/10/1910 after injection of regular updates adobovskih Illustrator crash when started starts at the registration window. Since I still trial version, then all these days to choose it and th

  • Installing Oracle 9i RAC under Windows XP

    hi, all? I am not good at Oracle, but I have to install Oracle 9i RAC on Windows XP(sp1) machine. Is it possible to install it? if so, is there any guide documents about it? All documents which i found are talking about installing under Linux or win2

  • API for Updating fileds in cn_payment_transactions_all table(OIC module)

    Hi, I have a requirement to put the Sales Commission Lines (Oracle Incentive Compensation module) on hold for a particular Salesperson if the corresponding invoice line has an amount due not equal to zero. Now to put the commission lines on hold I ne

  • Setting up "Mail" on iTouch (new update)

    I downloaded the new update along with the new widgets etc. However when i go to "Mail" I only get Yahoo Mail, Gmail, Mac mail, and AOL mail. Could anyone please explain to me how to setup the mail for hotmail? I am having some troubles setting it up