Download data from a PivotTable

Hi, experts,
on the dashboard, I click on 'Download data' and save the csv file.
but I found that some values are exported under zero in the csv file.
However, on the PivotTable on the dashboard, it is not zero.

y at - it a patch to apply?
Thank you very much!

Hi Forreging,

I've seen this behavior before and after some review and discussions with my colleagues, this is not a bug but rather a feature. The concept of "Download" a data set means that you want the "raw" data that are used in the report. In terms of OBIEE, this raw data is going to be what you would see in a Table report. A PivotTable report takes raw data and it aggregates in the specified dimensions.

So from this point of view,

Download-> means to obtain raw data
Export-> involves handling data

Who is?

Best regards

-Joe

Tags: Business Intelligence

Similar Questions

  • How can I download data from key USB flash to a Windows 7 computer

    I need to transfer some files from my PC to my PC Windows 7 Windows XP using a USB flash key. I've used Windows Easy Transfer to move my files without problem and some programs but did not download some files. I downloaded these files on a USB flash and I can access the files, as long as the stick is pluged. How can I download data from the USB flash on my Windows 7 computer

    Hello

    The following video may help:

    http://www.YouTube.com/watch?v=hrMQh0Xkpvs

    or this article:

    http://www.swarthmore.edu/documents/administration/its/how%20To%20Use%20A%20USB%20Flash%20Drive.PDF

    and here:

    http://TECHTIPS.salon.com/use-USB-flash-drive-transfer-files-PC-Mac-2544.html

    (Mac here can be a PC).

    Good luck.

  • How to download data from test to SFIS via webservice

    Hello world

    I need to download data from test to SFIS via the webservice and the service will return the result., but I have no idea of web service.

    I need to submit as soon as possible. If anyone can write it.

    You start by the seller. How do get the data? HTTP put and get operations? Customer HTML screws can do that.

    Which makes the network based thing you are trying to send your data? It would be useful to know. You see SFIS, MY or LIMS are terms all very generals who actually communicate very little useful information (see also: "buzz words").

    Mike...

  • What is the way to find out which app is downloading data from the internet?

    Every time I connect to internet, I see that nearly 100 MB of data is is downloaded, without my consent. I did almost all the applications that I know to ask my permission before you download.

    Yet, some applications are downloading data without my consent.
    I would like to know what are the applications that do.

    What is the way to find out which app is downloading data from the internet?

    There is background applications that automatically transfer and receive data when the computer is connected to the internet. Try if there is active apps running.

    1. click Alt + Ctrl + Del to go to start Task Manager / Applications and end unnecessary tasks.

    2. go in Control Panel / programs / uninstall a program and uninstall unwanted programs.

    I hope this helps.

  • After downloading data from bank account

    I have Windows 7 and I am considering upgrading to Windows 10. Currently, 7, I struggle when I download my account data from Wells Fargo bank with Quicken 2014. Often, the fake registry posting date shows the transaction has been posted days before the date of the transaction.  Several requests have been made to Quicken and Wells Fargo customer support. Still no final settlement. Windows 10 would eliminate this annoyance?

    Probably not. the problem seems to lie between Quicken and Wells Fargo. Change the Windows system will not change.

  • Download data from text file for Hyperion ESSBASE by FDM.

    Hello

    I want to upload data from text file for Hyperion ESSBASE by FDM. The file format is given below.


    Entity, Department, designation, effective, SalaryPaid
    E11001, BSG, AsstManager, 12, 820000
    E11001, BSG, Manager, 6, 740000


    Where staff and SalaryPaid is the Member of the account dimension. Entity, Department, and designations are the dimensiosn in the ESSBASE.

    Is it possible to download the file above using FDM, can we have two account member in the line?

    I am brand new with FDM. ask for your help.

    Kind regards
    Sunil

    Create two scripts to import (choose Import Data Pump when you are prompted for the type of import script)

    (1) call the GetAccounts 1st and 2nd PutAccounts
    (2) associate GetAccounts size amount in your import format.
    (3) associate PutAccounts with the account dimension in your import format
    (4) adding NZP expression to dimension of amount
    (5) in GetAccounts put the following code...
    +' Get the names of account in the header line.
    If DW. Utilities.fParseString (strRecord, 5, 4, ",") = "number of head" Then
    + ' Local variables for the account names.
    + Acct1 dim +.
    + Acct2 dim +.
    +     +
    + ' Head Count (column 4 of 5) +.
    + Acct1 = DW. Utilities.fParseString (strRecord, 4, 5, ",") +.
    + ' Wages (column 5 of 5) +.
    + Acct2 = DW. Utilities.fParseString(strRecord, 5, 5, ",") +.
    +     +
    End If

    GetAccounts strField =

    (6) in PutAccounts put the following code...

    +'+ Local Variables
    Dim AcctName (2)
    Dim AmountVal (2)
    Dim z
    Dim rsAppend

    + "The names of individual account is analyzed and stored +"
    AcctName (1) = DW. Utilities.fParseString (RES. PvarTemp1, 2, 1, ',')
    AcctName (2) = DW. Utilities.fParseString (RES. PvarTemp1, 2, 2, ',')

    +' If student for accounts from here import file.
    AmountVal (1) = DW. Utilities.fParseString (strRecord, 5, 4, ",")
    AmountVal (2) = DW. Utilities.fParseString (strRecord, 5, 5, ",")

    +' Name of temporary importation work table +.
    strWorkTableName = RES. PstrWorkTable

    +' Create temporary table recordset trial balance +.
    Set rsAppend = DW. DataAccess.farsTable (strWorkTableName)

    For z = 01:58 ' this can change depending on the number of additional accounts processing

    + If IsNumeric (AmountVal (z)) Then +.
    +          +
    + If (z) AmountVal <> 0 Then +.
    +          +
    + ' Create a new record and to provide its field values.
    + rsAppend.AddNew +
    + rsAppend.Fields ("DataView") = "CDA" +.
    + rsAppend.Fields ("PartitionKey") = RES. PlngLocKey +.
    + rsAppend.Fields ("CatKey") = RES. PlngCatKey +.
    + rsAppend.Fields ("PeriodKey") = RES. PdtePerKey +.
    + rsAppend.Fields ("CalcAcctType") = 9 +.
    + rsAppend.Fields ("Account") = AcctName (z) +.
    + rsAppend.Fields ("Amount") = AmountVal (z) +.
    + rsAppend.Fields ("Entity") = 'chain of the entity here ' +.
    + rsAppend.Fields ("UD1") = "string C1 here +.
    + rsAppend.Fields ("node2") = "String C2 here +.
    + rsAppend.Fields ("UD3") = "String C3 here +.
    + rsAppend.Fields ("UD4") = "string C4 here +.
    + "Add folder to the collection +"
    + rsAppend.Update +
    +               +
    + End if +.
    +     +
    + End if +.

    Next

    +' Close the recordset.
    rsAppend.close

    If DW. Utilities.fParseString (strRecord, 5, 4, ',') <> '0' then
    + PutAccounts = DW. Utilities.fParseString (RES. PvarTemp1, 2, 1, ',') +.
    On the other
    + RES. PblnSkip = True.
    End If

    You may need to change the aboveto that meet your exact needs, but the basic structure of the scripts should not change too

    Published by: SH on May 25, 2012 10:34

  • I can't download data from USB to PC

    I have a video camera and you can not download files to PC. The message is unable to find files. The camera will download on my laptop, but who doesn't have a DVD burner.

    Hello Dany Shoff,.

    Welcome to the community Microsoft and thanks for posting the question.

    According to the description, it seems that you are having problems with the download of the flash player to computer data.

    I need to ask you some questions to help you better.

    1. what operating system is installed on the computer?

    2. What is the brand and model of the video camera?

    3. What is the exact error that you receive when you download files?

    Reply with answers to help you best.

  • Problem of downloading data from voice control

    Hello guys, when I try to activate the voice command on the Smartband talk, he wants choose me the language on the phone, I select American English and click Next. Then he opens a messagebox saying download voice data in the title and says error has occurred by a stranger. Type: 9999 No.: 1

    I have a rating of 4.

    Any help with this? Or anyone who could download the voice data please? Thanks in advance.

    In case someone else runs into the same problem, I solved by changing the language English TTS engine Google under Android settings.

  • Download data from an external table with a where clause clause

    Hello

    How can I insert data in an external table into a table already created in the database where person_id = person - _id on the external table?

    Example:

    External table
    XX_EXTERNAL_TBL (Person_id, emp_number, emp_name)
    Internal table
    XX_SQL_LOADER_TEST (Person_id, emp_number, emp_name)
    ID of the person already exists on the inner table (want only the last column to import where the ID of the person are the same)


    Thank you

    You talk of * 'Update' * (Fanfarrias y tambores)

    Update XX_SQL_LOADER_TEST SLT
    Set emp_number = (SELECT emp_number from XX_EXTERNAL_TBL WHERE AND.) Person_id = HI. PERSON_id)
    , emp_name = (SELECT XX_EXTERNAL_TBL emp_name AND where AND.) Person_id = HI. PERSON_id)

  • Downloaded data to guide library stops at October 30, 2011

    I have XP MCE with updates. My MC stopped downloading data from the guide beyond AM Oct. 30 a week ago. I tried various fixes as the reconfiguration of a different zip code, but the new data also stopped at 30 Oct. I guess it's a problem at my end and not a current limitation with Broadcasting Services of data files? What else can I try? Thought further - is it coincidence that the end of the list, I'm corresponds to the change of earlier British summer time GMT (did not notice problems previous years)?

    It is not a problem on your side. This is a problem that affects, it seems, all users in the United Kingdom.

    It's covered in TGB: http://www.thegreenbutton.tv/forums/viewtopic.php?f=5&t=786

    A ticket was also raised on Microsoft Connect (the official place for questions guide report) and the best thing you can do is pile on and mark it was important and that you can reproduce the problem: https://connect.microsoft.com/site1145/feedback/details/696165/uk-guide-data-not-updating

  • Download data via Web Service

    Hi all

    We have an obligation to download data from the SAP system to our Oracle database. Problem is that we will not be able to connect to SAP DB. They weill provide a webservice and we should use that in passing parameters.

    My query is, how do we do it in Oracle DB. I want to write a program unit and call the web service whenever necessary.

    In this regard any idea will be a great help.

    Thank you

    It can be dynamic enough easily - that Oracle has a flexible set of functionality to create dynamic XML on the fly.

    A few years ago that I build a dynamic interface in a 3rd party web service system - a very awkward thing that you should first determine the entity you want, determine the useful to the entity attributes, select those of interest, convert these digital IDs and construct a web call. Which in turn returned a dynamic data set based on specified attribute identifiers and the provided filter criteria.

    The PL/SQL itself package that did it was to a few 100 lines of code and used dynamics processing (send and retrieve) via UTL_HTTP. The 3rd third party provider has actually expressed an interest in the package it has helped an interactive test of their web service (complicated and complex) interface.

    So, personally, I'm very uncomfortable with the help of UTL_HTTP as transport interface - as it allows me complete control and management of sending 'transaction' and HTTP payload and received.

  • How do I export data from one day to backup disk.

    Hi all

    Here we have a requirement like, we need to download the data from one day to the external drive and we must compire the exported data and the data in the table.
    I googled and I have discovered that using expdp command we can export the table content, but my Question is how do I export data from one day. My table having 2 years of data and I need download the data of only one day.

    expdp scott/tiger@db10g tables = EMP, DEPT = TEST_DIR dumpfile = EMP_DEPT.dmp expdpEMP_DEPT.log = logfile directory

    Can someone tell me how to download data from one day to the table & compare data exported with the data in the table. (I know both exported and data of the table data will be the same that we are downloading data of the actual table, but for tests, I need to know how to compare).


    Thank you
    Sree

    However, I do not understand the scenario but here is a way to compare:
    (1) change the name of the table newly created in another name
    (2) import the exported file once again

    you will have the same data in both tables

  • Bringing data from Excel, same content with different file name

    Hello world

    I was download data from Excel files with success so far.

    The files that I used to download, have had the same 'FileName.xls '. Now, what I have is a workbook with a different name, so I guess as it was not created on the ODB like that he will not be transferred, in the name of the file is the same. Let me explain better.

    MYBEAUTIFULXLS.xls - before
    MYBEAUTIFULXLS_MORETEXT.xls - now

    Can I use something like MYBEAUTIFULXLS % somewhere on the ODI, for him to download data from the files that begin with the characters?

    I really appreciate your ideas!

    Best regards.

    J_ORCL

    Option 1 seems to be preferable, because there is risk associated with the 2nd.
    And debugging will also be little difficult.

    This is my personal opinion only... you can choose the desired option.

    Thank you
    Fati

  • I just downloaded a version of EVALUATION of MapPoint 2013 demographic details resemble MapPoint 2007... the trial version not have the new data from the 2010 Census?

    I just downloaded a version of EVALUATION of MapPoint 2013 demographic details resemble MapPoint 2007... the trial version not have the new data from the 2010 Census?

    Hello

    The question you have posted is related to Microsoft MapPoint and would be best suited to:

    Technical support of Microsoft MapPoint

    http://www.Microsoft.com/MapPoint/en-us/support.aspx

    Support for MapPoint, streets & trips and Highway

    http://support.Microsoft.com/ph/851

  • I downloaded Microsoft Money Plus sunset and want to transfer the data from the files Microsoft Money 2005. Is this possible?

    I am using Windows 7 and have accounts with MSN Money 2005 and I try to have more data from the Money 2005 file updated in a format that is compatible with the money, and I can use the money more

    See the information displayed by SpiritX MS MVP in the http://answers.microsoft.com/en-us/feedback/forum/user/microsoft-money-question/13ef1581-2dfd-45fc-85ba-92cbcade313a thread

Maybe you are looking for