Subtotal / Grand total not working

I am new to OBIEE & I could not get a simple 'Total By' or 'Grand Total' in Answers, Table view. The default aggregation rule in Administrator is selected as 'Sum'. When I click on the 'E' summation icon, nothing happens. What am I missing?
Thanks,
Dinesh.

OK. I figured out what was wrong. I did not put the logical schema in a star schema approach (dimensions & facts). Once I did that, the sub-totals & grand totals started working.
But I am greatly disappointed by this limitation. I just have a copy of my transactional database & I do not want to do star schema data modelling so that I can quickly start reporting. Is there any work-around for this?
Thanks,
Dinesh.

Similar Messages

  • Grand Total Not working on Materialized view based table ??

    Hi all,
    I have a complex report report by using sum and decode function. I precalculated my requirment in database and then create a materialized view based on my sql statement. I import this view in physical and BM model and its results very fine and efficient. But the problem create when I implement Grand Total on my report in table view it did'nt work means (Grand Total is not working on this MV based table) Any idea why ??
    any reply would by higly appriciated.
    Regards

    Hi Zishan,
    Check the Aggregation Rule and set it to sum in the table view.
    That is go to the "edit formula" tab of the column for which you want grand total and set that to sum.
    Hope this will help.
    Thanks
    Ashok

  • Adobe Edge Animate CC 2014.1  is totally not working. It stop working after 5min. Sometimes is stops the operating system.

    Adobe Edge Animate CC 2014.1  is totally not working. It stop working after 5min. Sometimes is stops the operating system. On on mac OS X Yosemite. macbook pro i7 2013.
    I reinstalled it not helping.
    Message was edited by: Daniel Boguszewski

    UPDATE
    i have ulpaded 2 animation ( one normal and one Responsive ) in 2 different server here the link
    www.eclipseadv.com/maliRP/maliRP.html
    Untitled
    via SAFARI or CHROME on MAC all OK
    but via IPAD ( SAFARI, CHROME and MERCURY) i didn't see the video, just the animation of the BUTTON  and the link if i click on it (not in Mercury), like in the content viewer.

  • Grand Total not displaying correctly on Column level security.

    Hi All,
    I have implemented the Column level security for three columns. But in dashboard report. The grand total is not displaying correctly. The grand total values are still displayed for the hidden columns.
    Is there any work around for this.
    The sample how my report looks like after column level security is.
    ColumnA Metric1 Metric2 Metrics3(to be hidden)
    A 100 200
    B 150 100
    GrandTotal 250 300 400( this includes the value of A = 300, B = 100).
    Regards,
    Bhavik

    Any pointers please.

  • ALV subtotal & grand total

    Hi experts,
    I have a ALV display which displays subtotals & grandtotals. I only want the subtotals, How can I supress the grantotal?
    ex.
    DOC num 50003859
    200 USD
    300 USD
    subtotal = 500
    DOC num 50005469
    600 USD
    subtotal = 600
    Grandtotal = 1100 <- I dont want this to show.

    Hi,
    You can do as below for Subtotal and suppress the grand total.
    data :gt_sort TYPE slis_t_sortinfo_alv,
    DATA: ls_sort TYPE slis_sortinfo_alv.
    CLEAR ls_sort.
    ls_sort-fieldname = 'BELNR'.
    ls_sort-up = 'X'.
    ls_sort-subtot = 'X'.
    APPEND ls_sort TO gt_sort.
    And pass gt_sort to grid display export parameter IT_sort.
    And to suppress the grandtotal.
    in the layout use the below code :
    wa_layout-no_totalline = 'X'.
    Thanks,
    Sriram Ponna.

  • OBIEE11g Grand total not summing up correctly

    hi all,
    I have to display the grand total from the foll calculation : (total po numbers - total Recd on time PO numbers) / total PO numbers.
    To get the total PO numbers - in the Edit formula - COUNT(PO numbers) and aggregation rule is set to SUM - this gives total correctly. eg : count of Total PO numbers - 15
    To get the total Recd on time PO numbers-- In the edit formula fields - COUNT(Recd on time PO numbers) and aggregation rule is set to SUM . This also shows hte total correctly. Eg : Count of total Recd on time PO numbers 12
    Now I do the division (Recd on time PO numbers/ total PO numbers ) Again in the Edit formula field SUM( COUNT(PO numbers))/ SUM(COUNT(Recd on time PO numbers)) - This gives incorrect results. output is 12.
    12/15 should be .8 but it shows 12.
    I am not sure why its not doing the calculation correctly.
    Is there any way I can achieve this ?
    Thanks
    OBI_user

    * 1.00 => http://gerardnico.com/wiki/dat/obiee/int

  • Formula totals not working

    These add up correctly:
    Two formulas Adding Up
    WhilePrintingRecords;
    Global NumberVar GrossCededEarn ;
    if {@ThisLineNo} = "112" OR {@ThisLineNo} = "122" then
    GrossCededEarn := GrossCededEarn + {@SECTION-SIGNED-AMOUNT};
    WhilePrintingRecords;
    Global NumberVar GrossPremEarn ;
    if {@ThisLineNo} = "110" OR {@ThisLineNo} = "120" then
    GrossPremEarn := GrossPremEarn + {@SECTION-SIGNED-AMOUNT};
    Two formulas displaying:
    global numbervar GrossPremEarn;
    if {@Breaks} = "A2" then GrossPremEarn
    global numbervar GrossCededEarn;
    if {@Breaks} = "A2" then GrossCededEarn
    But this does not work:
    WhilePrintingRecords;
    Global NumberVar NetAcqDAC ;
    if ({@ThisLineNo} >= "150" and {@ThisLineNo} <= "151") then
    NetAcqDAC := NetAcqDAC + {@SECTION-SIGNED-AMOUNT} ;
    WhilePrintingRecords;
    Global NumberVar NetAcqDAC2 ;
    if ({@ThisLineNo} >= "160" and {@ThisLineNo} <= "162") then
    NetAcqDAC2 := NetAcqDAC2 + {@SECTION-SIGNED-AMOUNT};
    WhilePrintingRecords;
    Global NumberVar NetAcqDAC3 ;
    if {@ThisLineNo} = "190" then
    NetAcqDAC3 := NetAcqDAC3 + {@SECTION-SIGNED-AMOUNT};
    global numbervar NetAcqDac;
    global numbervar NetAcqDac2;
    global numbervar NetAcqDac3;
    if {@Breaks} = "B5" then  totext(NetAcqDac) + "  " + totext(NetAcqDac2)+ "   " + totext(NetAcqDac3)
    The only sum that works here is te NetAcqDAC3 which happens to be the line right before I display these totals.
    The other two show totals but they are completely wrong.  When I look in the detail where I placed them they all add up correctly but when I display them they are wrong.
    I also created a running total which I noticed it resets for each {@ThisLineNo} but I have it set to never reset.  Also I have this running  total evaluating with this formula:
    ({@ThisLineNo} >= "150" and {@ThisLineNo} <= "190")
    I donu2019t understand why it works for the first set above but it wonu2019t for these.
    Help Please!
    JC
    Edited by: J S on Mar 12, 2009 12:43 PM

    Hi J.S,
    Common thing in below two formulas is checking a text field with >= otherwise there is no problem.  Try the following :
    WhilePrintingRecords;
    Global NumberVar NetAcqDAC ;
    if (ToNumber({@ThisLineNo}) >= 150 and Tonumber({@ThisLineNo}) <= 151) then
    NetAcqDAC := NetAcqDAC + {@SECTION-SIGNED-AMOUNT} ;
    WhilePrintingRecords;
    Global NumberVar NetAcqDAC2 ;
    if (Tonumber({@ThisLineNo}) >= 160 and Tonumber({@ThisLineNo}) <= 162) then
    NetAcqDAC2 := NetAcqDAC2 + {@SECTION-SIGNED-AMOUNT};
    Thanks,
    Sastry

  • My mbp with retina's camera is totally not working

    My camera is not working at all. I already tried to reinstall mac os x mountain and even restore my mac to factory setting. and i restarted many times but it still doesnt work. Im confused.

    Take it to Apple. The camera must not be installed right. There must be a loose wire. If your positive that it won't work take it to them. Its considered as a defected product!

  • Totals not working correctly

    I am trying to create a calculation by evaluating a set of records and including only those that meet the criteria in the total. The calculation seems to work correctly on the individual records, but the total does not... it seems to be doubling the result. Here's the calculation:
    SUM(CASE WHEN ( Tx Period."Tx Period Year" = '2007' AND Activity Composite fact.Activity Date <= TO_DATE('07-MAR-2007') ) THEN Activity Composite fact.Activity Amount ELSE 0 END)
    Any help appreciated

    Hi,
    Are there any Page Items on the report?
    Is the report output displayed for all the records? Also, check if "Hide duplicate rows" is checked.
    Thanks.

  • Running Total not working

    Dear all,
    I am creating a new report which needs a conditional running total.
    I need to sum the credits quantity if the following condtions are met
    line_type="S" and
    line_no<3
    I used running total like this
    Field to summarize: lab_credits2.credit_qty
    Type of Summary: SUM
    Evaluate: Use formula
    {lab_credits2.line_type}="S" and
    {lab_credits2.line_no}<3;
    Reset: On change of group (Reason Code).
    When I ran the report, it did not produce the right results, so I placed the line type and line no into the same Group footer and ran the report.
    I found out that the report is not filtering the linetype and line no.
    Result shows
    Line Type ="S" - 100 - Line number =1
    Line Type = "M" - 200 - Line number=6
    and so on.
    The report is grouped by Reason Code.
    Any ideas why would it not be filtering the records?
    Report Record Selection Code
    {lab_credits.credit_date}>={?startdate} and
    {lab_credits.credit_date}<={?enddate} and
    {lab_credits.credit_status} = 2;
    Status=2 is needed there to filter the Order numbers correctly.
    Many thanks
    Regards
    Jehanzeb

    Thanks James,
    I have put all three in detail and used the filteration and it worked under detail section however the results when used in total SUM is produced incorrectly.
    I suspect it might be of database table linkage? or maybe I have done something wrong in the report.
    I am going to create another report and see if that works.
    Will post info here.
    Regards
    Jehanzeb
    Edited by: Jehanzeb Navid on Sep 4, 2008 11:55 AM
    Right I found the issue however I don't know how to resolve it.
    I have 4 tables in the database
    1: Lab Credits - Order_num, Credit_status, Reason_code
    2: Lab Credits2 - Order_num, Line_no, Line_type, Credit_qty
    3: Lab Reasons - Reason_code,Reason_description
    4: Oetrn2 - Order_num
    This is how they are linked up
    Lab_Credits_Order_num = Lab_credits2_order_num and oetrn2_order_num
    Lab_Credits_Reason_code = lab_reasons_reason_Code
    Report Grouping
    Grouped by Reason Code
    Date range - month to date
    Report Record Selection
    {lab_credits.credit_date} in monthtodate and
    {lab_credits2.line_no}<3 and
    {lab_credits2.line_type}="S" and
    {lab_credits.credit_status}=2;
    Now the issue
    When I add sum of qty of lab_credits2_credit_qty into the report Group footer,it produces the right results However when I add
    DistinctCount of Oetrn2_Order_num into the Group footer, it creates totally different Sum of Lab Credit Qty results. (Please note: The oetrn2_order_num results appear fine, however they messup Sum of Lab_credit_credit_qty).
    What do you think where am I doing wrong?
    It has to be something to do with table linkage.
    Regards
    Jehanzeb

  • Lucida Grande font not working on CS6

    Just installed CS6 on macbook pro - Lion 10.7.4 - Lucida Grande font works on CS5 but not on CS6. Can someone help? I have tons of web stuff designed with this font.

    Try the below mentioned steps and then check:-
    1.   Drag the contents of the Library/ Fonts folder to a new folder on the desktop. (If you manually added fonts to the Library/ Application Support/ Adobe/ Fonts folder, also drag those fonts to the new folder.)
    2.    At the Finder, choose File > Find.
    3 .   Type AdobeFnt.lst, select the system drive, and then press Return.
    4.    Delete all AdobeFnt.lst files found (for example, AdobeFnt10.lst).
    5.     Restart the computer.
    6 .    Restart InDesign. InDesign creates new AdobeFnt.lst files.  
          Try to re-create the problem. Then, do one of the following:    
    If the problem doesn't recur, move one font back to the Library/Fonts folder, and then repeat steps 5-6 until you identify the problematic font.
    If you have a font management utility, restart it and activate fonts in small groups or individually to identify the problematic font.
    If the problem recurs, move the contents of the new folder on the desktop back to the Library/Fonts folder.
    Note: If no adobefnt.lst file is found in the search, make sure that the search criteria are set to 'any' in the Find dialog box.

  • Java totally not working

    I created a topic on here earlier about not being able to run javac on some of my java files, but it turns out I cant use java at all. I have many programs I have made, and before the weekend I have been able to run them, and now whenever I try to run a java program, I get the error:
    "Exception in thread "main" java.lang.NoClassDefFoundError: <class>"
    I thought it was something to do with my firewall blocking access for the java.exe, because I recently installed a new firewall program, but I have reverted back to my old one and it still doesnt work. The only other program I have recently installed is itunes, I doubt it would be that stopping it functioning. I have tried reinstalling the JDK many times, and deleting all files from Program Files and from the registry and still it doesnt work when I reinstall it. If anyone can help me it would be much appreciated.
    I am using JDK 5.0 update 6 on Windows XP, and using the command prompt to run java.

    "Exception in thread "main" java.lang.NoClassDefFoundError: <class>"If you have really that class on your machine, then it is simply a classpath issue.
    If your class is stored in your current working directory, try:
    javac -cp . MyApp.java
    java -cp . MyApp
    If you use IDE, cousult the documentation.

  • Grand Total not coming correctly in Tabular report

    Hi,
    When I extract in Answers the following information:
    Dimension 1
    Dimension 2
    Dimension 3
    Metric 1 (sum)(sum i defined in RPD)
    Metric 2 (count distinct)(count is defined in RPD)
    When doing this, I get the right result for every value of the dimension, but the total of the summation metric is not correct in tabular report
    Can someone help me, please?

    Hi,
    Try this........
    Add this <ReportAggregateEnabled>true</ReportAggregateEnabled> somewhere inside your <ServerInstance> and </ServerInstance>
    on instance config and restart the presentation services.
    Cheers,
    Aravind

  • Groovy expression for column total not working

    I want to show the column total. I have created a view accessor on the view object and a new attribute of Transient type and set its expression to AccessorName.sum("columnName").
    But its values is never calculated when I test the view object.
    Any help on this is appreciated.
    PS: The total is calculated correctly when the view object does not have any bind variable. Once I add a bind variable the column total is not being calculated. I have verified this. Any help on how to handle this issue ?
    Using JDev 11.1.2.3

    If you could have elaborated a bit more it would have been useful , but apparently i can think of few thing which you could double check.
    1. The transient attribute type is Number.
    2.If the column exist on the same view object then you should write sum("ColumnName") else you have to create a view accessor on the VO and set its expression to AccessorName.sum("columnName").
    Hope it helps !!
    Else you could elaborate a more for us to help
    Thanks
    Soumya.

  • Java math is totally not working!

    Hi! Ok for some homework I'm doing I've got to like, do some math stuff :(
    I do this
    double d = 3.1 - 2.2;
    System.out.println(d);
    and it prints out 0.8999999999999999. I like, did the same thing on my calculator and it told me the answer is 0.9! Hello!? I'm not really good at that math stuff but my calculator answer like, looks much better! Help me pls!
    Thanx!
    JS

    Maybe I should change my ID? I thought when I signed
    up that you had to like, use your real name! It's not
    my fault there's another Jessica Simpson! I might
    change to another ID then ppl won't know it's me and
    might not be so mean!
    JSHey Jessica, I like, did not like, intend to be like, mean. I have like, been following your like, threads for a long time. :)
    Anyway, using a new name means new trouble. Now, everyone enjoys your presence since they know you. If you come in with a different name, they would flame you instead. ;)
    DM :)

Maybe you are looking for

  • My thoughts on testing DocumentDB

    Despite knowing DocumentDB won't be an option yet for my needs because of the lack of OrderBy and other known limitations in the Preview, I wanted to try it out and run some basic query tests against it to see what's already possible, how it performs

  • Using numbers 2.3 how do i split windows to view more than 1 spreadsheet at a time?

    using numbers 2.3 how do i split windows to view more than 1 spreadsheet at a time?

  • Upgrade from 4.0B to ECC 6.0

    Hi I have few questions related to upgradation from 4.0B to ECC 6.0 (wrt HR) To wat extent it is possible, if yes then how simple or difficult it is ? Time Factor (Duration)?  ?(assuming the size of the company close to 1000) Do we have any set of st

  • HT4527 Help please!! problems with moving to new computer

    Hi, I've been trying to transfer my i Tunes library to my new computer and have run into problems. I've followed the directions in the article on the apple website HT4527 using the external hard drive method of transfer, and although this has success

  • Post/16/64

    I get this error message when I run the Apple Hardware test. Can anyone explain what it indicates?