Result values are coming as total instead of average.....

Hi Experts,
     In my query i have three key figures and three calulated key figures.....In the output except for one key figure the values for others wont change for an employee... so the total for the other key figures should not come as the sum of the individual ones...except for one key figure ...
emp id   wage type  leavestart date  leave enddate      amount    lengthofservice  age  noof leavedays
101         2440          01.01.2009        03.01.2009        1000           45                50         3
101         2440          06.01.2009        07.01.2009        1000           45                50         2
so in my output for total for amount it should be 1000 ..length of service 45 ..age 50....no of leave days 5...
so i made for these three key figures in calculations tab
           calculate single value as hide....
           calculate result as  average........  for amount,length of service,age....
for noofleave days
       calculate single value as nothing defined
       calculate result as  nothing defined....
in the output for result rows for these three key figures result is coming as 2000,90,100..........indiviuda key figures are hided properly but the result rows are getting summed ....instead of average....
for no of leave days it is coming correct.............
when i executed the query in rsrt ..i am getting warning 'calculate result as ...not executed'.......why this is not comign... i have done similar thing in another query ..........there it is workign fine...........
In the aggregation tab for these key figures at query level...exception aggregation is key to standard.....
please through some light..
Regrads
vamsi
Edited by: vamsi talluri on Apr 2, 2009 12:13 PM

Hello,
You can try the following:
Remove the calculate result as setting for the three KFs.
In exception aggregation set property to average with ref char as leave start date.
Check if it works.
If the above dosent work, set reference char to emplyee ID and check.
Either one of them has to work
REgards,
Shashank
Edited by: Shashank Dighe on Apr 2, 2009 9:03 AM

Similar Messages

  • Unable  to  found from where does the Plan values are coming

    Hi Gurus,
    I am running the report Z_ALR_87012993 and getting values for Actual and Plan,
    i want to know from where does these planned values are getting into account and where to see that planned amount for that cost element (order).
    Regards,
    Imran M Arab

    Thank You All,
    My problem solved,
    I  found the T-Code for that is KOC4, in this we can see the planned values for production orders.
    Thanks again for your valuable replies.
    Regards,
    Imran M Arab

  • I bought apps and they are coming up blank instead a picture on the icon

    ibought some apps for my i pod and they are coming up blank with no pics on the icons? What can i do?

    turn off your ipod then turn it on again and it should be fine!!

  • How should I set up my VI so that I can use the linear fit coefficient data analysis program, when my values are coming from while loops within a sequence structure?

    I'm attempting to create a calibration program, using the printer port, and a Vernier Serial Box by modifying a calibration program designed for the serial box.
    There are six calibration points, and to collect them, I have it controlled by while loops so that the numbers are taken when a button is pushed, and this is inside a sequence structure so that I can get the six different points. I feed these numbers into two different arrays (for x and y values) and then try to use the linear coefficient analysis on these points, but the values for the slope and intercepts it returns are not correc
    t.
    If I cut out the array and coefficient analysis, and feed the same numbers in directly without the while loop and sequence structures, it produces the proper values... I don't know why the numbers it is producing are different, and I'd really like to know.
    Thanks,
    Karinne.

    I would use a data manager sub-vi that would be called by each from of the sequence structure that produced a data point. The data manager sub-vi could auto append new items or could place items in a specific entry of an array. Later on when you want to calculate the linear fit, call the sub-vi to return the array of values.
    Stu

  • IN MB5T values are coming Nil

    Hi Expert
    In MB5T,Amount in LC Crcy and Net order value currency is coming Nil.
    I check in PO history tab for Mvt Type 641 i m getting the value, but in MB5T its not showing
    Regard
    Nabil

    Looks like this is bug, could you check if note 119669 and 203172 could solve your problem?

  • Eigen values are comeing but not in order

    import Jama.Matrix;
    import Jama.EigenvalueDecomposition;
    public class Eigenvalues1 {
    public static void main(String[] args)
         double[][] vals = {{64.45,0,0,0},{0,64.45,0,0},{0,0,64.45,0},{0,0,0,37.08}};
         double[][] vals1 = {{71284.72,-35642.36,0,0},{-35642.36,71284.72,-35642.36,0},{0,-35642.36,71284.72,-35642.36},{0,0,-35642.36,35642.36}};
         double[][] vals3 ;
         Matrix A = new Matrix(vals);
         Matrix b =new Matrix(vals1);     
         Matrix x = A.solve(b);
         EigenvalueDecomposition e = x.eig();
         System.out.print("A =");
         A.print(9, 6);     
         System.out.print("B =");
         b.print(9, 6);
         // System.out.print("X =");
         // x.print(9, 6);
         Matrix V= e.getV();
         System.out.print("V =");
         V.print(9, 6);
         Matrix D = e.getD();
         System.out.print("D =");
         D.print(9, 6);
         vals3=D.getArray();
         System.out.println(vals3[0][0]);
    A =
    64.450000 0.000000 0.000000 0.000000
    0.000000 64.450000 0.000000 0.000000
    0.000000 0.000000 64.450000 0.000000
    0.000000 0.000000 0.000000 37.080000
    B =
    71284.720000 -35642.360000 0.000000 0.000000
    -35642.360000 71284.720000 -35642.360000 0.000000
    0.000000 -35642.360000 71284.720000 -35642.360000
    0.000000 0.000000 -35642.360000 35642.360000
    V =
    -0.300181 0.587158 0.244871 0.612215
    0.520631 0.475758 0.453828 -0.408560
    -0.602797 -0.201664 0.596222 -0.339563
    0.524853 -0.639161 0.651169 0.635167
    D =
    2065.205168 0.000000 0.000000 0.000000
    0.000000 657.947244 0.000000 0.000000
    0.000000 0.000000 81.111020 0.000000
    0.000000 0.000000 0.000000 1475.105837
    bookish eigen values
    81.1110200.000000 0.000000 0.000000
    0.000000 657.947244 0.000000 0.000000
    0.000000 0.000000 1475.105837 0.000000
    0.000000 0.000000 0.000000 2065.205168
    this are the correct eigen values according to book as well as Matlab program

    Again, as in [|http://forums.sun.com/thread.jspa?threadID=5404814] and [>>this thread<<|http://forums.sun.com/thread.jspa?threadID=5404880], ask them. Or, at least identify, clearly in the subject that this post conerns the JAMA library and only the Jama library.
    But once again, did you bother to read the docs for that class? Does it say anything about any kind of ordering?

  • In OBIEE Report Grand Total instead of Average(Average)  use Sum(Avg)?

    Hi All,
    In OBIEE Report Grand Total average always shows Average of average (Default) "avg(avg)" , can i overwrite this functionality to sum of average "sum(avg)".
    Thanks in advance
    Regards
    Kandasamy

    Hello,
    You can try the following:
    Remove the calculate result as setting for the three KFs.
    In exception aggregation set property to average with ref char as leave start date.
    Check if it works.
    If the above dosent work, set reference char to emplyee ID and check.
    Either one of them has to work
    REgards,
    Shashank
    Edited by: Shashank Dighe on Apr 2, 2009 9:03 AM

  • Values are not coming in report S_ALR_87013558

    Hi,
    I am running the budget report S_ALR_87013558. In that report except budget column, other values are coming(Actual,Comiitment, remordpla, assigned,available)....
    BUt I have assigned the budget..It is showing properly in S_ALR_87013557.
    In S_ALR_87013228 report, available it is showing in negative.
    How to rectify this issue?
    Regards
    Suresh

    Hi Virendra,
    Thanks for ur reply.
    I have ran CJEN for the project. But still it is showing the same in S_ALR_87013558 report.
    But the budget value is coming properly in S_ALR_87013557 report.
    How to goahead???
    Regards
    Suresh

  • Keyfigure values are incorrect in BEx Query based on infoset

    Hi Experts,
    I have created a infoset using 3 DSO's . 1 main DSO( from which i rquire all the data) is linked with other 2 DSO's using left outer join. DSO is linked with other 2 DSO's with a field return GUID .
    Now when i am executing a query , key figure values are coming incorrectly because suppose if there is 1 record related to
    RETURN GUID in main DSO and there are 4 reords in 2nd DSO with the same RETURN GUID then in infoset data 4 rows are getting created with the replication of all the fields from first DSO against those 4 rows. So in query result amount field is getting 4 times of its original value because of aggregation of all those 4 rows.
    I don't have set of key fields by which i can link the all the DSO's to get unique linking of records.
    How can i get the amount only one time in query result?
    Hope i am clear.
    Please help. I need to create report urgently.
    Regards,
    Ajay

    Hi Ajay:
    Please take a look at the blog series provided by Sunmit Bhandari.
    Infoset Keyfigure multiplicity Part 1
    /people/sunmit.bhandari/blog/2009/04/14/infoset-keyfigure-multiplicity-part-1
    Infoset Keyfigure multiplicity Part 2
    /people/sunmit.bhandari/blog/2009/04/14/infoset-keyfigure-multiplicity-part-2
    Infoset Keyfigure multiplicity Part 3
    /people/sunmit.bhandari/blog/2009/04/14/infoset-keyfigure-multiplicity-part-3
    Regards,
    Francisco Milán.

  • Results fields are comming in display mode

    hi guys,
    While doing results entry for inspection lot ,the results fields are coming in display mode for some material numbers.some times its showing correctly(change mode).If i double click the result field its go to another screen there i can able to enter the result value.I checked inspection plan,lot and material but still the problem is coming,please help me to solve this problem.
    thanks in advance
    S.Murali

    Hi,
    You can check the condition in BADI at Display Button Click.
    For Example.
    If F_Code = 'BUTTON_DISPLAY'.
    x_input =  ' '.
    x_display = 'X'.
    endif.
    Regards,
    Sachin

  • Results Values displyed as Stars in the out put Cell

    Hi Gurus. I have one question for you.
    After execution of my query, in the results columns the values are displayed as Stars () instead of values.But when we place the cursor on the particular cell (Star ()),The values are displaying in the formula bar of the excel sheet.
    How can I get the direct values in the results area?
    What I need to do?
    Regards,
    Uma.

    Thanks Anil,
    Yes, I have applied the NODIM & NDIV functions as well. But still it's giving the same, I guess the about functions will be used when we will get the values of "X".
    Can I use any other functions to solve this issue?
    I think the definition is correct at query level; we can deliver the same to the user.
    Please suggest me, if wrong.
    Regards,
    Uma.

  • How to disappear the sub Report if the values are null from db..

    hi.
    i have one requirement ie.
    i put two sub reports at report footer section..
    sub report values are coming from the data base
    Some times  there is no values in data base at sub report two
    plz have a look on below image..it becomes empty.
    can i disappear the sub report if there is no values..
    I need your valuable suggestions..

    Hi
    In your sub reports, you also have to suppress the values (report labels,headings etc) using a formula.
    Go in Report Menu--Section Expert--Suppress -- Formula editor and write the follwoing :
    if Count({Yoursubreportfield)}) > 0 then false else true
    This will suppress your headers and footers or any other secitons which has static information.
    Now in the main report go in section expert and check 'Suppress Blank Sections'
    Also check you have applied New Page before or After for any of your sections.
    --Praveen G

  • Excise Values are not flowing from J1IJ to VF01

    Hi All,
    I am facing the problem in Invoice to Customer(from Depot). Excise Values are not flowing from J1IJ. I maintained Alt Cal type as 356 in Pricing procedure for Excise condition types. Even though its not flowing. I am using Tax Procedure TAXINN.
    I have gone through SDN, everybody is suggesting about 356 routine.
    My scenario is STO from Plant to Depot and Sale from Depot to Customer.
    ME21N->VL10B->VF01(Proforma)->J1IIN->MIGO->VA01(from Depot)->VL01N->J1IJ(Depot Excise)->VF01(Invoice to Customer)
    In J1IJ, excise values are coming but in VF01 it is not coming.
    Kindly help me.
    With Regards
    Azeez.Mohd

    Hi,
    in j1ig initial screen which excise group/series group i need to enter
    is it of supplying plant or depot --- Enter Your Excise group
    If i enter material document no say 5000000265 (corresponds to migo-101 at depot )& year
    it'm getting error message excise invoice already exists for5000000265 --> Check the Year of material document
    You can also use the Excise Invoice Details tab
    Enter Vendor's Ex.Inv.No. , enter your STO's Excise Invoice No. and Click on Own factory and enter factory's Series Group in n case of STO from factory,
    use Depot Excise Invoice in case of transfer from another depot
    and Excise Inv. Date
    On next screen,
    In case of non availability of Internal Excise No., select the line item and click on button. On next screen, enter Excise Inv. No., Date, Challan Qty, Excise Base value, ensure that Excise Duty rates are maintained in respective duty rates column, you can also manually enter the excise duty amount and press Enter . System will give warning messages, press Enter for each message and press Back button. System will display the excise duty amount, check the same and click on Save button.
    Hope this will resolve your issue.
    Regards,
    Krishna O

  • Stcok type H values are not added into report

    Hello all,
    I am facing problem with inventory management.
    Here we have nearly 15 plants.  10 are already there and 5 are newly added in the last month.
    For the previous 10 plants we are getting the valuated stock perfectly, but i am checking for the remaining 5 new plants data is mismatching.
    while comparing the values from R/3 (MB5B) to the BW query values are different.  So i have checked the contents of Cube.
    There i found a pecular thing that some records having Movement type 641 and Stock Type H. These values are not getting cumulated in the report.  Only these values are coming for the new 5 plants.
    I have already checked the Snotes 589024, 417703.
    Please suggest me how to overcome from this issue.
    Regards
    Sankar

    Hi,
    Thanks for your reply.
    As I already said Stock type is defined as same as the previous plants.  But still we are not able to get the data in the query.
    In the cube level I am able to see the data, but when we are going for the report then we are not getting the values which are present in the cube where Stock Type is H.
    Please suggest on ths.
    Regards
    Sankar

  • MIRO : bsx and KDM values are triggered and values are credit

    Dear Experts ,
           Good Morning to all ,
    IN MIRO , The transaction Event keys BSX and KDM is trigger.
    BSX for INVENTORY ACCESSORIES and  KDM for Exchange Fluctuations\
    But what happened is these two values are coming credit  one value is 3,612.88 -
    and another KDM value is 811.37 -
    Why BSX and KDM trigger credit .
    Please give  what are the Reasons .
    and why these two triggered in MIRO
    Thank u friends

    Hi,
    But why the values are credited in MIRO . These two values posted to credit
    what Rajesh given is correct and it will hit in MIRO only because after MIGO ,MIRo come in piture and it will adjust in MIRO
    Regards
    Kailas Ugale

Maybe you are looking for