BW Reporting and R/3 Data

Hi,
I have deleted some data from a table in R/3.
But when i am quering that Table in BW.
I am still getting  records which are deleted from R/3.
Please help me out.

Himanshu,
I agree with Sam's post.
If you are reporting on the Basic Cubes then the data will be stored in the BW system and if you are reporting on Remote cube then you wont find any data in the cube, since it is a virtual infoprovider.
Moreover, if you are doing full update then schedule the infopackage once again then it wont show the records which you have deleted from the tables. It will update only the records available in the table and then you can report on that.
Hope it helps...
Regards
Gattu

Similar Messages

  • Web Analytics reports and not showing data

    Recently we are not seeing Web Analytics data on our sites in our SharePoint 2010 farm. Before we used to see the data. This is what we are seeing now "There is no data available for this report. Here are some possible
    reasons: (1) Web Analytics has not been enabled long enough to generate data;
    (2) There is insufficient data to generate this report; (3) Data logging
    required for this report might not be enabled; (4) Data aggregation might not be
    enabled at the level required for this report."
    I checked the Web Analytics Service Application and it is started. Web Analytics Data Processing service is started on all servers.
    Microsoft SharePoint Foundation Usage Data Import Timer job is running every 30 minutes, while Microsoft SharePoint Foundation Usage Data Processing job is disabled. Does this job has to be
    enabled for the web analytics data to be reported? Are there any other places to check to debug the problem? Appreciate any help.
    rani

    Hi Rani,
    The timer job Microsoft SharePoint Foundation Usage Data Processing needs to be enabled, as it will aggregates and writes the data to the Web Analytics Reporting database.
    Please enable this timer job and run the timer job to see how it works.
    More reference about this error:
    https://timreemtsma.wordpress.com/2011/10/25/sharepoint-2010-web-analytics-no-data-available/
    Thanks,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • CALL TRANSACTION IN INTERACVTIVE REPORT AND DIRECTLY DISPLYAING DATA

    I have created a interactive report  in ist list i displayed data of sales order no in the 2nd list i have to call transaction va03 and it should display the data for the sales order no which i have selected from the ist list but i am enable to write code for this can any can send the code.

    Hey ravi can u be clear.I cant understand your requirement.There wont be any coding for visual composing.The coding has to be done in ABAP and the transactiond code has to be called on to the portal.

  • Generating annual report and list the data into JTable

    Hi, I am stuck with my project. I know that my logic is wrong, but I couldn't figure out the solution. Please help me.
    I hava a database, one of the table is the booking information.
    I need to generate a report which shows the number of booking for each companies for each month.
    I have three data in my database, two different companies(XX and YY), with three different months(Jan, Feb, Jul).
    The problem that I encountered is that the data shown is inaccurate. It showed 6 rows of data, and the number of booking is incorrect.
    It showed :
    Company Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
    XX 1 0 0 0 0 0 0 0 0 0 0 0
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 1 1 0 0 0 0 1 0 0 0 0 0
    How can I loop for different companies and add the number of booking each time and get the right output as follows?
    Company Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 0 0 0 0 0 0 1 0 0 0 0 0
    This is my partial code:
    ArrayList stringList = dao.retrieveAllBooking();
    for (int i = 0; i < stringList.size(); i++) {
    ab = (AllBooking) stringList.get(i);
    d = ab.getDATE_OF_USE_TO();
    StringTokenizer ss = new StringTokenizer((String) d, "/");
    String day = ss.nextToken();
    String month = ss.nextToken();
    String year = ss.nextToken();
    Org = o.getORG_ID();
    if(month.equals("JAN")){
    JanDR++;
    if(month.equals("FEB")){
    FebDR++;
    if(month.equals("MAR")){
    MarDR++;
    if(month.equals("APR")){
    // Apr = ab.getNO_OF_REQ();
    AprDR++;
    if(month.equals("MAY")){
    //MayDR = ab.getNO_OF_REQ();
    MayDR++;
    if(month.equals("JUN")){
    // Jun = ab.getNO_OF_REQ();
    JunDR++;
    if(month.equals("JUL")){                               
    JulDR++;
    if(month.equals("AUG")){
    AugDR++;
    if(month.equals("SEP")){
    SepDR++;
    if(month.equals("OCT")){
    OctDR++;
    if(month.equals("NOV")){
    NovDR++;
    if(month.equals("DEC")){
    DecDR++;
    Object[] data={Org,JanDR, FebDR, MarDR, AprDR, MayDR, JunDR, JulDR, AugDR, SepDR, OctDR, NovDR, DecDR, JanSR, FebSR, MarSR, AprSR, MaySR, JunSR, JulSR, AugSR, SepSR, OctSR, NovSR, DecSR};
    tableModel.addRow(data); //add the data to the table.
    I'll appreciate for your help. Thanks.

    Off hand, it appears perhaps under certain circumstances you need to insert a new record, whereas under other circumstances you need to update (that is to say modify) the record by retrieving it, changing it, then updating it. If you pepper your code with System.out.println() statements, you can see where your problems occur in the code.
    I say you may have inserted a record instead of updated due to your statement here. Looks like XX should have been one record rather than two.
    Got:
    XX 1 0 0 0 0 0 0 0 0 0 0 0
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 1 1 0 0 0 0 1 0 0 0 0 0
    Expected:
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 0 0 0 0 0 0 1 0 0 0 0 0

  • Typical report and it's data model!

    Hi,
    i have a data source which has only three fields, namely user name, date, availability of the user ( it is character string of length 1 just displays A if he is availbale and displays N if he is not availbale on a given date).
    now when i want to create cube , it should have at least one key figure, where as in my case no key figures are present in the available three info objects.
    is der any chance for me to design this ?
    Many thanks in advance.
    Thanks,
    Ravi

    Roberto,
    Thanks again!
    yes,i was talking about that KF only.we have data source (made by FM and ES) which is perfectly working for the three fields which all are characteristics as i told u before!
    But since we cannot make any infocube with out KF , i wish to have KF for only making cube!since u suggested to go for any counter which would be acted as appending records for each user in the result set!
    now if i want to load this field in the data source, i need to change the logic of FM, which i am not so comfortable and quite lengthy too.
    My question to u is whether i can go ahead by simply creating KF and  in Transfer rules or update rules include a simple logic of giving numbers for each record rather than changing the code in FM in R/3 ( which i feel is more complex )?
    Thanks,
    Ravi

  • Migrating from 11i to R12 - setup reports and diagnostics

    Hi,
    we are looking at migrating(not upgrading) from 11i to R12 and looking for setup scripts and diagnostics which can tell what org structure has been followed in 11i. Is anybody aware of such scripts and/or diagnostic programs provided by Oracle. We also want to find out the the volume of data etc in various primary tables. Do we have some kind of report for this too ? Any help would be highly appreciated.

    983173 wrote:
    Hi,
    we are looking at migrating(not upgrading) from 11i to R12 and looking for setup scripts and diagnostics which can tell what org structure has been followed in 11i. Is anybody aware of such scripts and/or diagnostic programs provided by Oracle. We also want to find out the the volume of data etc in various primary tables. Do we have some kind of report for this too ? Any help would be highly appreciated.Do Not Compile EBS R12 Reports Using rwconverter.sh or Reports Builder from IDS 10gR2 [ID 786794.1]
    Using the OracleAS 10.1.2 Forms and Reports Builders with Oracle Applications Release 12 [ID 444248.1]
    Upgrade from 11i to R12 - Custom Forms,Reports and Workflows
    Upgrade from 11i to R12 - Custom Forms,Reports and Workflows
    Identifying Data Model Changes Between EBS 12.1.3 and Prior EBS Releases
    https://blogs.oracle.com/stevenChan/entry/ebs_data_model_1213
    EBS Seed Data Comparison Reports Now Available
    https://blogs.oracle.com/stevenChan/entry/ebs_seed_data_comparison_reports
    eTRM
    http://etrm.oracle.com
    Thanks,
    Hussein

  • Grr1 report using GP12N plan data

    Hi Gurus,
    Is it possible to use GRR1 report and get plan data entered in GP12N in the report???If yes, please tell me know??
    Or best is to enter plan data in cost center and profit center accounting and create grr1 report???
    Please suggest.
    Thank You

    Dear Mr. Hari,
    Thank you for your information. I have defined the Notification in the key field and the Equipment in the data field of the DSO- since i want them as free characters.
    Now based on whatever help you have provided can i remove the Notification and the Equipment from the key and data fields respectively and will this solve my problem.
    My doubt is suppose if i remove them from the key and data fields, will i have the option of having them as free characters - because users want to drill down based on these fields for further analysis.
    Hope you will clarify my doubts and help in resolving my problem.
    Regards,
    M.M

  • Is there standard report for planned and actual devlivery date?

    Hi Guru,
    Could you help me to find standard report to compare planned delivery date in PO and actual delivery date (GR Posting date)?
    I wonder, Is there standard report for planned and actual delivery date?
    or I have to create a customizing report.
    Thank you very much.

    hi
    i dont think it is possible to see both in one pan so try to create some Z report
    u try ME80fn here u have to change the views ,in del shedule view u can see the delivery dtae and in PO histry view u can see the posting date
    regards
    kunal

  • REPORT AND DATA BASE SETUP

    i have been using CView Manager 11 to do my reports and is relatively easy to setup reports to the data base, but not all of my reports work with this program plus there is no user manual available.  So I am trying to switch over to Chrystal Reports 11 with little success.  I can not figure out how to setup the data base server with this program.  I am trying to access the McKesson IntelliShelf Supply (Supply Scan) data base server.  Is there anyone that can help me with this?

    McKesson is an OEM partner of ours. I suggest you ask them how to.

  • Report and data comming wrong after compress data with full optimization

    In SAP BPC 5.1 version to increase the sysetm performance we did full optimization with compress data.
    Theis process end with error, after login into system the report and values comming wrong,
    What is the wrong,how to rectify it
    Regards
    prakash J

    This issue is resolved,

  • Report Script returns no data and "java.io.FileNotFoundException" error

    When attempting to write to a new file (Eg: C:\TEST.txt), Report Script returns no data and "java.io.FileNotFoundException" error occurs.
    This error occurs only in Essbase 9.3.1.3 release, however it works fine in release 9.3.1.0.
    After running the report the script, it pops up the follwing message:
    "java.io.FileNotFoundException: ..\temp\eas17109.tmp (The system cannot find the file specified): C:\TEST.txt"
    When checked the TEST.txt, it was empty.

    Sorry folks, I just found out the reason. Its because there was no data in the combination what I was extracting.
    but is this the right error message for that? It should have atleast create a blank file right?

  • R12: How to filter AP and PO Accrual Reconciliation Report based on GL Date

    Hi,
    Anybody know how to filter AP and PO Accrual Reconciliation Report based on GL Date from and GL Date to in R12?
    Since we just upgraded from 11.5.10 to 12.1.3 and found we cannot filter those report for specific date. It shown all data included the old data from 8 years ago also.
    We need to run the report only for specific date only. Please share with me if anyone know about this.
    Thanks.

    In 12 you can rebuild and run the report for a particular period, but not a single day if that's what's required

  • All Inventories Value Report&Inventory Ageing Report& Current And as on Date Stock not matching

    Hello All,
    I am new to inventory. I need some help.
    After opening the periods of purchasing and inventory for the month of April'15. The below reports should match in costing.
    But they are not matching. Kindly help on this as its PROD.
    Inventory Ageing Report
    Current And as on Date Stock Statement With Value Report
    All Inventories Value Report - Average Costing
    Thanks
    RR

    MBEWH is the valuation history, this is only updated with the first movement after a period closure. And the period is a month.
    There is no table in SAP that holds the stock information on daily basis.
    You have to develope this yourself. Easiest method by copying a table like MBEW and MARD  daily to a Z-Table.
    A stock situation  at a certain date can be calculated with MB5B.
    Edited by: Jürgen L. on Aug 5, 2008 4:06 PM

  • How can i use FNDLOAD for XML reports and data defnitions

    I registerd concurrent program and linked xml reports and data defnitions in staging instance, and successfully moved to DEV.. after that stage is refreshed and when i download the details from DEV and uploaded to Stage only concurrent program i can upload...Wheteher we can use FNDLOAD Command for the Data definitions or Data template for the XML Report,used FNDLOAD for the concurrent program, it uploaded only concurrent program details.

    Hi,
    Use XDOLoader.
    Note: 469585.1 - How To Use XDOLoader?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=469585.1
    Regards,
    Hussein

  • ICal reports that it can't find server, and lots of data from several years ago is trying to get attention.  Cannot bring up calendar in any view to use. also keeps loading unused calendar websites from long ago.  I can' remove them. what to do?

    iCal reports that it can't find server, and lots of data from several years ago is trying to get attention.  Cannot bring up calendar in any view to use. also keeps loading unused calendar websites from long ago.  I can' remove them. what to do?

    UPDATE: I had 36 Safari windows open and minimized on the dock from my last session; 20 of those windows failed to open b/c Safari "couldn't find the server"; I just went to the URL bar of all 20 pages and clicked return, and all 20 pages loaded perfectly, without dropping any images or losing formatting. This is a puzzle!!!

Maybe you are looking for