Question regarding Update from an ODS

Hi Experts,
I have an issue of data mismatch between oa ODS 0FIGL_O02 and the InfocubeSFIGL_C02.
the infocube is getting updated through the ODS(By means of generated Datasource).
I have some Question:
1) If i delete the data selectively from Infocube and ODS and then load full request for that selection:
wather the change log data will be deeted autometically while deleting the data selectively from ODS?.
2) I am not getting all generated  the generated datasource inspite of selecting "Display generated Objects" from Menu bar.
Please Help me ASAP.
Thanks ain advance
Jitendra Joshi

Hi experts
Many thanks for your help.
if i delete the data selectively from Cube and ODS both  and then load the data in to ODS for that selection (As repairfull request) now if I will try to update my Cube from the ODS, will the data in Change log cause any incostency (Because the data in change log will not be deleted from change log while selective deletion. )
please Advice me ASAP as its an issue in Production.
Thanks in Advance
jiootendra Joshi

Similar Messages

  • Data upload problem in delta update from 1st ODS to 2nd ODS

    Dear Friends,
    I am loading data from one ODS to another. The update mode was full upload. Sometime back an error occurred in activation of the first ODS. The error was: Full updates already available in ODS ,Cannot update init./delta. So currently daily records are pulled but not added i.e. transferred recs = 4000 but added recs = 0.
    When I looked for a solution in SDN I found that using program RSSM_SET_REPAIR_FULL_FLAG for 2nd ODS will reset all full uploads to Repair Full Request which I have already done for 2nd ODS. Then initialize once and pull delta.
    But problem is that I cannot set update mode to delta as I am pulling some 80,000 records in 2nd ODS from 1st ODS with around 14 lacs records daily based on some data-selection filters in infopkg. But do not see any parameters for data-selction in delta mode.
    Please suggest.
    Regards,
    Amit Srivastava

    Dear Sirs,
    Due to this error in activation in 2nd ODS daily data upload is failing in 1st ODS.
    To correct this I converted all full upload requests in 2nd ODS to Repair full requests.
    But now when I scheduled the infopkg today with full upload again data was transferred but not added.
    I know I cannot have init./ delta so what possibly can now be done in this scenario. Please help.
    Regards,
    Amit Srivastava

  • Questions regarding upgrade from 4th gen to 5th gen iPod

    I recently received a new 80 gig 5th gen iPod and had 2 questions regarding it and my old 40 gig 4th gen. PC meets minimun requirements and is running XP Pro.
    1) Do I need to do anything before synching the new 5th gen iPod with my existing Library (i.e. uninstall iPod Updater for 4th gen)?
    2) If I don't need to uninstall the 4th gen Updater, can I run both iPods off the same Library, same user (obviously not simultaneously)?
    tia - joggy
    N/A   Windows XP Pro  

    Hey, joggy!
    1) No, I don't believe you do. Be sure to disconnect the 4th gen iPod before connecting the 5th generation iPod to the computer.
    2) Yes, you can.
    There are basically two methods with managing muleiple iPods on one computer:
    Method 1 - Create different Windows users accounts for each resgistered iPod on this computer.
    Method 2 - Create a playlist in iTunes for each iPod.
    To make Method 2 work, connect one of your iPods, and click on it in the left-source panel.
    Under the "Music" tab, and set your option for a specific playlist(s) under the "Sync Music" option.
    Do the same with your other iPod; not connected at the same time, though.
    For more details on this matter, check out Apple's Support article about it:
    How to manage multiple iPods using one computer
    I hope that helps you.
    -Kylene

  • Performance issue and functional question regarding updates on tables

    A person at my site wrote some code to update a custom field on the MARC table that was being copied from the MARA table.  Here is what I would have expected to see as the code.  Assume that both sets of code have a parameter called p_werks which is the plant in question.
    data : commit_count type i.
    select matnr zfield from mara into (wa_marc-matnr, wa_marc-zfield).
      update marc set zfield = wa_marc-zfield
         where werks = p_werks and matnr = wa_matnr.
      commit work and wait.
    endselect.
    I would have committed every 200 rows instead of every one row, but here's the actual code and my question isn't around the commits but something else.  In this case an internal table was built with two elements - MATNR and WERKS - could have done that above too, but that's not my question.
                DO.
                  " Lock the record that needs to be update with material creation date
                  CALL FUNCTION 'ENQUEUE_EMMARCS'
                    EXPORTING
                      mode_marc      = 'S'
                      mandt          = sy-mandt
                      matnr          = wa_marc-matnr
                      werks          = wa_marc-werks
                    EXCEPTIONS
                      foreign_lock   = 1
                      system_failure = 2
                      OTHERS         = 3.
                  IF sy-subrc <> 0.
                    " Wait, if the records not able to perform as lock
                    CALL FUNCTION 'RZL_SLEEP'.
                  ELSE.
                    EXIT.
                  ENDIF.
                ENDDO.
                " Update the record in the table MARC with material creation date
                UPDATE marc SET zzdate = wa_mara-zzdate
                           WHERE matnr = wa_mara-matnr AND
                                 werks = wa_marc-werks.    " IN s_werks.
                IF sy-subrc EQ 0.
                  " Save record in the database table MARC
                  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                    EXPORTING
                      wait   = 'X'
                    IMPORTING
                      return = wa_return.
                  wa_log-matnr   = wa_marc-matnr.
                  wa_log-werks   = wa_marc-werks.
                  wa_log-type    = 'S'.
                  " text-010 - 'Material creation date has updated'.
                  wa_log-message = text-010.
                  wa_log-zzdate  = wa_mara-zzdate.
                  APPEND wa_log TO tb_log.
                  CLEAR: wa_return,wa_log.
                ELSE.
                  " Roll back the record(un save), if there is any issue occurs
                  CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'
                    IMPORTING
                      return = wa_return.
                  wa_log-matnr   = wa_marc-matnr.
                  wa_log-werks   = wa_marc-werks.
                  wa_log-type    = 'E'.
                  " 'Material creation date does not updated'.
                  wa_log-message = text-011.
                  wa_log-zzdate  = wa_mara-zzdate..
                  APPEND wa_log TO tb_log.
                  CLEAR: wa_return, wa_log.
                ENDIF.
                " Unlock the record from data base
                CALL FUNCTION 'DEQUEUE_EMMARCS'
                  EXPORTING
                    mode_marc = 'S'
                    mandt     = sy-mandt
                    matnr     = wa_marc-matnr
                    werks     = wa_marc-werks.
              ENDIF.
    Here's the question - why did this person enqueue and dequeue explicit locks like this ?  They claimed it was to prevent issues - what issues ???  Is there something special about updating tables that we don't know about ?  We've actually seen it where the system runs out of these ENQUEUE locks.
    Before you all go off the deep end and ask why not just do the update, keep in mind that you don't want to update a million + rows and then do a commit either - that locks up the entire table!

    The ENQUEUE lock insure that another program called by another user will not update the data at the same time, so preventing database coherence to be lost. In fact, another user on a SAP correct transaction, has read the record and locked it, so when it will be updated your modifications will be lost, also you could override modifications made by another user in another luw.
    You cannot use a COMMIT WORK in a SELECT - ENDSELECT, because COMMIT WORK will close each and every opened database cursor, so your first idea would dump after the first update. (so the internal table is mandatory)
    Go through some documentation like [Updates in the R/3 System (BC-CST-UP)|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCSTUP/BCCSTUP_PT.pdf]
    Regards

  • Questions regarding update function module

    Hello experts,
    I am on customer site to help them investigate one issue: they have a background job which runs periodically.
    In the report database table A is changed firstly ( new entries are inserted ), then a update function module is called via keyword CALL FUNCTION ... IN UPDATE TASK.
    Inside the function module database table B is updated. ( existing entries are updated )
    Customer issue:
    sometimes they find A is updated as expected, however B remains unchanged at the same time.
    customer could not find exact steps to reproduce the issue. However the issue does exist there and occur from time to time.
    the issue could only be reproduced in their production system, but works perfectly well in dev & Q system. It is difficult to debug in their production system for trouble shooting.
    After analyzing related code, I have one doubt: according to ABAP help on CALL FUNCTION aaa IN UPDATE TASK, I know the function module aaa is called in a new update work process. I wonder whether there is any possibility there this issue might be caused because the update function module fails to get called at all? ( perhaps due to heavy system load so no free update function module could serve the table B update ? )
    If update function module fails to execute, is there any system utility to record this? That is to say, will it be recorded in such as SM13 or SM21?
    Looking forward to your expertise on this topic!
    Best regards,
    Jerry

    Hello friends,
    Thanks a lot for your interests on this issue. I update all my findings:
    1. issue background: this issue occurs in SAP CRM Channel manageement Solution, software component CRM-CHM-POS.
    2. due to some limitations, the table CMSD_CI_HISTORY and history table are not updated in the same LUW. Instead the first one is updated in normal work process while the other is done in update work process. Since I am not the original developer I didn't know the whole complex scenario ( I did see this is done delibrately in note 1764006 - CMS:Sell In Release creating PB with zero available quantity ).
    So for the moment we have to accept this design.
    3. during our testing ,we ensure COMMIT WORK is always called.
    4. So why sometimes the first table update fails, however there is no hint at all for this failure in the system like ST22 and SM21 ?? ( forget SM13, since it is updated in normal work process ).
    The root cause is the flaw of SAP code below.
    The code has planned to raise exception if insertion failed due to duplicate records to be inserted.
    Unfortunately, the fact is if we use "INSERT db FROM TABLE xxx" to insert records into database and some record already exists with the same key, it will result in a termination but SY-SUBRC is STILL 0; Just compare it with single insertion using "INSERT db FROM <work area>", in the same error situation, processing does not terminate, and SY-SUBRC is set to 4.
    As a result in this case even the insertion fails, line 29 will never be executed as sy-subrc is always 0. Since the insertion fails and the exception is caught without any notification, so customer sufferred because they do not know what has happened.
    Best regards,
    Jerry

  • Question about updating from panther to tiger

    I'm getting ready to update my system from panther to tiger. I'm going to use archive and install to do it. My question is will have to reload logic pro 7.1.1 after I do this?
    Thanks,
    Chuck Floyd

    prokeds, if you want your mail as it was do this:
    On your backup navigate to your ~(yourhome)/library/mail (copy the whole folder) and replace the corresponding folder on your new system. (First drag your existing Mail folder to the desktop until you're sure you don't need it.)
    Do the same with ~(yourhome)/library/preferences/com.apple.mail.plist * This is a very important file which contains all email account settings and general mail preferences.
    When you relaunch Mail decline any prompts to "import".
    EDIT: I didn't even realize these were the instructions I already gave to the OP. They should work for you, post back if they don't or if your issue is different.
    -mj
    [email protected]

  • Iphone 6 questions before updating from the 4S

    I currently have an iPhone 4s running OS 7.1.2. seeing as I don't have enough space left open on my phone to update to OS 8. I also am not able to connect to wifi via the quick connect on the pull up menu or from the setting menu. Tried doing a complete restart of the phone to see if that would change it back, but did not. I am only able to back up the info on my phone by plugging it into the computer. I am looking into getting the 6 in the next few weeks, but due to these problems it has left me with a few questions.
    1. The 6 comes loaded with the new operating system, but since I am not able to update currently and will have to restore my phone via the computer with all my info from the 4S thats running a lower OS will that effect the phone? will it not let me update since the 4S is not currently running OS8?
    2. Will the issue with the wifi not being able to connect carry over to the new device or is this strictly an issue with my 4S?
    These are the only ones I can think of right now If i think of anything else I will let you know. Thanks for the help.

    1) You should have no issues restoring your 6 from a backup of the 4S. You can restore a device running a newer version of iOS from a backup made with an older one but can't go the other way.
    2) If the wifi issue is a hardware problem with the phone, you will not have issues with your 6. If it's a software problem, it may carry over to the new phone.
    ~Lyssa

  • Intricate questions regarding update to Mavericks (ProTools, Final Cut, etc.) 2011 MacPro

    Hello people.
    I rarely use the AppStore, as my machine is primarily used for Final Cut Studio 2 and ProTools 9. I still have OS 10.6, and for the first time, I saw the message "This app requires 10.7 or later" I know your first reaction is going to be, "Why don't you just buy new programs?" The answer is because I am poor. When I was running my production company I dropped 7k on a 8-core MacPro with a RAID card and high res monitor. Machine is sick, I love it, but Macs are notorious for being incompatible with older programs (check the ProTools forums).
    First off, do any of you know if my ProTools 9 and Final Cut Studio 2 will work?
    If so, then what are the necessary steps I need to take pre-Mavericks? Will I need to backup everything?
    I had been holding off updating through the later versions because of the ProTools incompatibility as everyone I spoke with said it is a nightmare for that program.
    Help!

    If you are making your living with DVD recorder it's because you already have one. If you need a brand new one, you can buy it from any DVD recorder manufacturer. (Actually, Apple never manufactured DVD recorders).
    The only one Apple computer doesn't have DVD recorder today is the Macbook Air. So, there is no reason to speculate about that, but yes, sooner o later DVD will dead, as cassette did, as floppy did, as VHS did.
    I make my living on editing. FCPX doesn't changed anything for me. I still work with FCP7 as I did before. I know how to edit in Avid and in Premiere, and now in FPCX.
    I am training myself all of the time. That's my biggest investment, to always be learning as much as I can. Instead of waisting hours and hours blaming Apple, I started to learn FPCX with Ripple Training first, and now with Larry Jordan's tutorials.

  • Question regarding upgrading from LR3 to LR4

    I currently have Lightroom 3 installed on my PC and want to upgrade to Lightroom 4.
    I have not had Lightroom 3 all that long and not too many files are there. I have two questions:
    1. Is it better to uninstall Lightroom 3 and then install a fresh copy of Lightroom 4 or could I just upgrade the current Lightroom 3 to Lightroom 4.
    I know I have heard in the past is is usually better to to a fresh install. As I have only had Lightoom 3 for a few months and few files I wondered if
    this was the way to go or would an upgrade be ok.
    2. I actually have the full version of Lightroom 4 (as opposed to an upgrade edition). Luckily for me, my father-in-law purchased it but turned out it was
    not what he wanted so he gave it to me. Can I use this full version to upgrade (if that is the solution to my first question)? I  know I can use it to do a fresh install.
    Also, if you can recommend any links to directions or video tutorials on migrating from LR3 to LR4 that would be great as I am very new to Lightroom.
    Thanks for the advice.

    Yes, it is very easy, as your existing LR3 installation will not interfere with the new LR4 installation.
    Just download LR4.3 from Adobe.
    Then start it, and go for File-Open catalog, and point to your exsiting LR3-catalog. The program will tell you that it needs to upgrade the catalog, which you confirm. This will create a new version-LR4 of your latest LR3-catalog.
    You might not like the name automatically chosen by this upgrade process, so close LR4 and use Windows Explorer to rename it into something meaningful like "LR4 Master Catalaog" or some such. Then double-click on it and work from there.
    Your previous images will show an exlamation mark in develop module for LR3's old process version 2010. Do not do anything on a batch basis for it, as this is not needed.
    Only for images, for which you do not like your previous LR3-develop results so much, click on the exclamation mark and upgrade it to LR4's process version 2012, and manually tweak from there.
    Cornelia

  • Question regarding Upgrading from Standard Edition to Enterprise Edition

    DB version:10gR2
    We want to upgrade from Standard Edition to Enterprise Edition.
    In the following documention
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14238/intro.htm#BABFBJCC
    It talks about
    Deinstall the Standard Edition server software.I don't understand what they mean by DeInstall the software.
    Question 1.
    By 'DeInstall' , they mean , use DeInstall Products in the Welcome screen of Oracle Universal Installer and Remove the chosen OUI Home.Right?
    Question 2.
    If i 'Deinstall' (ie. remove the software), all the binaries are lost. Right? So what is the point of having just the data files?
    Edited by: Citizen_2 on Apr 8, 2009 1:59 AM

    Citizen_2 wrote:
    DB version:10gR2
    Question 1.
    By 'DeInstall' , they mean , use DeInstall Products in the Welcome screen of Oracle Universal Installer and Remove the chosen OUI Home.Right?Yes, that means use OUI and deinstall the Standard Edition
    Question 2.
    If i 'Deinstall' (ie. remove the software), all the binaries are lost. Right? So what is the point of having just the data files?Because next point says install Enterprise Edition. For first get rid of old one and then install the needed one. There is no such option as upgrade in this case.

  • Some starter questions after update from pse 10 to 13.

    Hello there,
    ive just installed pse&pre13 and imported and converterd my cataloge from pse10 to my new pse13.
    After some surching for viewing settings zo its looks the same as my old screen i discoverd  a couple of things:
    1) not al my fototags are converterd in to my new catalog. (very anoying ) probable the program needed some time after opening to make al the  tags visible after 20 min it was corrected.
    2) even with a i7 4770 cpu and 8bg mem and solidstate hd the new pse 13 freezes for some seconds after change to maps view
    3) when i started for a quick look premiere (not the cataloge) it was complaining about a dvd or disk witch it couldend find. It  asked for a suitable medium in station E..
    cant ignore it or past it  except by placing the instaldisk and click on X.
    (found the solution in the forum as an answere to somewan else. => rename oldfilm.eax in the newblue folder to .......eaxold => little bug fix)
    have anyone also stumbeld on/over this problems?
    And more conveniant: wich solution is availeble?
    Het bericht is bewerkt door: Peter Kaat

    Hi Don,
    today I read a lot of other posts in this forum touching this issue.
    Sorry, but I'm not a native speaker, maybe that's why I did not find a lot those posts before. After reading all this, there are still some things that are not quite clear to me.
    First of all: Crystal Report printing inconsistancies in .NET
    Is there a way to get around this? Scanning forms and using them as a backgroundimage...? Are you serious about that?
    I read a lot about different registry keys to solve the margin and scaling issue.
    We are using
    Crystal Reports XI
    Visual Studio 2010
    Runtime 13.0.9.1312 (before 10.5.0.0)
    Which registry key is needed on which system (CR XI and VS2010 are not on the same System)
    Do we also have to register a key on the customer systems?
    We moved from Runtime 10 to 13 because we had major issues with Windows 8.1. Do you know if these issues still occur? Is there an SP for that?
    Thanks in advance,
    Mike

  • Question about updating from Lion Mountain Lion

    Hi,
    I am currently running Os x 10.7 Lion on my Macbook Pro and thinking about buying Mountain Lion from the App Store. I have a few friends who have dowloaded it and have not been able to run their messages because they do not have a serial number. What is the cause of this? How can I ensure that this will definately not happen to me? I want to upgrade to Mountain Lion purely for the use of messages and the other cool features that there is now. Is it worth it?
    Thanks.

    nnectw wrote:
    My friends 'About this mac' section looks like this and because of this he is not able to use messages and facetime? Anyways, if I have a problem with Mountain lion, am I able to get a refund and then downgrade to lion easily?
    Has he had the logic board or any other major part replaced?

  • Questions regarding going from iPhone 3G to iPhone 3G s

    I have the iPhone 3G, and want to get the iPhone 3G s.
    I have had my (AT&T) phone contract since 12-30-08. So, it hasn't been a year yet.
    If I were to go to the store and purchase the iPhone 3Gs (32 GB), could I simply pop-out my SIM card, put it in the iPhone 3Gs and start using it?
    If so, how much would it cost?
    Also, could I give my old iPhone to my little brother, and could he get a new SIM card and start using it?

    Your SMS messages will not transfer to a new phone. Also, make sure you have gotten all of the pictures off of your phone that you've taken with it as those won't transfer, either.
    I have read that MarkSpace has a program that will download your text messages, but have not tried it out myself.

  • Reload an infocube from an ODS with erroneous information

    Hi:
    I have an Infocube that is update from an ODS. My problem consists in the R/3 system from LO, they put an invalid string. It pass without a problem from R/3 to the ODS. But when it makes the request to load the infocube it displays red light because of this string.
    I made a selective delete from the ODS, but when i run the chain proces just to load the data from ODS to the infocube it continue this mistake.
    Is there any table that I have to delete?
    Points for helpful answers!!
    Thanks

    Hi Herr,
    The selective delete from the ODs would just remove the records from the Active table of the ODS, not the Change logs (from which the delta records move). If you like you can set up error handling in the InfoPackage loading to the cube, so that this record is held back and the others go through and reporting is enabled. Or if the record is required and removing it will change the numbers, you can try to change this record in the PSA and correct it, then load from PSA to the cube.
    Hope this helps...

  • I have a question regarding my txt/alert tones. I recently updated my iPhone 5's software without first backing it up on iCloud or my computer (oops). After my phone finished updating, i lost the new ringtones and txt/alert tones i had bought.

    I have a question regarding my txt/alert tones. I recently updated my iPhone 5's software without first backing it up on iCloud or my computer (oops). After my phone finished updating, i lost the new ringtones and txt/alert tones i had bought. I connected my iPhone to my computer and sync'd it hoping that it could download my purchases from the itunes store and then put them back on to my phone but no such luck. When i look at my iphone on my computer and look at tones, they do not show up at all. However, if i click on the "On This iPhone" tab and click on "Tones" the deleted ringtones and altert tones show up...they are just grey'd out and have a dotted circle to the left of them. I also tried to go to the iTunes store on my phone and redownload them and it tells me that i have already purchased this ringtone and asks me if i want to buy it again. I press Cancel. I know when i do that with music it would usually let me redownload the song without buying it again but it wont let me with the ringtones...so how do i get them back? any help would be greatly appreicated

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

Maybe you are looking for

  • New Multi-OS/CPU aware virus broke through virtualbox. For a reason.FYI

    FYI (all) Dear sir (RMS @ GNU), my apologies. That e-mail concerned the embedding (secretly) of personal information during the make process of certain gnu software but there's a new developent and I'm extremely mad : I have been looking for ways to

  • My iMac turns to black sometimes and need to restart it and then turns black again in 2 to 15 mins... how do i solve this problem?

    My imac turns to black someitmes. And I need to restart it... sometimes it works good for like 30 min, sometimes it turns black again even when i was typing in my password and need to restart it again and again untill i really angry that i have to le

  • Issue in Duplex Printing in Acrobat 9 Pro

    Hi, I have issues in duplex printing it comes out inverted. 1 side is correct and the other side is in the other direction. Im using windows 7 and an HP 8500 wireless. Microsoft word is working fine so im assuming the printer driver is working ok. An

  • Nokia 6200 and isync

    hi, I have a G4 running OSX 10.3.9 with a bluetooth adapter I also have a nokia 6200 with infared and if I wanted i can purchase a DKu-2 cord for usb connectivity. I don't think it has blue tooth, I can also upgrade to the latest version of osx with

  • Reading or changing sequence number in TCP packets

    I don't know wether this is feasible,But you're my last chance to figure out something else.Can i read the sequence number that comes inside the TCP header in the incomming packets?This sound illogical but since there is a method for getting the IP o