Pivot table total on a computed column not showing when using a filter

I have this strange issue. I will try to explain.
I have three columns in my report - Delivered Qty, Opened Quantity, and the third one is computed that is (Delivered Qty - Opened Qty). The data is displayed in a table by quarter. So basically I have Quarter, Delivered Qty, Open Qty, Not Opened Qty. I also have the total row. A pie chart shows the opened vs. un-opened quantities. It all works fine.
The issue is when I add a prompt and the corresponding filter, the total for the computed field is blank. This happens whether it is pivot table or a regular table. That causes the pie chart to show 100% for the Opened qty.
When I remove the filter, it works again. I can see the total for the computed field and the pie chart looks great.
Can anyone please help me? I have a number of hours trying to play around with this and also looked in the forum to see if any one might have already discussed similar issue in the past. I could not find any.
Thanks.

I found the issue with my table total not showing up. Basically the new materialized view had its own data table alias. However, in the filter I was using date columns from different date table alias (copy and paste problem). As soon as I changed to the right date columns from the associated alias table, the row total showed up.
Thanks anyways for your support.

Similar Messages

  • Page tiles not showing when using Adobe Muse and Web marketing hosting

    Hello
    I have created a muse site that has the correct page titles showing in the browser when using the web basics hosting. But I need the same site to now contain a blog so have changed the hosting to web marketing, this has resulted in the pages not showing their page titles in the browser
    Does anybody know why this is or what I can do about it?
    thanks for any info
    regards
    Martin

    Page title should not change with site plan change unless it is done manually , or if modified file is uploaded from Muse.
    Please check the titles added on page if they exist or not, if still same issue , provide the site url.
    Thanks,
    Sanjit

  • Data in itab does not show when using FM REUSE_ALV_POPUP_TO_SELECT

    Hello Experts,
    I am using the said FM to display some data when the user clicks on a
    custom button I made. But no data is displayed in the popup window. I
    debugged it and the itab I am passing has a value in it. Below is my code:
    WRITE icon_green_light AS ICON TO wa_legend-legend.
            wa_legend-column      = text-t05.
            wa_legend-description = text-d01.
            APPEND wa_legend TO lt_legend.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
            DEFINE m_fill_fieldcat.
              wa_fieldcat-fieldname = &1.
              wa_fieldcat-tabname   = &2.
              wa_fieldcat-seltext_m = &3.
              wa_fieldcat-icon      = &4.
              wa_fieldcat-outputlen = &5.
              append wa_fieldcat to lt_fieldcat.
              clear wa_fieldcat.
            END-OF-DEFINITION.
            m_fill_fieldcat 'LEGEND'      'ITAB' text-t04 'X' '14'.
            m_fill_fieldcat 'COLUMN'      'ITAB' text-t11 ''  '50'.
            m_fill_fieldcat 'DESCRIPTION' 'ITAB' text-t12 ''  '50'.
            CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
              EXPORTING
    *           I_TITLE                       =
    *           I_SELECTION                   = 'X'
    *           I_ALLOW_NO_SELECTION          =
                i_zebra                       = 'X'
    *           I_SCREEN_START_COLUMN         =
    *           I_SCREEN_START_LINE           =
    *           I_SCREEN_END_COLUMN           =
    *           I_SCREEN_END_LINE             =
    *           I_CHECKBOX_FIELDNAME          =
    *           I_LINEMARK_FIELDNAME          =
    *           I_SCROLL_TO_SEL_LINE          = 'X'
                i_tabname                     = 'LT_LEGEND'
    *           I_STRUCTURE_NAME              =
                it_fieldcat                   = lt_fieldcat[]
    *           IT_EXCLUDING                  =
    *           I_CALLBACK_PROGRAM            =
    *           I_CALLBACK_USER_COMMAND       =
    *           IS_PRIVATE                    =
    *         IMPORTING
    *           ES_SELFIELD                   =
    *           E_EXIT                        =
              TABLES
                t_outtab                      = lt_legend[]
             EXCEPTIONS
               program_error                 = 1
               OTHERS                        = 2.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
    Hope you can help me guys. Thank you and take care!

    Hi,
    check this code and modify your FM accordingly then it'll work,
    Q. i_checkbox_fieldname = 'CHECKBOX'
    A. If the table output in the popup has checkboxes at the beginning of the rows (e.g. for multiple selection), the internal table must contain a field containing the value of the checkbox.
    Assign the name of this field to the parameter I_CHECKBOX_FIELDNAME.
    Q. i_tabname = 'TLINE'
    A. This is the name of ur input help internal table
    Q. it_fieldcat = fieldcat[]
    A The table u gonna display has to have a fieldcat.
    Q. it_excluding = extab[].
    A. In case u wanna exclude some functions.
    Below is a working example, paste it in se38 and activate.
    !!! Warning SAVE IT AS A LOCAL OBJECT !!!
    report ztests1.
    type-pools: slis.
    data: index type i.
    data: l_kunnr like kna1-kunnr.
    data: input(10) type c,
    text(4) type c,
    text1(5) type c.
    data: begin of itab occurs 10,
    kunnr like kna1-kunnr,
    name1 like kna1-name1,
    end of itab.
    data: e_exit.
    data: fieldcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    parameter: p_kunnr(10) type c.
    at selection-screen on value-request for p_kunnr.
    select kunnr name1 up to 10 rows
    from kna1
    into table itab.
    fieldcat-tabname = 'ITAB'.
    fieldcat-fieldname = 'KUNNR'.
    fieldcat-seltext_m = 'Cust'.
    fieldcat-ddictxt = 'M'.
    fieldcat-outputlen = 10.
    APPEND fieldcat.
    CLEAR fieldcat.
    fieldcat-tabname = 'ITAB'.
    fieldcat-fieldname = 'NAME1'.
    fieldcat-seltext_m = 'Cust Name'.
    fieldcat-ddictxt = 'M'.
    fieldcat-outputlen = 30.
    APPEND fieldcat.
    CLEAR fieldcat.
    CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
    EXPORTING
    I_TITLE = 'Customer Selection'
    I_SELECTION = 'X'
    I_ALLOW_NO_SELECTION =
    I_ZEBRA = ' '
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    I_CHECKBOX_FIELDNAME =
    I_LINEMARK_FIELDNAME =
    I_SCROLL_TO_SEL_LINE = 'X'
    i_tabname = 'ITAB'
    I_STRUCTURE_NAME =
    IT_FIELDCAT = fieldcat[]
    IT_EXCLUDING =
    I_CALLBACK_PROGRAM =
    I_CALLBACK_USER_COMMAND =
    IS_PRIVATE =
    IMPORTING
    ES_SELFIELD =
    E_EXIT = e_exit
    tables
    t_outtab = itab
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    seshu.

  • Count Distinct in Pivot table totals? OBIEE 11.1.1.5

    Hi,
    I have got a column that counts distinct customers per each month of the year and at the end of the analysis, it should show distinct customer count of the year as TOTAL. How can it be achieved? Is it possible to customize pivot table totals?
    Example:
    Month Customers
    Jan          10
    Feb          20 (10 new customers)
    Mar           15  (5 new customers)
    TOTAL: 25 (distinct values --> 10+10+5)Thanks in advance.

    Hi MK,
    I tried it already and it does not work. It takes the distinct value of each month, which is month's count distinct and then it sums. So the total is 45 (10+20+15) not 25.
    Thanks for you reply.

  • Device Show in My Computer But Not Show in itunes

    My iPod Shuffle Disconnect During The Restore Process And Now Device Show in My Computer But Not Show in itunes.Please Help Me.to Solve This problem>

    Does it say that it works with iOS devices (iPhone, iPod touch or iPhone)? iOS devices have a different format/file system than other iPods.

  • HT1277 Mail on my Mac computer does not update when I update my mail on my phone and iPad.  Can anyone help me with this?  Is there a setting I need to check?

    Mail on my Mac computer does not update when I update my mail on my iPhone and iPad. Can anyone help me with this?  Is there a setting that I need to check?

    All that you had to do was to sign into the old account in order to update those apps. What I mean is that you just needed to sign into that account in the store settings like I described and that should have worked. You didnt need to enter the credit card information again - you justed needed to use the old ID and password.
    Anyway, I think the good news is that if everything else is OK with the new account, just download iBooks with the new ID - it's a free app so its not like you have to pay for it again. I'm not sure what the other App is that you are talking about - but if it is the Apple Store App - that is free as well.
    Try this anyway, when you try to update iBooks, just use the old password if the old ID still pops up.
    Did you try signing into the store settings with your new ID and see what happens with the updates then?

  • My computer is not showing up in share monitor

    Hi
    I was happily creating and sharing files to Vimeo from Final Cut Pro x - When I had a kernal panic - Hard reset and now "My Computer" does not show up in share monitor - It says no clusters found - When I goto share a file to vimeo now nothing happens ..
    Any clues - I am going mad....

    There is nothing to fix, it is not supposed to show up there. It will only show there as a 'camera' if there are photos taken with the iPad, copied onto it via the camera connection kit, or saved from emails/websites etc which you might want to then copy to your comptuer.
    What do you want to do with the iPad via My Computer ?

  • I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    adobe42135678 wrote:
    the audio does not play when hosted on a website...
    When viewing in what browser?

  • HT1539 Digital copy transferred successfully to my computer, but not showing up in purchased list on other devices.

    Digital copy transferred successfully to my computer, but not showing up in purchased list on other devices. This is the first time I've encountered this issue. Package insert says copy is iPad compatible. Is there anything I can do to fix this? (The movie was Kung Fu Panda)

    it's a known issue. Everyone is experiencing this issue. Give it time for Apple to rectify the issue.

  • HT1386 after installing latest itune software,my ipod and outlook in my computer are not showing any calender items prier to one month

    After installing latest itune software in my computer, my ipod and outlook in my computer are not showing any calender items i added befor
    22nd december.Also not syncing with outlook, any calender items i have added in my ipod after 22nd january.I have selected all events to sync
    in my ipod.

    Thanks very much I have contacted them via this. Just hope they respond quickly- rather annoing! Greatly appreciated though

  • I am trying to download my photos from my iphone to my computer, but the computer does not show the device or give me the option to import.

    I am trying to download my photos from my iphone to my computer, but the computer does not show the device or give me the option to import.

    Have you already confirmed that you trust the computer?
    Launch iTunes, then connect your iPhone to the computer.
    When prompted, confirm that you trust the computer.

  • Serial number not  accepted when using disc to download on second computer.

    Serial number not accepted when using disc ot download CS6 to second computer. Help...

    make sure you're entering the correct serial number for the correct product:  http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    if you're certain that you are doing that, contact adobe support:  http://www.adobe.com/support/chat/ivrchat.html

  • My computer will not wake when I press a key or use the mouse....

    I have to say that I have a G4 but my question is not getting addressed in that forum and there ae many more users that utilize this one, so sorry for misleading. BUT, for some reason my computer will not wake when a key is pressed or the mouse activated. Any sugestions? Also, does anyone know of a program (shareware or free) that will clean my files and/or hard drive ( i.e. Macjanitor, Cocktail)? Thank you for your help.

    As a first step you could try trashing
    /Library/Preferences/SystemConfiguration/com.apple.PowerManagement.plist
    and re-start and re-select your preferred System Preferences - Energy Saver settings.
    There are more suggestions here
    http://discussions.apple.com/search.jspa?threadID=&q=won%27t+wake&objID=f596&dat eRange=last90days&userID=&numResults=15&rankBy=10001
    Post again if it doesn't help.

  • TS2972 my new computer does not show shared from my old computer. how long does this take??

    My new computer does not show share from my old computer how long does this take?

    I'm having the same problem. I have my main Library on a WXP machine and a new W7 laptop. My iphone 4 sees the library from the W7 machine, but neither the laptop nor the iphone see the big library on the WXP machine. I have configured firewall settings, tried the network wired and wireless, using same apple id on all devices, restarted itunes on all computers, turned sharing off and on on all computers. Nothing works.

  • My phone is charging from my computer but not showing up in itunes?

    my phone is charging from my computer but not showing up in itunes?
    can some one help please, i have followed all of apples advice!!

    "i have followed all of apples advice!!"
    No idea what this means, unless you say what you have tried. When you say that you have tried "all", it really does not encourage anyone to make suggestions.  If you have tried it all, then, by definition, there is nothing left to try.
    Have you read this?
    iOS: Device not recognized in iTunes for Mac OS X
    iOS: Device not recognized in iTunes for Windows

Maybe you are looking for