IP: query shows only open request data, when filtered

Hi,
I can see only data of the open request. but it depends on the filter.
I have a real-time provider with closed requests and one open request. (The closed requests come from manually switching between planning and loading mode.) On top there is a multi-provider and aggregation level on top of the multi-provider. the query is defined on the aggregation level.
In the (plan) query I have 0salesorg and 0sales_dist filtered with variables. And both chars as columns.
e.g.:
in the cube I have (salesorg, salesdist, requ.-no., keyfigure):
A, B, Request1, 35
A, B, Request2, 32
Now I filter
0salesorg = A and 0sales_dist = B
==> I can see only the data of the open request, therefore 35.
But with 0salesorg = empty and 0sales_dist = B
==> I see all data, therefore 67.
The only difference between these data rows is the request.
Any ideas? Thanks.
Regards,
Lars

Hi Lars,
may be you are observing the effect described in note 1179076. Please also delete the OLAP cache for the plan buffer query <PROV>/!!1<PROV> where <PROV> is the technical name of your InfoProvider (MultiProvider or InfoCube) you are using.
Regards,
Gregor

Similar Messages

  • Calendar...list function shows only events for date select instead of events from that date forward.

    Calendar list function shows only events for date selected....instead of events for date selected and events forward from that date.  Is there a setting change needed?  Help!

    Hi,
    Did you check that your universe object referring "Date of Completion" has Date data type?
    Can you also provide the BOE verson you are using?
    I remembered that the calendars were not displayed in XIR2 version.
    Didier

  • Open Orders Query showing all open AP Orders

    Hi All,
    I wish to generate a report that shows all open AP Purchase Orders as well as all orders that are partially inviced.
    I have been using the following query but it is not giving me complete results:
    SELECT
    T1.[DocNum] AS 'PO NUMBER',
    T1.[DocDate] AS 'POSTING DATE',
    T1.[DocDueDate] AS 'DUE DATE',
    T1.[TaxDate] AS 'DOC DATE',
    T1.[Comments] AS 'REMARKS',
    T1.[CardCode] AS 'CUSTOMER/VENDOR CODE',
    T1.[CardName] AS 'CUSTOMER/VENDOR NAME',
    T0.[LineTotal] AS 'LINE TOTAL',
    T0.[OcrCode] AS 'PROFIT CENTER',
    T1.[PaidSum] AS 'PAID',
    T0.[Project] AS 'PROJECT CODE',
    T0.[LineNum] AS 'ROW NUMBER',
    T0.[LineStatus] AS 'LINE STATUS',
    T1.[DocStatus] AS 'PR STATUS'
    FROM
    POR1 T0  INNER JOIN OPOR T1 ON T0.DocEntry = T1.DocEntry
    WHERE
    T1.DOCSTATUS <>'C'
    AND
    T0.LineStatus <> 'C'
    ORDER BY T1.docentry
    I need to add to this query a column to show PO's that have been partially invoiced, a column to show if the invoices have been paid and another column to show the balances for those particular orders.
    HELP PLEASE!
    Robinson

    Thanks Carin,
    That was very helpful, BUT:
    1. I still wish to view all open orders that have been partially invoiced
    2. I still wish to see all the Purchase Orders that have been partially invoiced and paid
    3. I finally want to see the balances for these Purchase Orders that have been partially invoiced.
    I don't seem to find the correct fields containing the information. So far all that I was able to establish is that OPOR.DocTotal is the total amount for the Purchase Order. However, OPOR.PaidToDate does not give an accurate value of what is invoiced or paid.
    I wish to add the following fields. A field showing the corresponding Invoice number for the partially invoiced order, the amount paid for that PO and the balance.
    Thank you.
    Robinson

  • I select a page for printing and the print page shows only the frame data and this is all that it prints.

    when I click on print the page to print shows only the frame and that is all that is printed. Why isn't the page data shown on the print page and also printed?

    This is how you do it:
    http://i1224.photobucket.com/albums/ee374/Diavonex/c7db8382.jpg
    http://i1224.photobucket.com/albums/ee374/Diavonex/5e4aadae.jpg

  • Black frames showing after Open File Sequence when trying to do stop motion ?

    I'm trying to make a stop motion animation with jpegs numbered in order. I choose how many frames per second and the a full screen movie opens which freezes and shows only a few frames but mostly black.
    I'm using a g5 tower with QuickTime 7.7

    I'm trying to make a stop motion animation with jpegs numbered in order. I choose how many frames per second and the a full screen movie opens which freezes and shows only a few frames but mostly black.
    I'm using a g5 tower with QuickTime 7.7

  • How to create a formula that shows only the last date of a series of dates

    I have a report that shows a series of dates that 'notes' were created on a particular file. I want the report to only show the date of the last note that was created instead of showing all the dates. Ive tried using 'Maximum ()' which does not work.
    Any suggestions?

    Either order the dates in ascending order and place the date field in the group footer
    -or-
    order the dates on descending order and plade the date field in the group header.
    HTH,
    Jason

  • ISupplier 11.5.10. I want to show only Open POs.

    I would like to display only Open PO in the Purchase Orders Page.
    I have been able to identify the xml which has the list of the drop downs. ViewPoQuickSearchVO.xml .
    But I am able to find out which page or java class takes the input from this List of Values and renders the results.
    Could any of you let me know which page , class I need to customize to achieve the desired results.
    Regards
    Anil

    Thank you Jit.
    Some questions:
    1. Where exactly is this page /oracle/apps/pos/home/webui/PosHomeMainPG located. ( in the database? )
    2. I opened PosHpOrdersVO.xml and the code is below. I can see that it looks at the PO which are sysdate- 180 days old . But where does it look at the other conditions which is in the drop down. ( like last 25 POs, etc)
    SELECT
    'PO' PO_RELEASE_FLAG,
    POH.APPROVED_DATE ,
    POH.COMMENTS ,
    POH.PO_HEADER_ID,
    POH.VENDOR_CONTACT_ID,
    POH.VENDOR_ID,
    POH.VENDOR_SITE_ID,
    POH.SEGMENT1 PO_NUMBER,
    TO_NUMBER(NULL) RELEASE_NUM,
    NULL RELEASE_TYPE,
    TO_NUMBER(NULL) PO_RELEASE_ID,
    POH.CREATION_DATE,
    POH.AGENT_ID,
    POH.ORG_ID
    FROM
    PO_HEADERS_ARCHIVE_ALL POH, PO_HEADERS_ALL PH
    WHERE
    POH.TYPE_LOOKUP_CODE IN ('BLANKET','CONTRACT','PLANNED','STANDARD') AND
    NVL(POH.CLOSED_CODE,'OPEN') not in ('CLOSED','FINALLY CLOSED') AND
    POH.LATEST_EXTERNAL_FLAG = 'Y' AND
    POH.PO_HEADER_ID = PH.PO_HEADER_ID AND
    POH.APPROVED_DATE > sysdate - 180
    3. I am going to decompile PosHpOrdersVOImpl.class and check what code it has in it and see if I can modify.
    Thank you for giving me a tip to start working on.
    Regards
    Anil Kumar Singh

  • Show subtotals in Power pivot when filtering

    Hello,
    I would love to show subtotals of all others and grand total when selecting top 10 in power pivot. Is that possible?

    Hi Dee,
    According to your description, you want to sum up the top 10 values on the grand total row when filtering the top 10 values, right?
    I have tested it on my local environment, when selecting top 10 value in the filter, the grand total will sum up the selected members automatically. The screenshots below are for you reference.
    Reference
    http://office.microsoft.com/en-in/excel-help/filter-data-in-a-pivottable-HA102840040.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • Safari shows only a black screen when a pdf file is opened in Safari

    When I open a pdf in Safari, only a completely black screen shows.  Does anyone know how to change settings or some other solution to resolve this issue so that pdf's open correctly?

    Back up all data.
    Quit Safari. In the Finder, select Go ▹ Go to Folder from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then launch Safari and test.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • CRM Interactive Reports show only current year data

    Hello,
    We have configured CRM Interactive Reports for IC scenario (CRM 2007) and are using reports like 'Service Ticket Volume', 'Service Ticket Closure', etc.
    The issue is when we run reports (through IC_Manager business role), they only display data from January 2009 onwards. There is lots of data available in the system for 2008 which we can see from the backend. And we are also selecting date range that includes 2008. But somehow the report only shows tickets from Jan 2009 onwards.
    Any clue why this is happening?
    Thanks,

    We've resolved this issue so I'm closing this message.
    Thanks,

  • All emails in Mail, Thunderbird and Postbox show only this example date in System Prefs 05.01.2013. Skype has the same error in short messages. Only Mail Pilot has the correct dates. I'm using Mavericks

    Hello, all my emails in Mail, Thunderbird, Postbox show the same date 05.01.2013 which is the example in System Prefs.
    Skype also in short messages.
    Only Mail Pilot resists and shows all dates in the correct manner.
    I'm using Mavericks. But I have another account also with Mavericks without this rare behavior!

    Okay, I realized a lot of my questions related to Gmail. I figured out a few, but if you are a Gmail expert and know why I'm getting errors trying to sync that one folder then please let me know.

  • Urgent: Gif animation shows only the last frame when reloaded

    I use ImageIcon to show gif animations on screen. I want to use only non-looping gif animation files.
    Always when I show a gif animation for the first time it runs correctly through all the frames.
    However when reloading later the same gif animation only the last frame appears. I want to see all the frames of the animation, not only the last frame.
    So for the first showing of the animation this works well:
         icon = new ImageIcon("first_animation.gif");
           label = new JLabel();
           label.setIcon(icon);Then I show another animation and also it works well:
           icon2 = new ImageIcon("second_animation.gif");
           label.setIcon(icon2);Now I would like to show the first animation again but only the last frame of that first animation appears on screen:
    label.setIcon(icon);And even this alternative way to refresh does not work:
           icon = new ImageIcon("first_animation.gif");
           label.setIcon(icon);
    How can I reload the first animation again so that it shows all the frames not only the last frame???
    I have tried for ex. commands updateUI(); and setImageObserver but they don't seem to help.
    I am only a novice so...
    Please I would really appreciate your detailed advice what lines I should rewrite in my code and how?
    Thank you very much!!

    By flagging your question "urgent", you are implying that either your question is more important than other people's questions, or your time is more valuable than mine (or someone else's answering questions here). Both are not true.

  • Hibernet query returns null for XMLTYPE data when I use oracle type4 driver

    Hi,
    I am using Oracle type-4 driver, My hibernet query returns null for data type XMLTYPE. But when I use BEA type -4 driver its working fine. Please help me to retrive XMLTYPE data using oracle-4 driver through hibernet query.
    Thanks in advance.
    regards,
    Amaresh

    Hi,
    I am using Oracle type-4 driver, My hibernet query returns null for data type XMLTYPE. But when I use BEA type -4 driver its working fine. Please help me to retrive XMLTYPE data using oracle-4 driver through hibernet query.
    Thanks in advance.
    regards,
    Amaresh

  • My Firefox will not open unencrypted data, when there is a page with encrypted and non encrrypted data

    When I try to review a page, I get a message that some of the info is encrypted and some isn't, then it only shows half the information. how do I get it to show all thee info on the page?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Create a Report with InfoPath to Show Only Some of Data in a Custom List

    I have to create a report using InfoPath from a SharePoint 2010 custom list. 
    The report has 8 columns, and there will be four repeating? tables in it, each table including data that is filtered from the bigger list to meet two criteria.  All the items in all four repeating tables will meet one of the criteria (Type of Task field
    = Human Capital) and each of the other four repeating tables will be different depending on the contents of the Personnel Action Location field.  Neither Type of Task or Personnel Action Location will be columns in the repeating tables.
    How can I filter data from a custom list as it goes into a form?
    Can I do this on fields that don't otherwise appear in the form?
    If I can just figure out how do to one form, we can do many, many more, and finally really move over to SharePoint, but I just need to get the first one figured out please.  Thanks!

    Hi,
    If you would like to connect data to InfoPath form from SharePoint list, you could make use of Data Connection. You could locate it via InfoPath form > Data ribbon > Get External Data > From SharePoint List.
    And here are the links to use it for your reference:
    Add a query data connection > Step 1: Add a secondary data connection
    http://office.microsoft.com/en-in/infopath-help/add-a-data-connection-to-a-sharepoint-document-library-or-list-HP010093160.aspx
    SharePoint List Data Connections in InfoPath 2010http://blogs.msdn.com/b/infopath/archive/2010/05/06/sharepoint-list-data-connections-in-infopath-2010.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

Maybe you are looking for

  • Only the last line item is shown in main window...

    Hello Experts, I created a custom form for the standard checque program RFFOUS_C. Now, in my MAIN window, I called a subroutine in a custom program which loops through the line items but the problem is only the last line item is being shown. I tried

  • Totals text and currency sign in alv grid

    Hi! How to display totals text and currency sign in the totals part of the alv grid?? Ex.               5    6               4    9               5    2 Totals: $14 $17

  • Inbound Proxy : no trace

    Hi experts, i have designed a file to ABAP proxy scenario. In sxi_moni in both XI and ECC servers, I have the flag white and black that says the message has been processed successfuly. The problem is that it is supposed to update a table, but nothing

  • How to play flash in java

    Hi, I have a installer in java swing. I was wondering,is there some way by which I can play a flash animation file inside this app. I searched on google,but couldn't find anything that lets you play flash embedded in java swing. Anybody,any clues???

  • Tell me about pop up window in abap

    hi all,                i want to do a pop up message .           when material stock is below the lower limit.          it give the automatic message to user to take the action .       pls  tell me how i can do this in abap. regards vikas .