Infocube data loss after BW Upgrade to 7.01 (SP 7)

HI,
We have recently upgraded from BW version 3.5 to 7.01 SP 7. It has been noticed that the pre-upgrade data from all the Infocubes have been wiped off since the upgrade. Data that were loaded into the cubes post-upgrade are fine though. The "Manage" screen on each of these cubes shows that all the data load requests (pre and post upgrade) are intact, however the underlying F & E tables do not have any of the pre-upgrade data (which sort of means that this data wasn't deleted from a BW transaction). Also, this has happened only for the Cubes - Master Data and DSO data seems to be fine.
Prior to the BW Upgrade, the underlying OS & DB were upgraded to versions AIX 6.1 and DB2 9.7 FP2 respectively. The data in the cubes existed after this step.
Has anyone seen or come across this issue before during the actual upgrade or any of the post-processing steps after that? Any help here will be appreciated!
Thanks
Anooj

Hi Anooj,
The note says that :-
When a cube in a source system contains no data, a user can set the
Line Item flag to TRUE for a particular dimension. If the user then
decides to transport this into a target system in which the target cube
DOES contain data, the dimension table is dropped and recreated. As a
result, DIMIDs in the Fact table now point to invalid entries in the
new Line Item dimension. This change should NOT be permitted and the
cube activation should be aborted instead.
Was the Line Item flag set in your infocubes , which may have led to the loss of data.
becuase SAP seems to be mentioning more on the Line Item flag side , or is it generally for the program for Infocube activation.
We have found that we lost the data in the CUBE , though there is no line item flag active.
Regards,
Hari

Similar Messages

  • Invalid date format after APEX upgrade

    We are currently working on upgrading our applications from 1.6 to the new APEX 3.2 version. After the upgrade of one of our systems I have a tabular form that is returning the error 'Invalid date format found'. The date that is getting entered into the system is being displayed and choosed via a sql popup. The code for the pop up is
    SQL CODE
    create or replace view next_weeks as
    with t as (
    select
    trunc(sysdate) + (rownum - 1) / 2 d
    from
    dual
    connect
    by rownum <= 28)
    , call_info as (
    select
    c.call_identifier, c.callback_date, c.callback_cancelled
    from uid_csr_schedule c
    select
    to_char(d, 'fmDy MM/DD/YYYY AM') l
    , to_char(d, 'dd-mon-yy hh:mi:ss AM') v
    ,to_char(d, 'mm/dd/yy hh:mi:ss AM') o
    from
    t
    where
    ((select count(callback_date) from call_info ci where ci.callback_date = t.d
    and (ci.callback_cancelled is null or ci.callback_cancelled !='Y'))) <
    (select csr_calls_per_period from uid_sch_system_default)
    minus
    select
    to_char(d, 'fmDy MM/DD/YYYY AM') l
    , to_char(d, 'dd-mon-yy hh:mi:ss AM') v
    ,to_char(d, 'mm/dd/yy hh:mi:ss AM') o
    from
    t
    where
    (select count(callback_date) from call_info ci where ci.callback_date = t.d
    and (ci.callback_cancelled is null or (ci.callback_cancelled !='Y')))
    =(select override_amt from uid_sch_call_override
    where (to_char(begin_date,'dd-mon-yy') || ' ' || upper(period)) = to_char(t.d, 'dd-mon-yy AM'))
    union select
    to_char(d, 'fmDy MM/DD/YYYY AM') l
    , to_char(d, 'dd-mon-yy hh:mi:ss AM') v
    ,to_char(d, 'mm/dd/yy hh:mi:ss AM') o
    from
    t
    where
    ((select count(callback_date) from call_info ci where ci.callback_date = t.d
    and (ci.callback_cancelled is null or ci.callback_cancelled !='Y'))) >=
    (select csr_calls_per_period from uid_sch_system_default)
    and
    (select count(callback_date) from call_info ci where ci.callback_date = t.d
    and (ci.callback_cancelled is null or (ci.callback_cancelled !='Y')))
    <
    (select override_amt from uid_sch_call_override
    where (to_char(begin_date,'dd-mon-yy') || ' ' || upper(period)) = to_char(t.d, 'dd-mon-yy AM'))
    order by o
    The form then has the item set as a popup with a date format mask of dd-MON-yy hh:mi:ss AM. The popup displays fine and the date is shown in the field but the error is received when I try to save the information. If I change the application global setting of date format mask to dd-MON-yy hh:mi:ss AM then this error goes away however, it creates problems on all the rest of my pages that use this date in the where clause of the queries. Is there a way to solve the problem above without having to change the globalization parameter or do I need to change this parameter and then redo those queries?
    Thanks for your help!
    Amber

    Amber,
    It's interesting that the problem goes away if you set the global date format to be the same as the column level. The column level should trump the global setting. What process is returning the error? Are you sure it's the MRU or could it be something custom?
    You could consider adding a process before the MRU fires that uses alter session to change the date format.
    Regards,
    Dan
    Blog: http://DanielMcGhan.us/
    Work: http://SkillBuilders.com/

  • Script that will help validate if there is any data loss after a DB restore

    Hi,
    I need to write a single script that will perform the following
    operations:
    1)return me the highy accessed tables across all databases.
    2)List the count, Min and Max system date of the highy accessed tables returned from step 1.
    The idea is to validate if there is any data loss to the highly transactional tables after a database restore operation has been performed.
    Thanks.

    Hello,
    I would also like you to see nice blog by Aron,you can modify the script a bit to change according to your need
    http://sqlblog.com/blogs/aaron_bertrand/archive/2008/05/06/when-was-my-database-table-last-accessed.aspx
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers
    Hello Shanky,
    The post would not be helpful too much for OP's requirement. The post was talking about when was the database last accessed. DMLs are not capturing in the script and also there will be many variant forms that can be applied for DML. Hence, I do not think,
    the script would help too much. 
    Or Am I missing something? 
    Latheesh as i mentioed OP has to modify the script little bit may be add User_seek,user_update,user_scans.Still IMO there is no *perfect* way to actually analyze this.So I pointed out point in my original post.Also unless he has some timestamp he cannot
    see min time when it was accessed ,max time can be taken from last user seek,scan,lookup time. Motive was to lethim know what he was trying to achieve cannot be axactly obtained by using sys.dm_index_usage_stats.Below query will give most accessed table
    : Source (Query)
    SELECT
    t.name AS 'Table',
    SUM(i.user_seeks + i.user_scans + i.user_lookups)
    AS 'Total accesses',
    SUM(i.user_seeks) AS 'Seeks',
    SUM(i.user_scans) AS 'Scans',
    SUM(i.user_lookups) AS 'Lookups'
    FROM
    sys.dm_db_index_usage_stats i RIGHT OUTER JOIN
    sys.tables t ON (t.object_id = i.object_id)
    GROUP BY
    i.object_id,
    t.name
    ORDER BY [Total accesses] DESC
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Data loss after routine synch with m515

    I just did a hot synch and discovered that almost all of my datebook info has been wiped out from both my handheld & the desktop!!  the synch log contains the following message:  "-- Date Book
       - Some handheld records were not copied to your PC. Your computer may be full or you may have reached the maximum allowed records on the desktop."
    Only about 5% of past calendar entries are still there, and about 10% of current/future entries. 
      I went to the datebook.bak file but it is the same as the data file inspite of the fact I only synched the one time. 
    Can someone please tell me there is hope for retrieving my data?  Should I just throw the Palm pilot out the window and go back to good old fashioned pen & paper?  This is not the first time I have suffered a complete data loss with these things - the last time was when I upgraded to a new palm & in spite of following the directions exactly, everything was lost.
    Thanks much, Janette
    Post relates to: Palm m515

      Thanks a lot for responding, Aeisha.  I did the search & found the largest datebook.bak file.   I opened the palm desktop & used the import option.  I selected the exact location specified by the search results but the files don't match!  For example, the file found by searching is a bak file & its size is 1311 kb, but when I get to the location(thru palm import)  in the folder tree where it's supposed to be, the only datebook file there is labeled "unfiled.dba" and is only 640 kb.  I tried importing that but didn't get back any lost data.
        Is there another way you were thinking I could "import"?  Thank you for your help.  Janette
    Post relates to: Palm m515

  • Signal loss after ios7 upgrade

    After the iOS 7 update my iPhone 4S regularly loosed the phone signal (when there was a stong Signal and in areas where I know there is a signal). The only way to get the signal back is to turn it off and on again.  How can I solve this problem?

    try a reset, no data loss.  Hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.
    or
    settings - general - reset - reset network settings.

  • N95 time and data loss after shutdown

    Hi! I own an unlocked N95 mobile phone with firmware version 12.0.013. The problem is that after shutdown and restarts the time and date is lost. I have disabled the option to get the time from the network operator. I have read on other forums that many other users have this problem too. Is this hardware or a firmware problem? If it's a firmware problem, when can I expect a firmware update that will fix it? My second question: are there different firmware versions for each language, because the T9 dictionary is very unusefull in the Romanian language. Many frequent words are not recognized, other are misspell. Does a firmware include an updated dictionary too? In advance, thank you very match.

    Hi,
    I have the same problem. Am also on firmware V12.0.0.13 (what ever it is).
    I dont know exactly when my problem with lossing the date and time started but I dont think it was after i changed firmware.
    I think the problem started when I had to formated my phone. It was running slow and getting temprimental. In fact am sure the date and time loss thing all started after I formated the phone.
    The date and time is the only info I loss when I remove the battery every thing else is ok.

  • MySQL data loss after installing 10.8

    I have been using MySQL on 10.7 for some time without problems. Since 'upgrading' to 10.8 I have been struck by many problems!
    After the installation on OS x 10.8 I had to spend some time to get my testing environment working again as Apple have removed the Web Sharing by default. Also during the 'update' it changed the configuration of the web server leaving my current setup broken.
    I'm now back up and running with a fully functioning web server and MySQL database system.
    The problem I have now is that the 'update' wiped the database information in the data folder for MySQL. Not a problem I thought, I will use Time Machine to go back and pull up the databases I need. The problem is that some how all the .MYD & .MYI files have gone. No matter how far back I go in the back up, they are all gone, the only files left are the .FRM files.
    This leaves me with months of data input missing...
    Has anyone else had a similar problem and is there a fix I could try?

    I have been using MySQL on 10.7 for some time without problems. Since 'upgrading' to 10.8 I have been struck by many problems!
    After the installation on OS x 10.8 I had to spend some time to get my testing environment working again as Apple have removed the Web Sharing by default. Also during the 'update' it changed the configuration of the web server leaving my current setup broken.
    I'm now back up and running with a fully functioning web server and MySQL database system.
    The problem I have now is that the 'update' wiped the database information in the data folder for MySQL. Not a problem I thought, I will use Time Machine to go back and pull up the databases I need. The problem is that some how all the .MYD & .MYI files have gone. No matter how far back I go in the back up, they are all gone, the only files left are the .FRM files.
    This leaves me with months of data input missing...
    Has anyone else had a similar problem and is there a fix I could try?

  • Data deleted after software upgrade

    Help!  I connected my iphone 3 into itunes and accepted the software upgrade on offer.  I now have lost ALL data incuding precious photos.  Don't care about message threads or settings, but I do care about photos.  I have imported my contacts back in from my SIM card but am at a loss as to how this happened when I just selected the standard prompts to update software.  I am using another PC as my regular PC is not working, so cannot get photos off that from my last syncing.  Thanks

    Well, some info:
    Apple assumes that all photos in the Photo Library you also have on your computer and thus it's no problem if the sync/update process deletes them, because you can re-sync them from your computer just like you did in the first place. This is true of all photos, video, music, which Apple calls "media". The iPhone is NOT a backup.
    Syncing with a new computer offers a warning that it is going to delete all media from the phone and replace it with media from the new computer, at which point you should have canceled. You are only allowed to sync media from one computer at a time.
    Syncing with a new computer should have backed up your phone first, and that would include the photos in the Camera Roll, that you took with the phone; but NOT the photos in the Photo Library, that you synced to the phone. The backup should also include data saved within apps. So you might be able to Restore from Backup to get some stuff back, or use a third-party utility to pull your Camera Roll photos from the backup file on the computer. Assuming iTunes backed up first.
    Failing that, I don't think I've heard of any way to undo loss of media due to syncing with a new computer. You might ask google.

  • "In process" version of All data targets after NW2004s upgrade

    Hi All,
    After upgrade to NW2004s, all of data targets are showing in "In Process" version.
    Datas are getting loaded successfully and reports are working fine.
    Why this is that??
    Full Points will be awarded.
    Thanks,
    Harry

    Hi Harry,
    'In Process' =  New.
    To Make the 'In Process' to 'Active'
    -->Double click on 'In Process (Func.)' and select 'Active'.
    -->Then you will see only Active Version.But it is not harm if you keep Version as 'In Process' .You can see Revised version as 'Active' right.
    The main difference between 'In Procee' and 'Active' is, both are same. But 'In process' means New Active version.
    -Sreekanth

  • PB crash - total data loss after forced restart.

    Hello,
    Ironically I was trying to back up a whole bunch of stuff the other day to and from external hard-drive (inc 5000 photos!) when I decided to start up itunes I had a message in German saying itunes needed to be updated (the OS was accidentally installed in German by technicians after a hard drive replacement last year, but I was running it in English) the thing is I was not online at the time and it wanted to update to a version dated 2007 so the first alarm bells started ringing. I did not allow this weird update of itunes fearing I would lose all my folders etc. and cancelled it. Then thinking I would eradicate the problem by restarting the PB when I tried to restart it wouldn't let me saying 'mirror agent' was preventing a restart. I left it for a while but then forced it to shut down. When I restarted it all my data / software etc was gone - it was all in German and like the 1st day the OS was newly installed!! (Icons huge, screensaver blue swirl etc) Everything except a few folders. Also it said only 5GB of hard drive - and it is 120GB hard drive.
    What should I do?!! Can I try starting it from installation disk and use disk doctor or something or should I head straight to an apple technician?
    I THINK the OS was 10.4.3 or around that mark.
    Any help HUGELY appreciated! Thanks in advance and greetings from Berlin.
    very worried,
    Nicole.

    ok i just remembered that I changed the name of my home folder - seems this was a stupid idea - i changed it from 'admin' to 'nicole'
    I found this:
    http://docs.info.apple.com/article.html?artnum=107854
    and fixed it!!
    phew!!

  • Saved data missing after phone upgrade

    I have upgraded from 3G to 4 got all my apps but have lost saved data. Is there a way to sync this too?

    That data should be in the 3G backup, although some data may not be compatible with the current iOS, depending on what iOS was on the 3G.  Usually the backup is restored when you set up the new phone, unless you elected to set up as a new phone..
    1. Disable automatic syncing on connection (iTunes prefs > Devices > Disable....
    2. Connect phone
    3. Right-click device tab for phone (right border of iTunes window) and select "Restore backup."  This should restore the backup from the 3G unless it's been replaced by a newer one from your iP4.

  • How do I get my application data back after OS upgrade?

    First I tried to update to iOS 5.1.1 by downloading the .ipsw file from Apple and shift-clicking the Update button. I got Unknown Error 3014, which apparently is a known error and is to do with contacting the Apple server. So I tried again, and this time the iPad got stuck in the "Connected to iTunes" screen, and I searched online and found that the only real way out of this is to do a Factory Restore to iOS 6. Oh well, I would have to put up with the new Maps app but that isn't too bad.
    So I did that, then I selected to restore"Phil's iPad" onto it, but my machine ran out of disk space. I cleared up some space, and got it to restore again, but I think that what happened in between was that it automatically backed up and synced the new half-restored state to my PC. So when I came to restore it, it only restored half of it. Since I had iTunes set up to sync every time I connect, the system that keeps the most recent three backups had deleted all the backups that were of any use and all I ended up with are three backup states that are all missing my application data. All my game progress is now gone, all my photos and home videos, all contacts, notes, all gone and I think gone for ever.
    Any idea whether it's possible to get all my stuff back?

    All apps and media should be in iTunes on your computer, if you've failed to transfer purchases from the device to iTunes it is possible to download past purchases.
    Downloading past purchases from iTunes
    Contacts and calendars are in whatever application on the computer or cloud service you have configured them to sync with.
    Pictures and videos taken with the device are designed to be copied off to the computer regularly.
    Frankly, it is not very smart to rely on a device that can be so easily lost, stolen, or damaged as sole storage of your imporant data, I'd dare say it is boarding on completely moronic.

  • SharedObject data loss after reopening my ios app

    Hi, I'm developing an app for ios devices and when I tested it on my iPhone the high-score data is lost everytime I restart (close and reopen) the application.
    var shared: SharedObject = SharedObject.getLocal("myRecordObject");
    if (shared.data.score) {
        record = shared.data.score;
    scoreBar.recordField.text = record.toString();
    function gameOver() {
        if (score > record) {
            record = score;
            shared.data.record = record;
            shared.flush();
            scoreBar.recordField.text = record.toString();
            scoreBar.adjust();

    try:
    var shared: SharedObject = SharedObject.getLocal("myRecordObject",'/'); 

  • Data Loss after sleeping...

    I don't think sleeping is actually to blame here, but here's the situation -
    My powerbook is set to go to screensaver (Motley Fool RSS Feed) after 5 minutes of idle. Usually, when it does this, it is playing music from an internet stream using Audion. After 30 minutes, the powerbook is set to go to sleep. When it does this, the music stops, the screen goes black, and it gets quiet. So far, so good.
    Now, when coming back from sleep, all I get is a mouse pointer, and a black screen. Sometimes, I can get things back by shutting the case for a little bit, then opening it again (after the light on the base open button comes on). Sometimes, this hasn't worked, at least not on the first couple of times. So, the only thing left to do is hold down the power button and do a hard shutdown. I'm a linux guy, and I know this isn't the greatest thing to do to a system, but I honestly don't know enough back ways out of a Mac crash to do differently.
    The biggest part of the problem is coming back from a hard power off. First, my "Dock" is reset to it's original configuration. My preferences for several other programs are trashed, most notably Thunderbird email, which seems to lose any knowledge that I have an email account setup, although everything is present and accounted for in my Library files. Firefox does simlilarly, resetting to no bookmarks, killing all theme settings, although the themese and extensions still show as installed, and I can manually bring back my bookmarks from backed-up bookmark files.
    So, three things - One - does a "hard power off" do much more on a Mac than on a PC? Two - how does one come back from a black screen and a pointer with keys only making beep sounds? Three - where did all my preferences and settings go and can they be restored?

    when all prefs and bookmarks are lost......something to do w/ the USER file
    any ideas ?
    please contact
    [email protected] >>

  • All photos, videos, settings, and app data gone after IOS5 upgrade

    Ive lost all my settings, photos, videos, emails etc. I had created a back up as always since I'm paranoid about loosing my info. My contacts remain thankfully but all my apps have been rearranged into completely random orders. I can't find some apps unless I put in a search for them.
    Synching seems to do nothing to help the situation. Where could all of the data in my apps have gone? Why is it so randomly thrown on my iPhone? Anyone else experiencing this?

    Go to iTunea>Preferences>Devices and see if there is a backupright at the time you did the update. Then try restoring from that backup. If the apps are in your iTunes library, any app data will be restored to the iPod.
    When restoring from an iOS 4 (or later) backup, if the device had a passcode set, iTunes will ask if you want to set a passcode (and remind you that you had protected your device with a passcode). iTunes will not ask you to set a passcode when restoring from iOS 3.x and prior backups.
    Therefore, remembe the passcode that you enter this time.
    It appears that if you restore from a backup, that backup is not subseqyently overwritten by the next backup.

Maybe you are looking for

  • Disables AD User account in OIM 9.1 still user can access its account

    The following issue is happing on OIM Version: 9.1.0.1866.25 When disabling a single AD resource, it will appear on IdM in status as Disabled, even though it remains accessible by the user. No change of password occurs. Where should I check and how c

  • My ipad has been killed by 7.02 update! Help

    I finally managed to get the update to actually download.  My ipad wont start, stop, make a noise nothing. I get a larger than the usual apple logo in center for about 40 seconds then blank again. It doesnt even appear to be recharging. Question - as

  • [SOLVED] [mkinitcpio] initramfs "build error" messages since v.18-1

    Hi everybody, Since the update from mkinitcpio 17-1 to 18-1 I get those build error messages while running mkinitcpio: # mkinitcpio -p linux ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default' -> -k /boot/vmlinuz-linux -c /etc/m

  • Uninstalling iTunes

    I have PC operating on Windows XP and have continual problems with iPod nano purchased a week ago. I want to uninstall iTunes and start over, but running Remove Program gets error 1603 "fatal error during installation". Get same error when i tried st

  • Only Line-Out Audio on TV@anywhere pro ?

    Hi, I would like to configure my tv@nywhere pro to use only the line-out jack for for Audio. The audio should not use the soundcard in my computer (XP), because i want to use the soundcard for editing audio..... Any help welcome, Greasel