ABAP Code in End Routine - reverts back to previous version

Team:
Currently, we are in upgrading from 7.01 to 7.4. The new development environment is only used to built the new development work until the mirror image client is upgraded.
In one customised dataflow, we place some code and the transformation is activated. No issues at all, then the next day, the code reverts back a previous version. Consequently, we are losing the code. We already have a sign off of a piece of work and we checked the code again. We were puzzled as to why the code has gone back to a previous version.
SAP is asking to replicate the issue. Unfortunately, we cannot replicate accurately this issue. Now, we have two more developers reporting the same case. Yet again, the issue comes and goes. We reboot the server with some success. Then days later, the issue pops up with a developer. The Basis guys have not found anything related to this case.
Any idea is welcome.

Sync to Date is currently the only option offered by the DTR.
You can only edit the active version of a resource in a workspace, because the DTR does not support branching within a workspace: There is no mechanism in place to merge an older version of a resource into the same workspace.
If you want to do this, you must make a copy of the workspace (a "maintenance" workspace) and make your changes in that workspace. You can integrate the related activity/activities into the "ongoing development" workspace afterwards, if you want to of course.
Why don't you want your bugfixes to be forwarded by the way? Those bugs are also in your enhancement tracks...

Similar Messages

  • Outlook 2010 Contact changes revert back to previous version

    I have a user on a corporate domain who is using Outlook 2010 to connect to an Exchange 2010 Server.  Everything is working normally except for the user's Contacts; she is able to create new contacts with no issues.  However, when she modifies
    an existing contact and saves the changes, the changes will only remain for a short period of time.  Sometime after the changes are made, the contact will revert back to its original information and the changes are lost.  The amount of time between
    when the changes are made and the contact reverts is unpredictable and will occur even if Outlook remains open the entire time (in other words, Outlook does NOT have to be closed and re-opened for the incident to occur.)
    We have even gone as far as removing the user's Outlook profile and associated files and recreating the profile on the machine.  This has not fixed the issue.
    The specifics for the user:
    Windows 7 Professional, Service Pack 1
    Microsoft Office Professional Plus 2010
    Intel Core i3 Processor with 4GB of memory
    Any assistance or ideas would be appreciated!

    I will try the OWA test and get back to you on that.
    As far as removing and re-adding the account, I've already done that numerous times, going so far as to even removing Outlook and re-installing.  This issue has even followed the user across multiple machines.
    The user does have a SmartPhone that she synchronizes with.  I've tried removing the SmartPhone from her account and then making the change with the SmartPhone no longer synching and the issue still occurs.
    I will also go back and check the event log to see if there are any notifications.  I don't recall seeing any issues or errors pertaining to this in the Event Logs.  It just seems to be a totally random event that doesn't leave any "fingerprints"
    on the system.

  • How to revert back to previous version of Internet Explorer (Windows 7)

    Hi,
    I recently ran updates on my computer and IE 7 was taken up to IE 9. I had CCTV plugins that dont work with IE 9 (I find out too late) so now I want to revert to IE 7 or IE 8. No download that I can find for either IE 7 or IE 8 will run on Windows 7. Both
    throw up a library error. Can anyone suggest a solution please. My Windows 7 Ultimate had IE 7 intalled from the box - so it will obviously run. I can remove IE 9 for the Control Panel - but that is about it. I don't belive that the only option would be to
    completely reinstall Windows to slove the issue - and would it even activate a second time?

    IE9 IS the problem.  We have three DVR camera systems which cannot be accessed through IE9.  The DVR manufacturer admits the problem!
    So explain exactly what it is about IE9 that makes it unable to access the DVR camera systems?
    Provide detail of exactly why IE9 is the problem.
    Looks like you are really a newbie about using browsers who is just learning how to use IE.Its weird that you are expecting Batteryjer will be knowing the exact root cause problem. FYI I've the same issue but in different context.
    I'm using Pega PRPC  which was working fine with Internet Explorer 7 and 8. But with the latest update of Internet Explorer 11 (which happened automatically without my knowledge), I'm not able to use this pega software properly as many menu items doesn't
    show up.When I play around with F12 Developer Tools (located in Tools) and change the Interent Explorer version from 11 to  8, 7, most of the menu options of Pega appears correctly in browser screen. If you really want to know the exact cause , go back
    to your computer and try to play and learn..
    I can say that IE is becoming more carp and crap with every update and there is PROBLEM WITH INTERNET EXPLORER with every update.Still I want to rollback my IE from 11 to 8 without using Developer Tool.

  • ABAP Code in Start Routine for restricing the data records from ODS1 - ODS2

    Hi
    I need small ABAP Code in Start Routine Of Update rules Of ODS . Im in BW 3.5 .
    I have records like below in first layer ODS and i want to restrict some records while going to second layer ODS ..
    ODS1 :-
    DocNO   EventType    Date
    123         001             08/08/2008
    123         003             08/08/2008
    123         011              09/08/2008
    I want one record in ODS2 for this document number whose EventType = 001 only and date of third record ... like below
    Doc NO     EventType      From Date          Todate
    123              001               08/08/2008         09/08/2008
    So how can i get like this record in the ODS2 which will get data from ODS1 . So i need to write the code in the start routine of the ODS2 .
    So please give the me the code for start routine ....
    Regards
    Suresh

    Its difficult in BW 3.5 to include this logic in START_ROUTINE as you cannot add the extra to_date field to the DATA_PACKAGE table.
    You need to create a new global internal table with the same structure of DATA_PACKAGE with additional field to_date. then use the logic to fill in the global internal table
    define a internal table new_data_package with the required structure like (docno, eventtype, fromdate todate)
    data: l_w_datapkg_001 type data_package,
    data: l_w_newdatapkg type new_data_package,
    data: l_w_datapkg_011 type data_package
    LOOP AT DATA_PACKAGE INTO l_w_datapkg_001 WHERE event_type = '001'.
    l_w_newdatapkg-docno = l_w_datapkg_001-docno.
    l_w_newdatapkg-event_type = l_w_datapkg_001-event_type.
    l_w_newdatapkg-fromdate = l_w_datapkg_001-date.
    MOVE CORRESPONDING FIELDS OF l_w_datapkg_001 INTO l_w_newdatapkg.
    READ TABLE data_package INTO l_w_datapkg_011
    WITH KEY docno = l_w_datapkg_001-docno
                     event_type = '011'.
    l_w_newdatapkg-to_date = l_w_datapkg_011-date.
    APPEND l_w_newdatapkg TO new_data_package          
    ENDLOOP.
    Now the new datapackage contains the ODS2 data that u needed

  • Got to end of trial period for Adobe reader XI and cannot revert back to old version or install another version b/c it says I have a newer more functional version, so now I've got no reader at all and cannot fix. Any ideas how to overcome this?.

    Got to end of trial period for Adobe reader XI and cannot revert back to old version or install another version b/c it says I have a newer more functional version, so now I've got no reader at all and cannot fix. Any ideas how to overcome this?.

    YOu need to be clear about the products you are using, so we can help you. In particular there is no trial of Adobe Reader, it is free and keeps running. Sounds like you are using some versions of Acrobat - which?
    YOu must properly uninstall the trial, don't just delete files or you may get a mess impossible to recover.

  • Delete code in End Routine.

    Hi Experts,
    I have to write a delete code in end routine. I giving it below. Kindly correct for mistakes.
    Delete data_package where zquantity = 0 and zorder = 0.
    I find after putting this code it tells that Data_Package is not available.
    What to put then?
    Kindly help me.
    Thanks in advance,
    With Kind Regards,
    Kannan

    Hi
    There is no Data_package in end routine. you can use that only in start routine.
    Use Result_package in end routine.
    Thanks
    Jay.

  • I recently installed the trial version of Adobe XI and the trial period ended, so I wanted to revert back to the version I already had. I did not see any uninstall feature and my old version was apparently replaced by the trial version. I cannot re-instal

    I recently installed the trial version of Adobe XI and the trial period ended, so I wanted to revert back to the version I already had. I did not see any uninstall feature and my old version was apparently replaced by the trial version. I cannot re-install a previous version b/c I need both a product Id (GOd only knows where that is now) and a way to uninstall the trial. Any ideas?

    When you installed the trial, there should have been an option to have ignored your current installation and leave it. Apparently you skipped that case. To uninstall the trial (in Windows) go to Control Panel>Programs & Features and select the Acrobat XI and choose uninstall. After the uninstall run http://labs.adobe.com/downloads/acrobatcleaner.html to clean up your system. HOWEVER, if you see your old Acrobat in that window, do not run the cleaner, but do a repair on the old version.
    You did not mention the old version you had. You might try from http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html. As for the S/N, you should have register and if so you can get it from Adobe. The instructions are at http://helpx.adobe.com/x-productkb/global/find-serial-number.html#adobeproductdownload.
    Be sure to backup any download of the old installer and the S/N to CD or backup HD for future use. They will not likely continue to be available.

  • I've upgraded to the most recent version of FF. Streaming/page loading is worse than ever. I have done all that's recommended to fix it. When will FF come up with a fix? And how do I revert back to a version that actually works? Please help. Thanks

    How do I revert back to a version that works?

    Hi,
    your aspx menus are probably using document cookies to store static information. (f12>Console tab, document.cookie )
    ensure that client machines are accepting your company's default GPO settings.
    Tools>Internet Options>Security tab,
    click "Reset all zones to default"
    Content tab, click the "Default" button.
    Open a change request with your site developers to feature test for noscript and cookie support in their client side code.
    File>Properties to determine which IE Security zone a site is opening in.
    Regards.
    Rob^_^

  • How do I revert back to previous (before 11) itunes. Someone nicked my Album Cover flow, without asking

    how do I revert back to previous (before 11) itunes.
    Someone nicked my Album Cover flow, without asking. I have snow leopard. I was happy. Just before Christmas as if I havent got enough to do Thank You. I've given Apple loads of money this year--presents and all, the least they could do is tell me, they're going to take stuff off of My computer that I enjoy,/ find very useful/ and worked hard to update all my album covers and have a gallery of my own artwork for my mixes--it was beautiful. When I went to add some more, the facility had been taken away from me. Was so dissapointed. They send me emails all the time to buy the latest must have products. I even did a questionair to help them. They really care for their customers--right. So why couldnt they warn me about this update, its only polite.
    If I bought a warm coat some years ago, then the manufatures came round without my knowledge and cut off the left arm, and later told me, their reserch says that people dont use the left arm so much so they have to get rid of it. 1. I think that would be illegal. 2. its impolite not to ask if they could do it. 3. why not give me an options to keep it, seeing as i bought it. 4. its ludicrous.
    I trusted Apple-but then -they took my YouTube off my ipad. I cant update to newer software as I will lose some expensive programms (Im not made of money). I also have 2 oldish defunct but fully working laser printers (if they were compatible with new software).
    Im not a techky-I just use the stuff, I do art and music and Cover Flow was equipement I used.
    I want to get rid of itunes 11, anyhelp out there

    click the blue download button...
    http://support.apple.com/kb/DL1576

  • Is there a way of reverting back to previous firefox version

    I use firefox extensively for development. I use firebug and dojo. It seems that the new version (Firefox 4) is far slower than the previous version and sometimes hangs completely. I believe this may be caused by Firebug doing a lot of work but it never used to happen. Also firebug doesn't quite seem to work as well with dojo script. Previously if you did a dojo.require to drag in a js script file then you could automatically see it through firebug. Now have to put files I want to debug with script tags. Is there a way of reverting back to previous firefox version?

    No need to re-install plugins or extensions.
    You can install them both but there are a few steps to take.
    When you install the second version of Firefox use the custom installation option and choose a different location to install Firefox.
    In order to use both versions, you need to create a new profile for the second version of Firefox (Firefox stores user data in the profile). Using the same profile with different versions can cause problems. Once you create a new profile you can copy certain data such as bookmarks and passwords between them. You can also use Firefox Sync to keep the profile synchronized. Finally, you will need to set up shortcuts to launch the correct profile for each version.
    The following links show how to do this:
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    * https://addons.mozilla.org/firefox/addon/firefox-sync (only needed for Firefox 3.6, it is built into Firefox 4)
    An alternative way of testing Firefox 4 is to install the portable version on your hard drive. It will use its own profile folder and not interfere with the other version of Firefox. You can get the portable version from http://portableapps.com/apps/internet/firefox_portable

  • Indesign CS6 reverting back to previous save on document

    Wonder if anyone can help? I am saving the artboard, then exporting to pdf and saving that document off. When returning from lunch the artboard and pdf have reverted back to the version from, say 9am, not the updated version from, say 11am.
    Not sure why this is?
    Cheers for any tips!

    Really strange. I was looking at the updated artwork printed off from before lunch and seeing the pdf and indd files both reverted back to a previous version for no reason whatsoever. No server or drive problems either. Weird. Thankfully the changes werent that intensive!

  • Solve bugs or give us the chance to revert back to previous software without loosing waranty!

    dear sony developers and and android developers
    please solve bugs or give us the chance to revert back to previous software without loosing waranty!

    You can always post any problems you have here and we can try and help.
    Also, you would never have to lose your warranty, you can reach out to our Regional Support Office and they can revert the software back (by you visiting an office, or mailing the phone in).

  • How to revert back to pervious version?

    Hi,
    Is there any way to revert back to pervious version?
    e.g. doc has 1,2,3,4,5 versions (and family is added to folder).
    I would like to start back from version 3, is it possible? More or like i am looking for unix file restore like utility ...
    Thanks,
    -Niraj

    Goto
    PFTC->Workflow Builder->Goto->Workflow Builder->Choose version->Activate it.
    You have to start a new Workflow instance for the change.
    Thanks
    Arghadip

  • Can I revert back to old version of itunes from version 12

    I use itunes version 12 and have a nano 7th generation.  I recently upgraded my itunes to version 12 and have to say I don't like it.  Can I revert back to earlier version and how do I know what version I used previously?
    The main reason I would like to revert back is that I have encountered a problem that I never had previously with itunes.  Upon purchasing a song, when I try to copy it to my ipod I am getting the following error message :
    "(song name) wasn't copied to ipod because it is only available in icloud".   Since when did I do that?
    When I attempt to download from icloud I get the following error message "There was a problem downloading.  You do not have enough access privileges for this operation".
    What can I do now ??  Can I revert back and will this sort the problem?
    Many thanks

    The skin may never be made compatible.
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • Itunes can I revert back to old version

    Don't like the new itunes can I revert back to old version.

    I had the same question. Someone answered perfectly here post https://discussions.apple.com/message/20575126#20575126
    The answer was click View > Show sidebar. Devices and playlists will display in the left sidebar once again.

Maybe you are looking for