How to recover missing data?

Hi Experts,
I met a missing data issue, I can't through repair full request to fixing it. and the previous update mode is delta update. I would like delete the data of Infocube firstly, then do a full upload and do a init without data, so I can do sequent delta upload. do you think is this action correct? Thanks.

hi delve,
hi delve,
go to psa check for data consistency ie errornous data. if psa does not have erronous data then follow below.
do not delete all the data .
choose that request with error data, delete that alone.
then try to load that request from psa (request number in psa and cube will be same,so make a note)
load that request.
then continue with delta.
otherwise wat u r choice is coorect.
thank u , reward points if helpful.

Similar Messages

  • How to recover missing data from PCL4 cluster

    Hello experts,
    Is there any way to recover missing data from PCL4 cluster ?
    We recently found that some data related to W2 production run for past years was missing in the PCL4 cluster. Tables T5UXX & T5UXY has entries with the filing dates but certain data is missing in the cluster related to those table entries.
    Would there be any specific reason for such a data loss ?
    Has anyone come across this issue earlier and found resolution on the same ?
    Any feedback is appreciated.
    Thanks,
    Dipesh.

    When you delete PCL4 entries for production runs, the corresponding     
    control information in tables T5UXX and T5UXY also will be deleted. A    
    control number may be used for more than one Form number (in Tax         
    Reporter control tables). Therefore, if a control number that is         
    assigned to the Form number to be deleted was also assigned to other     
    form numbers, then this control number information from T5UXY will not   
    be deleted. These details will be displayed in the program results.      
    However, if all Form numbers that were assigned to this particular       
    control number were deleted, then the control information in table T5UXY 
    for the control number will be deleted automatically as the last        
    dependent Form number is deleted."
    Following we have two questions:                                         
    o Was PCL4 deleted?                                                      
    o Did the W2 generate without errors?                                    
    Basically if the PCL4 data is corrupted, then we have 2 options to      
    rebuild the PCL4 Cluster:                                                
    1. Delete the existing PCL4 & rerun the production run with the same     
       As of date.                                                           
    2. Overwrite the production results without deleting PCL4 data but with  
       different As of Date.                                                                               
    If the Employee data is not changed after your                           
    actual production run then overwriting the results will not cause any    
    difference in the PCL4 data.                                             
    Secondly, if you dont want PDF spools or magmedia layouts to be          
    generated during overwriting of production run, then kindly uncheck      
    the following on the PU19 screen, so that only PCL4 data is rebuild :    
    1. Uncheck Employee Copy                                                 
    2. Uncheck Authority Copy                                                
    3. Uncheck Magnetic table"                                               
    Edited by: Johan Peersman on Mar 25, 2010 4:14 PM
    Edited by: Johan Peersman on Mar 25, 2010 4:15 PM

  • How to recover missing data in Address Book?

    Was shutting down my i-Book. Decided to Force Quit some Applications and accidently Force Quit the Finder. When I rebooted and tried to use Mail, found all the addresses in
    my Address Book were gone. The Address History was also empty. Any way to recover the lost addresses? I did not have a back-up copy of the files in Address Book.
    Blueberry i-book   Mac OS X (10.2.x)  

    My 13 year old Grandson found the missing addresses. They
    were in Library/ApplicationSupport/AddressBook/AddressBook.data.backup
    He renamed the file by dropping .backup and when AddressBook was reopened, the missing cards were back. I had looked for AddressBook in ApplicationSupport, but didn't see it listed in the Application list for some reason.

  • How to Get Missing Dates for Each Support Ticket In My Query?

    Hello -
    I'm really baffled as to how to get missing dates for each support ticket in my query.  I did a search for this and found several CTE's however they only provide ways to find missing dates in a date table rather than missing dates for another column
    in a table.  Let me explain a bit further here -
    I have a query which has a list of support tickets for the month of January.  Each support ticket is supposed to be updated daily by a support rep, however that isn't happening so the business wants to know for each ticket which dates have NOT been
    updated.  So, for example, I might have support ticket 44BS which was updated on 2014-01-01, 2014-01-05, 2014-01-07.  Each time the ticket is updated a new row is inserted into the table.  I need a query which will return the missing dates per
    each support ticket.
    I should also add that I DO NOT have any sort of admin nor write permissions to the database...none at all.  My team has tried and they won't give 'em.   So proposing a function or storable solution will not work.  I'm stuck with doing everything
    in a query.
    I'll try and provide some sample data as an example -
    CREATE TABLE #Tickets
    TicketNo VARCHAR(4)
    ,DateUpdated DATE
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-01')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-05')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-07')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-03')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-09')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-11')
    So for ticket 44BS, I need to return the missing dates between January 1st and January 5th, again between January 5th and January 7th.  A set-based solution would be best.
    I'm sure this is easier than i'm making it.  However, after playing around for a couple of hours my head hurts and I need sleep.  If anyone can help, you'd be a job-saver :)
    Thanks!!

    CREATE TABLE #Tickets (
    TicketNo VARCHAR(4)
    ,DateUpdated DATETIME
    GO
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-01'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-05'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-07'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-03'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-09'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-11'
    GO
    GO
    SELECT *
    FROM #Tickets
    GO
    GO
    CREATE TABLE #tempDist (
    NRow INT
    ,TicketNo VARCHAR(4)
    ,MinDate DATETIME
    ,MaxDate DATETIME
    GO
    CREATE TABLE #tempUnUserdDate (
    TicketNo VARCHAR(4)
    ,MissDate DATETIME
    GO
    INSERT INTO #tempDist
    SELECT Row_Number() OVER (
    ORDER BY TicketNo
    ) AS NROw
    ,TicketNo
    ,Min(DateUpdated) AS MinDate
    ,MAx(DateUpdated) AS MaxDate
    FROM #Tickets
    GROUP BY TicketNo
    SELECT *
    FROM #tempDist
    GO
    -- Get the number of rows in the looping table
    DECLARE @RowCount INT
    SET @RowCount = (
    SELECT COUNT(TicketNo)
    FROM #tempDist
    -- Declare an iterator
    DECLARE @I INT
    -- Initialize the iterator
    SET @I = 1
    -- Loop through the rows of a table @myTable
    WHILE (@I <= @RowCount)
    BEGIN
    --  Declare variables to hold the data which we get after looping each record
    DECLARE @MyDate DATETIME
    DECLARE @TicketNo VARCHAR(50)
    ,@MinDate DATETIME
    ,@MaxDate DATETIME
    -- Get the data from table and set to variables
    SELECT @TicketNo = TicketNo
    ,@MinDate = MinDate
    ,@MaxDate = MaxDate
    FROM #tempDist
    WHERE NRow = @I
    SET @MyDate = @MinDate
    WHILE @MaxDate > @MyDate
    BEGIN
    IF NOT EXISTS (
    SELECT *
    FROM #Tickets
    WHERE TicketNo = @TicketNo
    AND DateUpdated = @MyDate
    BEGIN
    INSERT INTO #tempUnUserdDate
    VALUES (
    @TicketNo
    ,@MyDate
    END
    SET @MyDate = dateadd(d, 1, @MyDate)
    END
    SET @I = @I + 1
    END
    GO
    SELECT *
    FROM #tempUnUserdDate
    GO
    GO
    DROP TABLE #tickets
    GO
    DROP TABLE #tempDist
    GO
    DROP TABLE #tempUnUserdDate
    Thanks, 
    Shridhar J Joshi 
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • How to recover the data from a  dropped table in production/archive mode

    How to recover the data/change on a table that was dropped by accident.
    The database is on archive mode.

    Oracle Version. ? If 10g.
    Try this Way
    SQL> create table taj as select * from all_objects where rownum <= 100;
    Table created.
    SQL> drop table taj ;
    Table dropped.
    SQL> show recyclebin
    ORIGINAL NAME    RECYCLEBIN NAME                OBJECT TYPE  DROP TIME
    TAJ              BIN$b3MmS7kYS9ClMvKm0bu8Vw==$0 TABLE        2006-09-10:16:02:58
    SQL> flashback table taj to before drop;
    Flashback complete.
    SQL> show recyclebin;
    SQL> desc taj;
    Name                                      Null?    Type
    OWNER                                              VARCHAR2(30)
    OBJECT_NAME                                        VARCHAR2(30)
    SUBOBJECT_NAME                                     VARCHAR2(30)
    OBJECT_ID                                          NUMBER
    DATA_OBJECT_ID                                     NUMBER
    OBJECT_TYPE                                        VARCHAR2(19)
    CREATED                                            DATE
    LAST_DDL_TIME                                      DATE
    TIMESTAMP                                          VARCHAR2(19)
    STATUS                                             VARCHAR2(7)
    TEMPORARY                                          VARCHAR2(1)
    GENERATED                                          VARCHAR2(1)
    SECONDARY                                          VARCHAR2(1)
    SQL>M.S.Taj

  • I have a WD Passport HD attached to my Mac. When it was last connected it went into sleep mode and ran out of battery. Now I cannot find my HD in Finder and Disk Utilities is telling me it cannot repair the HD. Any ideas on how to recover my data?

    I have a WD Passport HD attached to my Mac. When it was last connected it went into sleep mode and ran out of battery. Now I cannot find my HD in Finder and Disk Utilities is telling me it cannot repair the HD. I can see the HD but the volume part is greyed out. Any ideas on how to recover my data?

    There are other methodologies of scanning a HD
    which involve data extraction, but loss of metadata is often the result if the directory is corrupt.
    Metadata is the info on what the data IS. 
    Like having all your papers thrown in the air, its all there, but just a giant mess. 
    This is why you always always must have several external HD redundancies of your data.  One isnt enough, neither is two really.
    see here, and dont let that happen again>
    Methodology to protect your data. Backups vs. Archives. Long-term data protection
    Was that your only copy of your priceless data?  Just that one external HD?

  • Ipod Touch 4-How to recover deleted data?I have not backed it up in itunes as I am using a new laptop

    Ipod Touch 4-How to recover deleted data?
    I need valuable information which was deleted.
    I  have not backed it up in itunes as I am using a new laptop.
    Plz help

    Thanks for the reply.
    These softwares recovery softwares recover data from external devices which are shown as drives.As far as I know the recent Ipods dont have an option to be shown as a drive.
    Any particular data recovery software available for ipod touch 4?
    Any hepl in this regard would be highly appreciated!

  • How to recover missing purchased items from my old region???

    Hi,
    Before 2 months ago I'm tried to change my region in the Apple Store and I was have a problem it I can not change the area until the reset my balance to 0 and it was I have a balance of 0.40 pounds, I contacted with the technical support at Apple and they told me should reset your balance to 0, but the balance was only 0.40 pounds and I can not buy any product because that amount is too little, So they suggested me to reset my balance to I can change my region and I have accepted this and they have already reset my balance to 0 and then was able to successfully change the region .
    Now I have another problem which I can't to recover missing purchased items from my old region !!!
    How to recover missing purchased items ????
    Regards,
    Aziz

    You cannot use the iTunes store there any longer just as you can no longer use the food store you used to visit.  Unless you can change your country back to the one you used to use you no longer have access to purchases made there which is why it is important you keep backups of all purchases made there.
    The iTunes Store in a country is intended only for use by that country's residents, and only while they are in the country. To use the iTunes Store in a country you need a credit card (or other card type if acceptable in a country) issued in that country, billed to an address in that country, and also be physically present in that country when using the store.  You are also restricted to waiting 90 days between country changes.
    E.g., "The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance." - http://www.apple.com/legal/itunes/us/terms.html#SERVICE

  • How to recover archived data in BW system ?

    Dear Friends,
    We are working on BW 3.1 system.
    Please let us know how to recover archived data in BW system ?

    Hi Sanjay Singh,
    You have 2 options,
    1) Either you can reload it through info package,
      once you create the archiving object on any cube  by defaulty the info package maintain the one option
    Load from archive data( There select with which archived file you required).
    2) Create infostructure,
    create the datasource and reload it to infocube
    i will give clear  description by tomorrow
    Regards
    Prakash. Vadala

  • How to recover missing purshased songs?

    how to recover missing purshased songs?

    STEPHANIE_162 wrote:
    how to recover missing purshased songs?
    Download new copies:
    iTunes 11 for Windows: Download previous purchases from the iTunes Store
    http://support.apple.com/kb/PH12491
    iTunes 11 for Mac: Download previous purchases from the iTunes Store
    http://support.apple.com/kb/PH12283

  • How to recover deleted data in os/400

    Hi ,
    Can anybody let me know how to recover deleted data from a table in os/400 .
    Thanks in advance .
    Thanks & Regards
    Dhaval Raje

    Hi Dhaval,
    unfortunately this highly depends on the thing you did :-((
    In general SAP says (with good reason!): You recover nothing or the COMPLETE DB - otherwise it could be inconsistent. In your cae, that means, you go back to the error case.
    For experts RSTOBJ of this table would be of help. But, then you need to know what happened in detail and you need to be familiar with the dependent files like indexes & views.
    So, if this is a test system, I would go back to an olde backup, if this is productive, I would ask a good DB2 for iSeries basis consultant. That is a problem, that can be solved.
    Regards
    Volker Gueldenpfennig, consolut.gmbh
    http://www.consolut.de - http://www.4soi.de - http://www.easymarketplace.de

  • HT4972 how to recover lost data in i  phone 4 without backup and how to activate i phone 4 without sim after update to ios 5.1.1

    how to recover lost data in i  phone 4 without backup and how to activate i phone 4 without sim after update to ios 5.1.1

    Not possible in both cases.

  • HT1212 Using the "if you have never synched with itunes" instructions, will I lose all data on the phone? That is the most important information, how to recover the data. The phone is fungible.

    Using the "if you have never synched with itunes" instructions, will I lose all data on the phone? That is the most important information, how to recover the data. The phone is fungible.

    Thanks @ KiltedTim, but losing "only" any data is really not acceptable and, in this case, the phone had not been backed up, but thanks for taking the time. Also, yes, fungible means what I think it means. An iphone is a completely substitutible commodity, unlike my data, so instructions that inform me as to how to fix a phone I could replace for a small sum of money while failing to address the more important issue of the data are almost useless - they potentially save me the $99 it would cost me to replace the phone if I were so inclined to trust another apple product. Not worth the hour it took to find them or the 35 minutes on the phone to confirm my suspicions about the data.

  • Satellite Pro M30 - how to recover the data?

    I get a disk read error when I try to boot my Sat Pro M30 running XP Pro, just after the In Touch with Toshiba screen.
    Using the Revovery DVD that came with the computer when purchased and entering advanced mode I'm trying to use check local Image File. It doesn't seem to find any Image file. Is it possible to recover or rebuild image file?
    There are some data I would like to recover from the HD so I'm trying to avoid reinstalling the system until I've recovered the files.
    Have tried to read from the HD using a cabinette and a new NP running Vista but it didn't work. Is there a general problem reading a XP HD from VISTA?
    Any suggestions how to recover the data would be very much appreciated!
    Johan

    cabinette ? Do you mean "USB Hard Disk Caddy" ?
    To recover your data, you can connect the HDD using a USB Adapter to another PC running XP or Vista. The drive should show up as a Drive letter (such as E: Drive), and you will be able to copy the files.
    When you say "but it didn't work", what was the problem exactly?

  • Interfaces Restore - How to recover from Data Loss

    Dear Friends,
    Since 4:00 PM Yesterday our ERP system is started issueing short dupms it was continued till 11:00 PM. So we have decided to shut down the system.
    After detailed analysis we found that the route cause of the issue is curruption of one  block in database. SAP and Oracle data base experts are trying to recoved the data but it seems it is not possible,
    Now the only option we have is restore the system from backup. the last  back up of the system is @4:00 pm yesterday. Now the issue is we have  data loss of 8 Hrs bussiness transactions. my customer is very big SAP instalation and we have very complext interface. interfacing with arount 200 systems 2000 IDoc intefaces and many more file interfaces etc... This is the first time we are facing this issue and we need to think of how we can sync the Interfaces again.
    For masterdata coming from external systems we can simply ask the partner system to resend the Idocs or Files. But for transactional data we can still request them to send the Idocs or files to my SAP system but we should some how avoid sending the confirmations back to partner systems.
    Could you please let me know did you faced this kind of problems and did you applied any best practices.
    All kind of suggessions are wellcome!!!!.....
    Regards
    Naresh
    Edited by: Naresh Reddy K on Aug 17, 2010 5:57 PM

    We recovered data using Statndard Date recovery procedures by Hardware Vendors..

Maybe you are looking for

  • Remote Desktop Service Manager - configure permissions for Remote Desktop Users to Send Message, Disconnect, Logoff

    Hello, dear colleagues. We are using Windows Server 2012 R2 as Remote Desktop Server. Also use Windows Server 2008 R2 with Remote Desktop Service Manager to control RDS user sessions (Send Message, Disconnect, Logoff, Query Info).  Send Message, Disc

  • While creating PO currency is given as EUR error is as follows- pls help

    while creating PO currency is EUR & error comes as "Enter Rate EUR/INR Rate Type M for 19.01.2011 in the system settings. Pls Help.

  • Screen not working for iphone5

    The touch screen is not working for my iphone5 and there are dashes running across the top of the screen. I have already tried a soft reset a couple of times and still the screen will not work and dashes continue to flicker across the top of the scre

  • Cannot open .project file

    b I have a Turnkey installation of ES 801. It is running in a VM. When I login to Workbench, the eclipse log records this exception (only the first few lines are listed, followed by the 'Caused by' line is listed below): !ENTRY com.adobe.ide.singlesi

  • Center alignment not working fora ll groups

    We are trying to center our visual within our blank white canvas, and we have multiple groups within the file. See image attached. When we select all groups then hit the center alignment button, only the bottom group becomes centered and nothing else