Report showing wrong data

Hi Gurus,
When we are generating report in the answers in one column it is showing wrong data from where i have to start for this issue.
Thanks,
Rafi

Pull that column alone,run report, compare the results with your manual query, and also compare the physical query.
if all are good then try to add other column from any other dim and then do the same as above
repeat till you know the cause.
Pls mark if helps

Similar Messages

  • "Invoice History Report "show wrong balance for supplier invoice with USD

    Invoice History Report show wrong balance for supplier invoice with USD Currency
    After I run this report i see in the last of this report there is difference between the supplier total
    USD (Currency ) and the open Balance USD , it is decreased the open balance
    for supplier with 2300 USD with out any reasons
    bellow is some data copy of the report
    ======================================================
    Supplier Site Total: SAR 34,700.00
    Supplier Site Total: USD 39,000.00
    Supplier Total: SAR 34,700.00
    Supplier Total: USD 39,000.00
    Open Balance: SAR 34,700.00
    Open Balance: USD 36,700.00
    *** End of Report ***
    ==============================================
    please advise me from where can this differenc ( 39000 - 36,700=2300 )COMMING
    or it is bug in this report , becuase i compare this report with other report in account payable like
    -supplier open balance letter
    -invoice register report
    -invoice aging report
    all this report give me the amount for supplier USD =39000
    BUT AGIN FROM WHERE THE SYSTEM DECREASED THE AMOUNT TO 36,700
    thanks

    Can you try running Create Accounting For payments just before you run the Invoice History Report and re-check .
    Thanks

  • Aggregate table showing wrong data

    Hello Gurus:
    I am working on an issue, where a report is showing wrong value for an aggregated fact table.
    If I try not including it in query, then results work fine. But by default BI server is pointing to aggregate table ( which it should ).
    So my questions are
    1) Does Aggregate tables are refreshed automatically with DAC?
    2) I know data is wrong in aggregate table. How do I verify?
    3) How to make a particular report hit regular table instead of aggregate table?
    Please let me know.
    Thanks.
    ~Vinay

    Alright. So I made some progress on this issue, HOWEVER it is still not solved.
    1) Aggregated tables are refreshed daily with DAC. There is a script for that on server which is created using Aggregate Persistence wizard.
    2) ONLY one column is showing wrong data. I have verified this using Toad. However I dont know why is it showing wrong data. Theoretically it should be fine.
    3) this question is still same.
    How to make a particular report hit regular table instead of aggregate table?
    Please help me out.
    Thanks.
    ~Vinay

  • Invoice table sold to party show wrong data

    Dear All
    While creating excise invoice in background sold to party show wrong data.
    In invoice ship-to-party andsold-to-party display correct but when we check
    in J_1IEXCHDR table ship-to-party and sold-to-party display same data.
    After upgrading support packs this problem came.
    Regards
    Pyneri

    Hi
    Refer this
    Re: can anyone tell me in which table is sold-to-party name stored
    Regards
    N Ganesh

  • Crystal report showing Incorrect data against Bex Query

    I have created Crystal report on top of Bex Query, I have not done any calculations in the report, just dragging structure and key figure in the report, ran for one month, when I compare with Bex Query with same period, it is showing incorrect data.
    I don't know what can be wrong here?
    We are Business Objects 3.1 SP3.
    Thanks,
    Ravi

    HI,
    I would suggest you trace the workflow in Web INtelligence according to these notes:
    Tracing:
    Unix : Note 1235111
    Windows : Note 1260004
    and then post a link for downloading the trace files here.
    regards
    Ingo

  • ST03N shows wrong data

    Dear all,
         we have rediculous data shown on ST03N reporting -- "Infocubes: All data".  One of our query shows OLAP time=DB time=Frontend time=1544.0.   Could anybody tell what might be wrong with the technical content?  Our support packages are as following:
    We are currently at :
    supportlevel 0004 (BI_CONT 703 0004 SAPKIBIIP4 Business Intelligence Content);
    SAP_ABA 700 0011 SAPKA70011 Cross-Application Component;
    SAP_BASIS 700 0011 SAPKB70011 SAP Basis Component;
    PI_BASIS 2005_1_700 0011 ;
    SAPKIPYJ7B PI_BASIS 2005_1_700;
    SAP_BW 700 0012 SAPKW70012 SAP NetWeaver BI 7.0;
    thanks in advance,
    wx.

    Have you also installed BI admin cockpit and the technical content before checking with ST03,since from BI 7 ,you need to have this activated.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0279c7a-da1c-2a10-7eba-dfcc252d5b34
    https://forums.sdn.sap.com/click.jspa?searchID=9769540&messageID=4880760
    Hope it Helps
    Chetan
    @CP..

  • Downloads with Safari show wrong date

    Hi, this is my first post and I'm stumped.
    When I download a file (i.e. PDF) via Safari on either my Imac or Macbook (4.03 and 4.02) both running Leopard 10.5.7 it shows up in my downloads folder with the wrong date: wrong year, month, and day.
    When I download the same file with Firefox the download date is correct.
    Does anyone have any suggestions to remedy this annoying problem? Thanks.

    Ok. I just downloaded a PDF via Safari that shows the creation date as: 23/12/08 1:10 AM.
    Same file downloaded via Firefox shows date correctly: today at 9:16 PM.
    The date from Safari has been all over the map... 03, 07, 00 etc. all different.
    Message was edited by: i-Mack

  • Purchase Order Report Showing Delivery Date

    Hello All
    I am looking for a report which will show Purchase orders with delivery date . something like ME2N but it is not showing delivery date.
    Regards
    Yogesh

    Hello Guys
    Thanks for your answers but it seems no body have checked it.
    Vishal : I am looking for a standard report and not table.
    Ranga : In SPRO field delivry date in not there under new scope of list
    Chidanand: Boss ALLES not giving delivery date.
    Please tell me some other way.
    regards
    Yogesh

  • Report shows no data in the Viewer

    Hello,
    i'm new to Crystal Reports and i have to develop a few Reports.
    I load the data with a stored procedure form a sql-server. This is working and i get all datas i need. But the Report Viewer doesn't show any data.
    I don't know why.
    If i do it over a select statement and not a stored procedure, the Report Viewer shows me each data set up to 9 times.
    I'm working with three tables.
    Here is the c# code i wrote.
    command = new SqlCommand();
    command.Connection = connection;
    command.CommandType = CommandType.StoredProcedure;
    SqlParameter myParam = new SqlParameter("@FormulareAuftragNr", SqlDbType.VarChar, 5);
    myParam.Value = AuftragNr;
    command.Parameters.Add(myParam);
    command.CommandText = "dbo.Abfrage_Arbeitsplan_Bericht";
    connection.Open();
    SqlDataAdapter dataAdapter = new SqlDataAdapter(command);
    ds = new DataSet("ABC");
    dataAdapter.Fill(ds, "dbo.Abfrage_Arbeitsplan_Bericht");
    druckarbeitsplan.SetDataSource(ds);
    CR Version : latest
    VS Version : 10.30319.1
    OS : Windows 7
    it is for an Windows App
    Johannes

    CR Version : latest
    That is not enough info. All my content below is based on the assumption that you are using CRVS2010 (V. 13.x)...
    The code does not show you loading an actual report(?). Also, I'm assuming that after:
    druckarbeitsplan.SetDataSource(ds);
    you have code to show the report in the viewer or you're printing  exporting the report?
    For datasets see [this|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533323335333433333332%7D.do] KB. Also, make sure you are using the full 4.0 framework, not the client framework.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Report returns wrong data when run on server

    Hi,
    I'm runing CRS XI R2 on Windows Server 2003 SP2.  When I refresh a report in the Crystal Reports XI Designer, I'm getting correct data.  But when I schedule the report to run on the server it returns wrong data.  The data is different from what I see when I refresh it from the designer.  In the report I have running totals set up to count customers that meet a certain criteria.  The report is very large.  It take almost 2 hours to refresh.
    I was wondering what is causing the difference in running total data between refreshing it on the designer and running it on the server.  Is it returning wrong data b/c of it not reading all the records?  Should I be making any changes to the server settings?  I saw that under pageserver, there are options for  setting the 'Minutes Before an Idle Report Job is Closed' and 'Database Records To Read When Previewing Or Refreshing a Report".  Do either of those have anything to do with the report returning incorrect data when being scheduled to run on the server?
    Thanks,
    Kim

    Hi Xuandao,
    You would need to Use Cell Binding and Trigger concept to accomplish this.
    Its simple, however, you would have to work on a trial and error basis to understand this concept as implementing the same is subject to your dashboard and WEBI Design.
    Open you LiveOffice.
    Insert your WEBI, Now, go to Object Properties of your WEBI, select the second tab that says Prompt, Here, it lists the prompts that you have for your WEBI. This would also enlist your BEx variables as well. Select this BEx variable and click on the button that says Prompt at the bottom of this window. Here, select choose Excel Data Range and click on the cell select button on the right (small button that lets you choose what cell you want to bind this prompt to), Now select a free cell that would not be even populated later on when you run the dashboard say A1 (remember the value that you select). Click on OK and again OK. The WEBI Refreshes and you can see all the prompt values at the cell A1. These are all the possible values stored for your BEx prompt variables (these values are fetched from BW system dynamically).
    Now, save this LiveOffice, Go to you dashboard. Connect your dashboard to your Live office. Go to Data-> connections-> Now, select the WEBI and in the right hand pane  go to Usage tab, here, Click on Trigger cell button on the right hand side and select A1 in you LiveOffice.
    It should work fine.
    Let me know.
    Rgds,
    Sreekul Nair

  • Print link on report shows 'no data found' when LOV has not been used

    Hi all,
    I have a simple standard report that queries data based on the value in a Select List. This Select List allows users to pick a year for the report. The LOV has a default of TO_CHAR(SYSDATE,'YYYY').
    If I open the page using the associated Tab everything wotks OK. However, if I open the page via a button on my home page, the prink links fails:
    The page opens OK, the select list defaults OK and the report shows the correct data. However, if I click on the 'Download as CSV' or 'Print' links I get 'no data found'.
    If I update the LOV to 2010 everything works. If I set it back to 2009 evenrything works. I just cant get it to work when I open the page.
    I have tried adding computations to get this to work, but this does not seem to help.
    Any ideas?
    Thanks,
    Martin

    Hi,
    It would depend on what has been added, if anything, to the redirect. The redirect should just function as though you had typed in a URL into the address bar and pressed Enter. The page doesn't get submitted, so any data entered onto the page itself is, unless it is already in session, lost. A button, however, should submit the page and Apex will store all values in the session. So, if the value you need for the LOV is from the previous page, then this is the preferred method - but, note, that the redirect can also store values provided the page item name and the value is included in the redirect's URL string
    Andy

  • Financial Tax Register Report shows No Data Found

    Hi All,
    We are upgrading from 11.5.10 to 12.1.3, ofter upgrading to 12.1.3 when i running the Financial Tax Register Report it is showing No Data Found.
    Please reply me ASAP.
    Regards,
    Raju.

    Hi,
    For your references i posted the log file of financial tax register report.
    E-Business Tax: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    RXZXPFTR module: Financial Tax Register
    Current system time is 15-FEB-2013 09:38:25
    Publishing concurrent program ZX : RXZXPTEX.
    Request 487766 submitted.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Current system time is 15-FEB-2013 09:38:25
    Request restarted at :15-FEB-2013 09:38:27
    Publishing concurrent program ZX : RXZXPTEX.
    Publishing request ID 487766.
    Its a BIDI char set
    Its not a BIDI language
    FA_RX_SUBMIT_PURGE (PURGE API PROGRAM NAME =ZX_EXTRACT_PKG.PURGE) (ROWS PURGED =0)
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    36093
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 487765      
    Number of copies : 0      
    Printer : noprint
    Finished executing request completion options.
    Concurrent request completed successfully
    Current system time is 15-FEB-2013 09:38:28
    ---------------------------------------------------------------------------

  • Ordered of item master show wrong Data

    Dear All
    i have problem in Ordered field of item master data ,because in some items it shows quantity but no open PO or A/R Reserve or Production Order or Inventory Transfer request and even Inventory status report show nothing ,you can find image of problem in attachment.
    Please some help with this
    Regards

    Hi,
    Not sure about this SAP note whether need to consider or not.
    752031 - Using the Restore functions
    Thanks & Regards,
    Nagarajan

  • SQL Server 2008 R2 Disk Usage report showing incorrect data file

    When I go to ANY database (System, AdventureWorks*, user) in Managemant Studio, I right-click on the db, select Reports, select Standard Reports, and select Disk Usage.  The disk usage report shows the correct db on top, but always only shows AdventureWorks_Data.mdf
    when I expand Disk Space Used by Data Files section.  This happens to any db I try.  When I look at Database Properties/Files for that database, the logical and physical file names are correct.
    Since the correct files appear in Database Properties/Files, I'm hoping it's just a bug in the report.  Same thing happens if I run a Disk Usage by Table report for ANY database,  The tables for AdventureWorks always only appear,
    Thanks,  Mike

    Thanks Tibor!
    I looked at the Properties for my login under Security/Logins and it shows my default db to be master.  Not sure if this is correct, but it sounds plausible.  I'll see if I can report the problem.
    The only issue I can think of that was out of the ordinary for the install of 2008 R2 EE was this:
    I originally installed 2005 DE, since it wouldn't expire.  After the install of 2005 DE, I decided to uninstall it and install 2008 R2 EE.  In between the installs of 2005 DE and 2008 R2 EE, I installed/uninstalled stupid stuff like 2008
    Express, 2008 Express with Advanced Services (?), and 2008 EE.  After each uninstall I also did a system restore to be safe.
    Now each time I open Management Studio, i get a pop-up stating that there are SQL Server 2005 registered servers on my sytem and asks me if I want to add them into Management Studio.  I always say no.
    The AdventureWorks db is from 2005 and was installed automatically with 2005.  I installed the 2005, 2008, and 2008 R2 AdventureWorks databases to my R2 for class.  I'm not sure now if the Disk Usage report is showing me AdventureWorks_Data.mdf
    because of my install into 2008 R2 EE or my previous install of 2005 DE.
    Hope this kind of makes sense...
    -Mike

  • CRM 2007 Interactive OLTP Reports - Showing No Data

    Hi,
    I am using CRM 2007 with in-built BI client and wanted to activate OLTP interactive reports. I have done settings as per C41_BB_ConfigGuide_EN_DE.doc document provided by SAP. But when I am executing these OLTP queries this shows these error .
    1. System error in program SAPLRSOA and form FUNC RSOA_VCUBE_READ_REMOTE_DATA[6]
    2. OLAP: General error on BI side.
    And shows no data.
    Please suggest a solution.....
    Best Regards,
    Lokesh Kumar
    Edited by: Lokesh Kumar on Mar 9, 2009 2:59 PM
    Pls reply someone

    Hello Lokesh,
    In SM30 maintain the Table SMOFPARSFA for the PARAMVAL field vaue of your BI interactive client.
    I think it should help.
    Best regards,
    Partha Das

Maybe you are looking for

  • My iPhone 4 is stuck in the update screen and my lock button is not working. How can I fix this?

    I just tried to update my iPhone 4 to 7.1 and for some strange reason the phone wouldn't update then wanted me  to restore it... (Figures!) But my lock button no longer works so holding the home button and the lock button is a option I have to rule o

  • Upgrading 10.3.9 to Leopard on Dual 2.5 G5

    Hi, Currently use a Dual 2.5 GHz PowerPC G5 with OS 10.3.9 For the moment I have 1.5 GB Memory 24' Cinema HD Display Samtron 94B Display I use it essentialy with Final Cut Pro Studio HD, early edition which gives me Final Cut Pro v. 5.0.4 I also use

  • How to retrieve the data from SAP database.

    Hi Pals, How to retrieve data from SAP R/3 System to my third party software. I will make my query little bit more clear. There is a list of assets entered and stored in the SAP system. For example 3 mobile phones. 1) Mobile 1- Nokia 2) Mobile 2 - Sa

  • "The unit chosen is not supported."

    I get the msg: "The unit chosen is not supported." (Adobe error message)  when I attempt to retrieve a scanned image from the Xerox Scan Utility window that appears in Adobe Acrobat after I have scanned the document. I can open MS Visio and retrieve

  • Css problem in fxml

    Hi; i made a css loaded in fxml: <AnchorPane id="AnchorPane" fx:id="ac" prefHeight="200.0" prefWidth="320.0" style="-fx-border-width: 10px; -fx-border-color: black;" xmlns:fx="http://javafx.com/fxml" fx:controller="style1.Style1Controller">   <styles