Can I restore the deleted statistical data from the database tables?

Hi all,
   I have deleted the statistical data from the database tables like(Ex: RSDDSTAT, RSDDSTATWHM,..) by mistake through RSA1> Tools> BW Statistics for Infoproviders--> Delete.
Is there any way to restore the deleted data back? Thanks in advance.

Now I'm really confused-
Your first post said
"<b>I have deleted the statistical data from the database tables like(Ex: RSDDSTAT, RSDDSTATWHM</b>,..) by mistake through RSA1> Tools> BW Statistics for Infoproviders--> Delete."
but your last respsonse said
"I have deleted the BW Statistics data, <b>not the actual data in RSDDSTAT tables</b> through
RSA1 -> Tools -> BW Statistics for InfoProviders -> clicked 'Delete' bin to delete data."
If you used the RSA1 -> Tools -> BW Statistics for InfoProviders -> clicked 'Delete' - <b>then you deleted the data from the RSDDSTAT tables</b>. This assumes you accepted the default date range that would have popped up after the clicking on the Delete button which specified to delete thru the current date.  If this is what you did, the data is gone.  Your only hope is be to recover from a DB backup.  
The data in the RSDDSTAT tables is what is used to feed the BW Statistics cubes, generally on a daily basis.

Similar Messages

  • How can I restore 3rd party app data from my backup in the cloud

    First a brief history. I use the iCloud to backup my iPad 2 and hardly ever synch it to itunes on my computer. I got the new iPad and restored the backup of my iPad 2 onto it.  All was fine except that an issue I had on my iPad 2's Safari had transferred over to my new iPad. That's is for another discussion. Anyhow I went to the genius bar and they said to just setup my new iPad as a new device and then manually install everything back on it. Stuff like mail, contacts, etc, would be reloaded from the cloud. So I did and I noticed that one of my 3rd party apps, MadPad, had none of my saved data. Does anyone know of a way to restore 3rd party app data from the iCloud? Is there some sort of utility out there that would do this?  I don't want to restore it from my previous iPad 2 backup because it will reintroduce the Safari problem back onto my new iPad.
    Thanks!

    Assuming that you even have a backup with the data in it, you have no choice but to use a backup in order to restore that data. That is the idea behind backing up to iCloud. If that is the only backup that you have - then that is the one that you have to use.
    But if the backup is bad - or had corrupt data - then you will end up with the corrupt data again. You cannot selectively restore app data from a backup. you restore all settings and data - or nothing at all.

  • IPhoto for iOS removes the GPS exif data from the photo after an edit

    iPhoto for iOS removes the GPS exif data from the photo after an edit
    Using the iPhone camera, I take a photo and then I want to make the photo a little brighter.
    So, I edit a photo using iPhoto for iOS and then save the photo back to the camera roll.
    Now, I might want to see where that photo was taken via another app (like Photo Mapo) or on the map using the Photos app, or even the Mac iPhoto app.
    However, the GPS data has been removed. Looks like all of the other exif data is still in the photo.
    Why not just have a feature to remove the GPS data if the user wants? no reason to remove it for them.
    The user explictily chose to have location services turned on so the GPS data would be in the photo.
    Is this a bug?
    Thanks,
    Brian.

    First thing to try is a reboot of your iPad. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appears. Let go of the buttons and let the iPad restart. See if that fixes your problem.
    None of my cameras has a GPS function so I never see that data in the info of a photo in iPhoto for iOS. But I do see the map choice to set a location for the photo. Perhaps a reboot will fix this for you.

  • Fetch data from different database tables

    Hi...
    How can i fetch data from different database tables and put it into a internal table and then display it??? Can provide simple short codes as i'm new to ABAP. Thanks.

    Hi,
    Check this sample code..
    TYPE-POOLS: slis.
    DATA: BEGIN OF itab OCCURS 0,
            vbeln TYPE vbeln,
            expand,
          END OF itab.
    DATA: BEGIN OF itab1 OCCURS 0,
            vbeln TYPE vbeln,
            posnr TYPE posnr,
            matnr TYPE matnr,
            netpr TYPE netpr,
          END OF itab1.
    DATA: t_fieldcatalog TYPE slis_t_fieldcat_alv.
    DATA: s_fieldcatalog TYPE slis_fieldcat_alv.
    s_fieldcatalog-col_pos = '1'.
    s_fieldcatalog-fieldname = 'VBELN'.
    s_fieldcatalog-tabname   = 'ITAB'.
    s_fieldcatalog-rollname  = 'VBELN'.
    s_fieldcatalog-outputlen = '12'.
    APPEND s_fieldcatalog TO t_fieldcatalog.
    CLEAR: s_fieldcatalog.
    s_fieldcatalog-col_pos = '1'.
    s_fieldcatalog-fieldname = 'VBELN'.
    s_fieldcatalog-tabname   = 'ITAB1'.
    s_fieldcatalog-rollname  = 'VBELN'.
    s_fieldcatalog-outputlen = '12'.
    APPEND s_fieldcatalog TO t_fieldcatalog.
    CLEAR: s_fieldcatalog.
    s_fieldcatalog-col_pos = '2'.
    s_fieldcatalog-fieldname = 'POSNR'.
    s_fieldcatalog-tabname   = 'ITAB1'.
    s_fieldcatalog-rollname  = 'POSNR'.
    APPEND s_fieldcatalog TO t_fieldcatalog.
    CLEAR: s_fieldcatalog.
    s_fieldcatalog-col_pos = '3'.
    s_fieldcatalog-fieldname = 'MATNR'.
    s_fieldcatalog-tabname   = 'ITAB1'.
    s_fieldcatalog-rollname  = 'MATNR'.
    APPEND s_fieldcatalog TO t_fieldcatalog.
    CLEAR: s_fieldcatalog.
    s_fieldcatalog-col_pos = '4'.
    s_fieldcatalog-fieldname = 'NETPR'.
    s_fieldcatalog-tabname   = 'ITAB1'.
    s_fieldcatalog-rollname  = 'NETPR'.
    s_fieldcatalog-do_sum    = 'X'.
    APPEND s_fieldcatalog TO t_fieldcatalog.
    CLEAR: s_fieldcatalog.
    DATA: s_layout TYPE slis_layout_alv.
    s_layout-subtotals_text            = 'SUBTOTAL TEXT'.
    s_layout-key_hotspot = 'X'.
    s_layout-expand_fieldname = 'EXPAND'.
    SELECT vbeln UP TO 100 ROWS
           FROM
           vbak
           INTO TABLE itab.
    IF NOT itab[] IS INITIAL.
      SELECT vbeln posnr matnr netpr
             FROM vbap
             INTO TABLE itab1
             FOR ALL ENTRIES IN itab
             WHERE vbeln = itab-vbeln.
    ENDIF.
    DATA: v_repid TYPE syrepid.
    v_repid = sy-repid.
    DATA: s_keyinfo TYPE slis_keyinfo_alv.
    s_keyinfo-header01 = 'VBELN'.
    s_keyinfo-item01   = 'VBELN'.
    CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
         EXPORTING
              i_callback_program = v_repid
              is_layout          = s_layout
              it_fieldcat        = t_fieldcatalog
              i_tabname_header   = 'ITAB'
              i_tabname_item     = 'ITAB1'
              is_keyinfo         = s_keyinfo
         TABLES
              t_outtab_header    = itab
              t_outtab_item      = itab1
         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.
    Thanks
    Naren

  • How to fetch data from single database table using 2 internal tables.

    Hi friends,
    i am a new user of ABAP and also SDN.
    i need a help. 
    i want to fetch data from one database table based on primary keys of 2 internal tables.  how to put in where clause.
    Thanks in advance.

    hii
    refer to following code ..i hope it will help you
    SELECT matnr                         " Material Number
        FROM mara
        INTO TABLE i_mara
       WHERE matnr IN s_matnr.
      IF i_mara[] IS NOT INITIAL.
        SELECT matnr                       " Material Number
               werks                       " Plants
               prctr                       " Profit Center
          FROM marc
          INTO TABLE i_marc
           FOR ALL ENTRIES IN i_mara
         WHERE matnr = i_mara-matnr
           AND werks IN s_werks.
      ENDIF.                               " IF i_mara[] IS NOT INITIAL
      i_output = i_marc.
      IF i_marc[] IS NOT INITIAL.
        SELECT matnr                       " Material Number
               werks                       " Plants
               lgort                       " Storage Location
          FROM mard
          INTO TABLE i_mard
           FOR ALL ENTRIES IN i_marc
         WHERE matnr EQ i_marc-matnr
           AND werks EQ i_marc-werks
           AND lgort IN s_lgort.
      ENDIF.                               " IF i_mara[] IS NOT INITIAL
    regards
    twinkal

  • Can I restore settings, apps and data from an external hard drive to new Macbook Pro?

    I recently lost my Macbook Pro to water damage.  It was about 3 years old and tuned for comfort.  Unfortunately, my most recent backup is at least 3 months old.  I purchased a new MacBook Pro and I'm wondering what my options are for migrating my settings, apps and data from the old hard drive to the new MacBook Pro?  I have a USB drive bay that I plan to attach to the new MBP to gain access to the old hard drive.  Someone suggested Migration Assistant but my research hasn't turned up any information about migrating data from an external drive.
    Any help would be greatly appreciated.

    THANKS!  I guess my research wasn't THAT thorough.   I booted with the external drive attached and setup immediately gave me the option to setup using Migration Assistant.  It was a little slow via USB (2+ hours) but it was nothing compared to the time it would have taken to do it manually.  My new 15" MBP looks exactly like my old 13" MBP.  AWESOME!!!
    Thanks again!

  • Can you restore a deleted IM message from an ipod touch?

    Hello, my daughter has received some bullying text on her ipod via Skype IM chat which she has deleted but I now need to show them to the school.
    Does anyone know if it is possible to retrieve deleted IM messages from the ipod (4th gen)? I have checked my PC to see if Skype has 'sync and stored it' but it hasn't. Many thanks.

    Check this post about it:  Re: i want to move my voice memo to my pc
    Allan Sampson Central Texas
    Re: i want to move my voice memo to my pc 
    08.11.2011 13:35 (in response to louciana)
    Under the Music tab for your iPhone sync preferences with iTunes, select Include Voice Memos followed by selecting Apply and a sync.  An iTunes playlist will be created where your voice memos will be available on your computer and any new voice memos will be transferred to your iTunes library automatically when syncing.

  • Deletion of data from change log table and PSA

    Hi,
    For a DSO  I want to delete data from "Chnage log table"  and " PSA Tabel".
    For the DSO manage screen I have seen " Environment-> " Delete changelog table" from this we can delete chnage log table data as per my understanding.
    at PSA Level Mange screen also I have seen " Environment-> " Delete changelog table" from this option also it deletes the data from change log table or it deletes data from PSA table?.
    if this option also deletes data from changelog table then how we can delete data from PSA table?
    Please clarify me

    Hi,
      I am not sure what are you referring to from your point "PSA Level Mange screen also I have seen " Environment-> " Delete changelog table". When ever you click on manage for your psa you will be routed to a popup where you can see all your requests in the PSA table & there after if you click on any single request you will get Environment menu option but there wotn be any change log deletion option available. Please check again? Right clicking on your data source will take you to the manage requests for PSA. You can selectively delete the requests as required.
    For DSO when you right click on manage you can directly find Delete change log data option in the Environment tab. there you can select the requests you want to delete.
    Also if you want to automate the deletion process then you can simply create a chain and include the steps for PSA deletion & change Log deletion accordingly.
    Also it is recommended to keep on clearing the PSA table & Chage log data at regular intervals as it saves the disk space & thus helping in performance optimization
    Please refer the below doc at SDN, it will be helpful for you in automating the process of change log deletion & PSA deletion.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a02ba9e7-bb6f-2c10-09b4-e86b9fcbad41?QuickLink=index&overridelayout=true
    Hope it clears your doubts
    Thanks

  • Obtain the determinat​e data from the NI-DAQmx Simulated Device

    Dear All,
           How to config in MAX in order to obtain the determinate data from the NI-DAQmx Simulated Device?
           For example, the vi will run when the Digital I/O line is High, but using the Simulated Device, the result is  random. In another word, I can't set the line is high or low.
           Would you please give me some suggestion?
           Thank you!
    Hugo

    Here is what I mean of stopping the DAQmx stimulated device. I do from step A - E; and step E is what I mean stopping the DAQmx stimulated device.
    3. Use the NI-DAQmx Task in VI Logger Lite to complete a data logging application.
    a. Open VI Logger Lite. If you do not have VI Logger Lite, download it or request a free CD.
    b. Right-click My System>>VI Logger Tasks and select Create New.
    c. Select Using NI-DAQmx and click Finish.
    d. Select the NI-DAQmx task for the NI-DAQmx simulated device. Leave all settings in the defaults, and click Run task in the toolbar.
    Figure 9. VI Logger Lite data logging task.
    The data logging task begins. Data from the NI-DAQmx simulated device is displayed in the Real Time Data viewer.
    e. Click Stop task.
    ====================
    =Labview 7.0 & 8.0 & 8.5=
    =====================

  • To fetch Data from multiple database tables!

    How to fetch Data from fields of multiple database tables!
    Give me one example!

    use <b>join....</b>
    c the SAPHELP docs...
    FROM tabref1 [INNER] JOIN tabref2 ON cond
    Effect
    The data is to be selected from transparent database tables and/or views determined by tabref1 and tabref2. tabref1 and tabref2 each have the same form as in variant 1 or are themselves Join expressions. The keyword INNER does not have to be specified. The database tables or views determined by tabref1 and tabref2 must be recognized by the ABAP Dictionary.
    In a relational data structure, it is quite normal for data that belongs together to be split up across several tables to help the process of standardization (see relational databases). To regroup this information into a database query, you can link tables using the join command. This formulates conditions for the columns in the tables involved. The inner join contains all combinations of lines from the database table determined by tabref1 with lines from the table determined by tabref2, whose values together meet the logical condition (join condition) specified using ON>cond.
    Inner join between table 1 and table 2, where column D in both tables in the join condition is set the same:
    Table 1                      Table 2
    A
    B
    C
    D
    D
    E
    F
    G
    H
    a1
    b1
    c1
    1
    1
    e1
    f1
    g1
    h1
    a2
    b2
    c2
    1
    3
    e2
    f2
    g2
    h2
    a3
    b3
    c3
    2
    4
    e3
    f3
    g3
    h3
    a4
    b4
    c4
    3
    |--|||--|
        Inner Join
        |--||||||||--|
        | A  | B  | C  | D  | D  | E  | F  | G  | H  |
        |--||||||||--|
        | a1 | b1 | c1 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a2 | b2 | c2 | 1  | 1  | e1 | f1 | g1 | h1 |
        | a4 | b4 | c4 | 3  | 3  | e2 | f2 | g2 | h2 |
        |--||||||||--|
    Example
    Output a list of all flights from Frankfurt to New York between September 10th and 20th, 2001 that are not sold out:
    DATA: DATE   LIKE SFLIGHT-FLDATE,
          CARRID LIKE SFLIGHT-CARRID,
          CONNID LIKE SFLIGHT-CONNID.
    SELECT FCARRID FCONNID F~FLDATE
        INTO (CARRID, CONNID, DATE)
        FROM SFLIGHT AS F INNER JOIN SPFLI AS P
               ON FCARRID = PCARRID AND
                  FCONNID = PCONNID
        WHERE P~CITYFROM = 'FRANKFURT'
          AND P~CITYTO   = 'NEW YORK'
          AND F~FLDATE BETWEEN '20010910' AND '20010920'
          AND FSEATSOCC < FSEATSMAX.
      WRITE: / DATE, CARRID, CONNID.
    ENDSELECT.
    If there are columns with the same name in both tables, you must distinguish between them by prefixing the field descriptor with the table name or a table alias.

  • Deletion of data from the cube

    Hi,
    In our sales cube i want to delete the raws from the cube where there is no data for invoice quantity.
    Likewise in my material master i want to delete the raws without division.
    Is there any permenant solution. I suppose we can write routine.Where should i write the routine ? i mean at update rule level or transfer rule level or start routine will be the best option.Which one will be faster and why ?
    Regards,
    Viren.

    Hi,
    I understood, that the records are already in the cube.
    Selective deletion will not work because you can't select on keyfigure values.
    So create records with RECORDMODE = R (Reverse Image) for these records you want to dissappear. Get the relevant records into a flatfile, upload these records with recordmode R with all keyfigures inverted. The incorrect values will the vanish.
    A Deletion with recordmode = D is not possible for cubes.
    For the Material-Records:
    Within the updaterules, get the relevant Materialrecords into an internal table.
    (SELECT * FROM /BI0/PMAT_SALES into itab_mat_del WHERE DIVISION is inital.)
    For these MasterDatarecords: check in the sid-Table, if the relevant materialnumbers are in use already (Check Flags in the sid-Table).
    loop at itab_mat_del into wa_mat_del.
    select single * from /BIC/SMAT_SALES where
    MATERIAL = wa_mat_del-material.
    if CHCKFL is initial.
    if DATAFL is initial.
    if INCFL is initial.
    If they are not used, the can be deleted by using the function module RSDMD_DEL_MASTER_DATA.
    endif.
    endif.
    endif.
    This should be implemented within the updaterules. (Didn't I said that already??)
    hth
    cheers
    Sven
    Message was edited by: Sven Muntermann

  • Can I restore my applications and data from a ML time machine back up to a machine running Lion?

    Because of the horrible battery life with Mountain Lion (10.8.2), I am looking to downgrade to Lion. I have a Time Machine backup of my current machine, running ML. I do not want to restore all the way back to my last Lion backup, because that was a while ago. Basically, I want to backup my current ML hard drive, erase the computer, perform a fresh Lion install, and restore my apps/data using the ML Time Machine backup. Is the ML Time Machine backward compatiable with Lion?

    jgian wrote:
    Because of the horrible battery life with Mountain Lion (10.8.2)
    I am unaware of any battery life problem with Mountain Lion. There are many problems with incompatible 3rd party software, but that is a different problem.
    I wrote a little diagnostic program to help show what might be causing these problems. Download EtreCheck from http://www.etresoft.com/download/EtreCheck.zip, run it, and paste the results here.
    Will the ML Time Machine be backwards compatiable with Lion?
    No. 3rd party application may be fine. Most Apple applications and data will not work.
    Disclaimer: Although EtreCheck is free, there are other links on my site that could give me some form of compensation, financial or otherwise.

  • How do "delete" the deleted project rows from the database

    My database has grown large due to "perf" testing and needs trimmed down. I have been deleting projects from the P6 Professional which marks the projects and associated data as "deleted" but does not actually delete them.
    How does one go about forcing the deletes from these tables. I think the DAMON or someother process "deletes" them but running DAMON does not help.
    How do I force these deletes so that I can test the performance with reasonable number of projects..

    You don't.
    You can restore from backup.  Everything from the time of the backup will be restored to the iphone.  Anything after that will be erased, however.

  • Missing the prevoius months data from Set up tables..

    Hi,
    I have filled the set up tables for 2LIs_11_VAITM for the g     iven number range for Doc.No.(which is up to 02 Jan 2008)
    Unfortunately the records were missing in the months of Nov and Dec 2007.. The missing Doc. Nos are with in the range..
    If I see the LIS Log, I can see the end date is Aug. 2007(31.08.2007). Does it make any difference in getting the data..
    Thanks for your help..
    Sudha

    Hi Asif,
    please check the dump with a basis person. You might be able to solve it by enhancing a system or database parameter.
    Siggi

  • Import data from oracle database table into csv file

    Hi
    I have to import data from a table into a csv file. Could anyone suggest the best method to do it? My application is JSP as frontend and have put business logic in servlet.
    Thanks in advance.

    FastReader from wisdomforce will help you quickly export data into csv file. http://www.wisdomforce.com
    fastreader can be called and executed as an external process ( Runtime.exec(..) ) to extract data from Oracle tables into flat file

Maybe you are looking for

  • IPhone 6 Plus CPU(A8) can this 10bit 1080p support?

    Hi can this iOS hardware 10bit playback 1080p with embedded subtiles full support??

  • SCHEMA: Flat vs. hierarchical

    All, I'd like your feedback on another topic relating to the schema, this one at a higher level. Basically, the question is whether you think we should adopt a flat schema, or a hierarchical schema. To explain: - With a flat schema, we assign some nu

  • SC stuck in Item in Transfer process

    I have two SC's that are stuck in status I1111 Item in Transfer Process (x) Inactive. There are no errors and I've tried BBP_ALERT_SB_NOTTRANSFERED but that still does not produce any errors in RZ20 or Monitor SC. Any idea on how I can push these car

  • Questions regarding MSS

    Hello, I am new to MSS and I am facing some problems. I would like to get the time approval process started. The projects are set up with cProjects and then transfered to PS. The WBS-items are taken for the time recording. Now I would like to approve

  • Allow indexing service to index this disk for fast file searching

    Hello, I'm using Oracle on Win 2000, I have lately found out that the option "Compress drive to save disk space" is not supported in Oracle. When I've opened the drive specifications on the properties dialog, I found also another option called "Allow