Runtime calculation in statistics report

Hello friends,
What are all the fields used for query run time calculation and run time for the data load in BW statistics cube or in RSDDSTAT (Both)
Thanks
Srini

Hi,
this is a known issue. Please check these corrective notes:
1494404 - Using Webi query filters based on dates using "Greater than" and "Less than" does not work properly when based on SAP BEx.  
1467239 - Date prompts produce incorrect result with 'Between', 'Greater than or Equal' or 'Less than or Equal' filter operators when a Webintelligence report is based on OLAP universe  
1614245 - Prompts on date ranges return values outside the given range in Web Intelligence reports based on a SAP BW data source. 
Regards,
H

Similar Messages

  • BEA-473225: Aggregator rejected statistics reported by server...

    I am getting occasional errors and warnings associated with the WLI-Monitoring Runtime subsystem in my WebLogic logs supporting my ALSB installation. Errors and warnings include:
    BEA-473224 Aggregator did not receive statistics from...
    BEA-473225 Aggregator rejected statistics reported by...
    BEA-473233 Timer (checkpoint) has been triggered...
    I could not find reference to these errors in any message manual. Can anyone provide additional insigt into what these messages indicate?

    I am using ALSB version 2.6. Of the three errors (warnings) mentioned in my original post, the one occurring most often is BEA-473233. I see this warning just about every two hours. About once or twice a day it does seem to work and no warning message is generated. The other two messages (BEA-473224 and BEA-473225) have shown up about 12 times each in the last 2 weeks.
    I did find reference to these messages in the ALSB documentation, but their description is a bit thin. The messages appear to indicate some sort of communcation issue between the managed servers, but I cannot detect any adverse impact from these messages. There is no other indication of communication issues between the managed servers in the cluster that I can see.

  • Shared DateVar in Subreport and datediff calculation in Main Report?

    Hello experts,
    I am using CRXI sp2.  I have a report that contains two subreports for different dates in the same date field that are identified by a Service Code.  The subreports have been placed in the same group footer 1a to be displayed and the calculation resides in the main report group footer 1b.  The shared variables are as follows:
    whileprintingrecords;
    shared datevar Codedate5473;
    Codedate5473:={@Codedate5473};
    and
    whileprintingrecords;
    shared Datevar Codedate5623;
    Codedate5623:={@Codedate5623}
    The main report has the following calculation is in group footer 1a.
    Whileprintingrecords;
    Shared numbervar daysbetween;
    if (isnull({@Shared 5623})or isnull({@Shared 5473})) then 0
    else daysbetween:= datediff("d",{@Shared 5623},{@Shared 5473})
    This returns negative numbers as well as calculations where one of the shared variables is null.
    I reset the calculation in the report header as well.
    Thanks for your help in advance.
    Kevin

    Hi Kevin,
    I can reproduce your issue, As per my knowledge the crystal will make some issues in null value computation as well as  shared variable  computation
    In your report i can see , you tried to access values from subreport to main report through shared variable. that will make problem. we can access values from main report to subreport without any issue using shared..dont ask me the reason..i am not the right person to say that... lol.
    The another wrong thing  i was found in your formula is , you are not resetting the shared variable any where.. so once the date field is null, the shared variable returning the previous value.
    So this is the solution for you..
    1,You have to add one more subreport for displaying your result., Lets say 'Sub report3'
    and create a formula, like.(Same which you have write before for the result)
    shared datevar Codedate5473;
    shared Datevar Codedate5623;
    numbervar daysbetween;
    WhilePrintingRecords;
    daysbetween:= datediff("d",Codedate5473,Codedate5623);
    daysbetween;
    2, Re- write your first two formulas like this
    For Subreport1,
    WhilePrintingRecords;
    shared dateVar Codedate5473;
    if isnull({Codedate5473}) then
    Codedate5473:=date(0,0,0)
    else
    Codedate5473:=date({Codedate5473});
    For subreport2
    WhilePrintingRecords;
    shared dateVar Codedate5623;
    if isnull({Codedate5623}) then
    Codedate5623:=date(0,0,0)
    else
    Codedate5623:=date({Codedate5623});
    Hope this will works for you,
    Cheers,
    Salah.
    Edited by: salahudheen muhammed on Aug 7, 2009 1:05 PM

  • Vendor Statistics Report ALV

    Hi,
    I am looking for a Vendor Statistics report developed by an ABAPER which basically shows how late a PO was, If full quantity was GR etc basically a Vendor Evaluation report,
    Points will be awarded any Vendor Evaluation Type report will be helpful ALV format pref
    Thanks
    Adeel

    Hi Adeel
    you can get a start from this:
    EKPO , JSTAT will be you might be helpful
    Get the object number... for the order...
    CALL FUNCTION 'STATUS_READ'
    EXPORTING
    client = sy-mandt
    objnr = p_objnr
    only_active = 'X'
    TABLES
    status = lt_status
    EXCEPTIONS
    object_not_found = 1
    OTHERS = 2.
    SELECT txt04 FROM tj02t
    INTO lv_status
    WHERE istat EQ wa_status-stat
    AND spras EQ 'E'.
    ENDSELECT.

  • Crystal reports- Calculation between two reports

    Hi Experts
    I have designed a sales and purchase transaction report using crystal reports and i have designed another report for accounting transactions like Excise Duty payable and receivables, Vat payable and receivables, Expenses(like EB, Maintenance) and so on. Finally I added accounting report as sub-report into First Report.
    My question is, is it possible to made some calculations between sub-report and main report.
    Hope some solutions from you.
    By
    Kala

    Hello,
    right upto the linking is good?
    Right now you have to create a formula (which you might have already done for "Total expenses", you just need to alternate it slightly.
    Example:
    On 2nd report (subreport) You might have a formula like given below.
    Instead of Numbervar CAvg, which is the last shown value in the below formula, you have to make it like Shared Numbervar CAvg.
    Whileprintingrecords;
    Numbervar TJs;
    Numbervar TotalJobs=0;
    Shared Numbervar CAvg;
    Shared Numbervar CAvg=0;
    TotalJobs := DistinctCount({lab_credits.credit_no},{lab_credits.reason_code}); 
    CAvg:= TotalJobs /{@WorkingDays};
    TJs:=TJs + CAvg;
    CAvg
    Do your calculation above.
    Now in the main report you will create another formula which will look like below.
    Whileprintingrecords;
    Shared Numbervar CAvg;
    Numbervar TAvg:=fieldname;
    Numbervar TotalBoth:= Shared Numbervar CAvg+ Numbervar TAvg;
    TotalBoth;
    You will have a reset formula which will be placed ontop of the report header , group header if you are using grouping like this
    Whileprintingrecords;
    Shared Numbervar CAvg:=0;
    SHared Numbervar TAvg:=0;
    bearing in mind that we do not have to declare CAvg field here as it is being shared.
    Hope this helps
    Regards
    Jehanzeb

  • Gather Schema Statistics Report taking more than 13 hours to complete is it normal?

    I have run Gather Schema Statistics Report at 9 pm and it completed on 11am next morning. It almost took more than 13 hours, is this behavior normal.
    I have used the following parameter.
    Schema name: ALL
    Estimate percent:50
    Backup Flag :NOBACKUP
    History Mode :LASTRUN
    Gather Option:GATHER
    Invalidate Dependent Cursor : Y
    My database size is about 250 GB.
    Please reply

    Gather schema stastics is erroring out when i'm using the GATHER_AUTO option with 10%.
    Here is the log file
    +---------------------------------------------------------------------------+
    Application Object Library: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    FNDGSCST module: Gather Schema Statistics
    +---------------------------------------------------------------------------+
    Current system time is 13-AUG-2013 10:42:12
    +---------------------------------------------------------------------------+
    **Starts**13-AUG-2013 10:42:12
    ORACLE error 20001 in FDPSTP
    Cause: FDPSTP failed due to ORA-20001: SYS_NTGNSVL1S+OCZGRAAHKD9MYG== is an invalid identifier
    ORA-06512: at "APPS.FND_STATS", line 774
    ORA-06512: at line 1
    The SQL statement being executed at the time of the error was: SE
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    In GATHER_SCHEMA_STATS , schema_name= ALL percent= 10 degree = 8 internal_flag= NOBACKUP
    ORA-20001: SYS_NTGNSVL1S+OCZGRAAHKD9MYG== is an invalid identifier
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 13-AUG-2013 10:43:29
    +---------------------------------------------------------------------------+
    I have used the following parameters
    Schema name: ALL
    Estimate percent:10
    Backup Flag :NOBACKUP
    History Mode :LASTRUN
    Gather Option:GATHER_AUTO
    Invalidate Dependent Cursor : Y

  • ActiveSync Device Statistics report for users does not show Device Phone number

    HI ,
    I have trying to run a Active-sync Device Statistics report to get all the details for active Sync users, but report show only last four digit of  device phone number for few users and for most of the users its blank.
    Is there way if we can get Device Phone number for active sync users.
    Thanks,
    Pradeep Kumar

    Hi,
    Yes i have tried all of these transactions, these all relate to individual sales orders or production order costs.
    Im looking for a report showing the costs for a range of sales order line items, exaclty like KOB1 but for sales orders.  KVBI does exactly what I want but the material filed is not populated.
    Is there a way to populate this field as part of the settlement?
    Cheers
    Phil.

  • Runtime calculations in PDF forms

    Good day!
    My task is to make a PDF form of the quantity of the material on the factory with some runtime calculations. Just like these:
    MATNR | MAKTX | LGORT | LABST | MEINS
    100 | Material_1 | 0001 | 100 | KG
    100 | Material_1 | 0002 | 300 | KG
                     In general :  400
    200 | Material_2 | 0001 | 50  | KG
                     In general :  50
    300 | Material_3 | 0003 | 150 | KG
    I've made the layout to look exactly like this but i don't know how to make calculations. I think that the solution is to use FORMcalc but regretfully i haven't find it yet.
    Thank you!

    -solved-

  • What is "Default" in Usage Statistics report detail?

    I am running RoboHelp Server 8 and am outputing the "Usage Statistics" report which has an option to report on Browsers and Operating Systems. In the results for both is a category called "Default" (see images below). Does anyone know what this means? If you can answer that, maybe you can also tell me what the "Unknown" operating system is? I suspect this maybe an Apple Mac user as I know one of our users has tried accessing the help through the application installed on a Mac.
    Read the RoboColum(n) for a tips, tricks and musings on the Technical Communication Suite products.
    Follow the RoboColum(n) on Twitter

    Further to my previous post, I can confirm that the "Unknown" operating system is definitely NOT an Apple Macintosh user. Having run the report on another area, a seperate "Macintosh" category is displayed thus leaving me in the dark again. If anyone can shed some light on this and the "Default" category I'd be very grateful.
    Read the RoboColum(n) for a tips, tricks and musings on the Technical Communication Suite products.
    Follow the RoboColum(n) on Twitter

  • SP2-0611: Error enabling STATISTICS report

    Hai
    I created table test2 with 20,000 records,and trying to set autotrace on in order to get statistics ,i got the below error.
    SQL> SET AUTOTRACE ON
    ERROR:
    ORA-24315: illegal attribute type
    SP2-0619: Error while connecting
    SP2-0611: Error enabling STATISTICS report
    Any idea about this
    Regards
    mohan

    SP2-0619 Error while connecting
    Cause: An error occurred while AUTOTRACE attempted to make a second connection to the database instance.
    Action: Check that the database limit on number of active sessions has not been exceeded.

  • Recruiters statistics report- using APPLICANT statistics report

    <b>Hi experts!, 
                     I want to get the reports of the Personal officer ( recruiters) in Applicant Statistics report. But in the standard report I can choose only one personal officer and get the report. Could any one help me how to get the reports for all the personal officer ( for eg. 10 persons).
    The standard report prg is : REPORT RPAPL005
    could any one help me...
    Thanks and regards,
    Sunil</b>

    Thx for the reply,
                         Prakash, but I want a report which consists of name of the recruiter and their reports on applicatios...in applicants reports I tried but I can view overall view of the report but not like a report which displays the name of the personal officer and their report.
    Could you please elaborate your help and let me know the solution.
    regards,
    Sunil

  • KM Statistics Report

    Hi -
    Under KM /Admin Guide / Content Management / Reports, I see a Statistics Report described:
    Use
    You can use this report to evaluate and search the content of KM repositories using different criteria. The report searches all repositories, regardless of whether indexes exist.
    You can use this report to answer the following questions:
    ·        How many files larger than 5 MB are located in the documents repository?
    ·        How many ZIP files are located in the documents repository?
    ·        How much memory do the files that have been created beneath /documents/Public Documents in the last 14 days need?
    My question:  Where can I find this report?  I see it under Content Administration / KM Content, but where would I actually run it so that I can specify the settings I want to use when I run the report, e.g., "Maximum number of results"?
    Thank you!
    Message was edited by: Jo De Hart

    Jo,
    I'm glad I could help you! Would you be so kind to thank also "SDN"-way? For this just<b> mark the thread as a question</b> an rewards some points! See this link for some more information regarding the "Points Reward System": Spread the Love!
    Thanks,
    Robert

  • Garnishment Statistics report

    Hello All,
    Can anyone explain how to execute Garnishment Statistics report . I  would like to get the employees  numbers with name who have an active Garnishment . when i execute it, i just  get Personnel subarea  with number of employees who have an active Garnishment. I would like to know, is there a way to get into detail of employee number  and name? Appreciate your help.

    The Garnishment Statistics Report is programmed not to give employee details, but rather Statistics.
    Check in SAP's Menu, there is an other Garnishment Report that gives details on employees and their garnishments, including the history of remittances and current debt.
    The big caveat is that there is probably strict security on that report as only a few persons should be able to see all that confidential information.

  • Movement Statistics Report setup

    I am doing the setups for Movement Statistics Report but no data is coming can any body help me.

    Review Note: 400098.1 - 11i Movement Statistics Intrastat report is not generating any data
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=400098.1

  • How to give the calculation in Finacial report templates asper indian local

    Dear experts
    help me, how to give calculation in Financail report Templates in SAP b1 for calculating  Gross profit and Netprofit seperately.  I am facing some error while giving formula in financial report templates.
    Thanks
    Regards

    Hi Mathiladath,
    Try this,
    ->> Financials. -> Financial Report Templates in that follow this steps.
    1.Report. -> Choose (Profit and Loss)
    2.Template.-> Define New -> Give the name for template.
    3.And click the Generate Chart of account button in bottom right.
    4.put the Tick mark in Subtotal Check box
    5.now u can see Formula button (Click and Open the Formula Definition window and put the Formula)
    using this button create appropriate formula for your requirement(ask help your A/C department)
    6.Chose this template in P/L.
    Regards,
    Madhan.

Maybe you are looking for