Version managemnet

Hi,
We have SAP R/3 4.7 version.
version management is active for purchase requisition and purchase document.
requirement is that we want we revert back to a version from current version in purchase order and sheduling agreement
how come we can do it?
i am able to dispaly chages made in each version .how can we make earlier version  active keeping all the version including current version
shakir
Edited by: Shakir on Aug 27, 2008 12:22 PM

No i do not wan to deactivate the version management.
i just want the purchase document to revert back to older version
As per sap help but there is no delete version
Deleting Versions of External Purchasing Documents
Versions of a purchasing document can be deleted in the relevant change transaction for the purchasing document (e.g. in Change Purchase Order (ME22N)).
Prerequisites
The following prerequisites must be satisfied before a version of a purchasing document can be deleted:
The changes made in the version must have been reversed (cancelled, revoked)
All open messages must have been deleted
Activities
To delete a version of an external purchasing document, proceed as follows:
Manually reverse all changes made to the purchasing document in this version.
If you do not reverse the changes of the current version, the changes will be assigned to the previous version.
Manually delete all open messages for the purchasing document.
Delete the version by choosing  Delete version on the Version tab page.
When you delete a version, it is completely deleted from the database.
Edited by: Shakir on Aug 27, 2008 12:39 PM

Similar Messages

  • How to find the changed objects of a transformation

    Hi,Experts
    If you someone changed the transformation,I want to know how he changed it?What I mean is which object,which rule he changed.How can i know that?whether the system can provide that information or not?
    Thanks!
    Best regards!
    Edited by: kun luo on Apr 28, 2008 11:26 AM

    Hi Kun,
                 Check with version managemnet....
    http://help.sap.com/saphelp_nw70/helpdata/EN/57/38e0fb4eb711d182bf0000e829fbfe/frameset.htm
    Regards,
    Vijay.

  • Recover deleted method from class.

    Hi,
    Is there any way I can recover a method which I deleted from my active class. I haven't activated the new class yet.
    Regards,
    Swadhin

    even  if  you  have saved the deleted Method   just  go to se10  see the Change request   in which you have saved   from there  open the request you can see you class  and in the Method  which you deleted   Double Click on it and  see the method.
    otherwise  go for the Version Management of that Class not for the Method.
    Because  Your class is  like your Function Group so with that the version managemnet of the Class you can get it back ....
    Reward  points if it is usefull...
    Girish

  • Request Numbers

    Hi All,
    Is any body having the ida about the requestnumber storage,
    I mean i have a Project Name & enhancement name  based on enhancemnet i would like to know the request number.
    Ex: In Cmod enter the projectname and click on components
    then it will disply the list of components if i click on comonents i can get the include object name then in version managemnet i know the request number,
    But i would like to develop the report based on project name it will display the components along with the requet number is there any link in database tables please let me know.
    Thanks in advance..
    Regards
    Rao

    I think you can display the requests for an object type - object , using Xn SE03 --> select Search for Objects in Trsanport Requests ( presss execute ).
    Now searach for R3TR CMOD <Project Name>
    Select Modifiable & release Tasks checkboxes...
    It will give you list of transports ..
    Thanks,
    Ram

  • Iphone 5s voice memo version in iPad app store? same

    i want to make sure after my quickvoice horror i download the correct version. i don't see any with the zig zag line for iPad? voice memo.

    The iPhone version is not available separately for download in the App Store. You'll need to read the reviews for the available third party apps.

  • New Applescript version breaks old code

    Hi there,
    First off, I'm not an Applescripter, but I have one script I wrote a few years back (with help from kind people on the net) to generate and save tiny applications which, when called from within an Adobe Flash executable, would open the required file using the Mac OS native application associated with them (i.e a doc file wouldbe opened by Word if installed, TextEdit if not...)
    It used to run fine on my old Powerbook G4 on an old version of AppleScript, but times change and, one whizzy Intel processor later, I'm trying to get the same script running on OS 10.8 with AppleScipt 2.5.1, with varied results.
    Basically, what the script should do is read a comma delimited file in the same folder as the script, called 'fileNames.csv' which contains the names of all the files that I want the tiny apps to open. Each item will then have its own file created by the AppleScript, named after each item, which get saved in an pre-existing folder in the same directory as the script and fileNames.csv file, called 'fscommand'.
    The example of the fileNames.csv file I'm having issues with:
    yr2_unit_1_tn.doc,yr2_unit_2_tn.doc,yr2_unit_3_tn.doc ... etc up until  yr2_unit_20_tn.doc
    The script always used to work fine, but the new version of AppleScript seems to have broken it. When I run it now, it creates all the .app files up until 'yr2_unit_11_tn.doc.app' but then stalls in 'Running...' mode in the AppleScipts editor, and refuses to save apps for the final nine files in the .csv file.
    It still runs ok from an older AppleScript editor (2.2.1) but this only saves PowerPC applications, which won't run on Intel Macs. And this would be me running away from the problem, rather than attempting to solve it ;-)
    I'm thinking it's a filename issue, as it always seems to break when attempting to save "yr2_unit_11_tn.doc.app" when "yr2_unit_1_tn.doc.app" already exists in the 'fscommand' folder. If I create a new 'fileNames.csv' file which only contains ten entries from 'yr2_unit_11_tn.doc' to  'yr2_unit_20_tn.doc', and run the script to an empty 'fscommand' folder, it processes all the files fine. It just won't do all twenty entries from 1 to 20.
    Here's the script. I know I'm doing something really stupid here, but as a rock bottom novice AppleScripter, I can't see the error, or why it would work in one version of AppleScript and not another. I can post a link to the zipped files if this is any help in solving it. Thanks in advance for any help! :-)
    tell application "Finder" to get folder of (path to me) as Unicode text
    set cwd to result
    set fileRef to open for access alias (cwd & "fileNames.csv")
    set theList to read fileRef using delimiter ","
    close access fileRef
    set theFolder to alias (cwd & "fscommand")
    set theFolderPath to theFolder as string
    #Create the .app files and save them in theFolder
    set NL to ASCII character 10
    tell application id "com.apple.ScriptEditor2"
    launch
              repeat with theItem in theList
                        set x to make new document
                        set x to the front document
                        set theCharacters to characters of theItem
                        set theReversedCharacters to reverse of theCharacters
                        set theReversedFileName to theReversedCharacters as string
                        set theOffset to offset of "." in theReversedFileName
                        set theReversedSuffix to text 1 thru (theOffset - 1) of theReversedFileName
                        set theSuffix to (reverse of (characters of theReversedSuffix)) as string
                        set the text of document 1 to "tell application \"Finder\"" & NL & "activate" & NL & "set cwd to get folder of container of (path to me) as Unicode text" & NL & "open file (cwd & \"assets:" & theSuffix & ":" & theItem & "\")" & NL & "end tell"
      compile document 1
                        set file_path to theFolderPath & theItem & ".app"
                        save document 1 as "application" in file file_path
      close window 1
              end repeat
    end tell

    That seemed to be it. I put a tiny delay in between saving the document and closing the window and the file runs smoothly through all 20 items.
    compile document 1
    set file_path to theFolderPath & theItem & ".app"
    save document 1 as "application" in file file_path
    delay 0.3
    close window 1
    Never thought that I'd reach the day where I was trying to slow the computer down to process something more carefully :-D

  • I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because

    I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because its a prestiage of Apple Company.
    Pls inform me how can i resolve the problem of wifi.

    You have to go to autherized iPhone agent.

  • I have a 27 in. iMac with the latest version of Snow Leopard. When Lion comes out, will it be software I purchase and download online? I am trying to prepare for cost and don't have a point of reference, having been a Windows guy until last summer.

    I want to know what to expect in terms of moving from one OS to another. Having been a Windows guy until last summer, my only experience is going from one version of Windows to another, which is usually a fairly costly purchase. I will want to go to Lion, but as a retired teacher, my income is fixed. I am not looking for a specific price, I am sure that is unknown, but I would just like to know help Apple does these things so I won't be sadly surprised.

    Historically Apple has sold OS X upgrades via DVD media however with the advent of the Mac Apple Store that throws another possibility into the mix. That's about as much as I can say as these forums don't allow us to speculate about future products. As for the cost historically Apple has priced OS X upgrades between $29-$129, the last upgrade (Snow Leopard) was only $29 but that was an exception. Again we cannot speculate on these forums about that. The good news is that Apple is unlike Microsoft which makes OS upgrades expensive and complicated. The choice with OS X is do you want a server version (most users don't need one) or a single computer license. The users that buy server versions tend to have a number of Macs they manage from a server, most consumers don't have this issue.
    Keep reading the news, as you know Apple has announced a Summer release for Lion.
    Upgrades on OS X are usually very simple. I've upgraded from Tiger to Leopard to Snow Leopard and each transition has been very easy. With any major OS upgrade there are some basic rules to follow, for example always, always, always backup prior to any update. When Lion is released to the general public post again for what to do to prepare or even do a Google search on "How to prepare for OS X upgrade" and you will find a number of articles that will provide some suggestions and valuable insight. You can also re-post here and users will be happy to assist.

  • Itunes wont open error says I need Quicktime version 7.5 5 for it to work

    Computer wasn't working got a new operation system installed not when I plug my Iphone in it only brings Iphoto up I can't get Itunes to come up and every time I try it says error I need version 7.5 5 Quicktime player for Itunes to work How do I fix this

    Click here and install the software.
    (80824)

  • Each time I try to synch photos from my Windows 7 PC to my iPad2, iTunes stops working, and the error report says Problem Event Name:     APPCRASH   Application Name:     iTunes.exe   Application Version:     10.3.1.55   Application Timestamp:     4deec35

    Each time I try to synch photos from my Windows7 PC to my iPad2, iTunes stops working and the error message is:
    Problem Event Name:                          APPCRASH
      Application Name:                             iTunes.exe
      Application Version:                           10.3.1.55
      Application Timestamp:                    4deec351
      Fault Module Name:                          ntdll.dll
      Fault Module Version:                        6.1.7601.17514
      Fault Module Timestamp:                 4ce7ba58
      Exception Code:                                  c0000005
      Exception Offset:                                0002e3fb
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             1033
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
    I reloaded iTunes 10 (64 bit) successfully, but the problem remains the same.
    Any suggestions?

    I looked in the folder from which I want to synch photos, but there is no such thing as an "ipod photo cache" in that folder, or sub-folders, as suggested in the link which you were nice enough to provide.
    I have also tried removing photos from my iPad2 Photos App, and "iTunes has stopped working" shows up  again as soon as I click on the "Synch photos from" button.

  • Cannot open videos in Facebook etc says need latest version of Flash when my computer says I have 10.0.32.18 installed but it doesn't show up on Add/Delete programs

    I am not technically sophisticated and have been reading other post about people having problems with what appears to some problem with Flash Player.  I have checked my computer and it tells me that I have version 10,0,32,18.  In tools it shows in "Manage Ad Ons"  that I have "Shockwave Flash Object" version 10.0.38.18under the catgory "all ad ons" but not in the catgory "currently installed ad ons."  I have no tired to unistalled anything since I don't show any flash player installed.  Yet when I go to a video it says I need the current edition of Flash Player which when I try to install freezes up.  I have IE8 with all Windows updates.
    Ineed simple help.  Not tech jargon, please
    Message was edited by: BlairMac

    I replied to you on the "Is it this simple?" thread.

  • I'm on ff 3.5.5 for Mac. I've been prompted twice to download latest version. Each time I have dragged the ff icon from applications folder to the dock and all seems ok. But next time I start ff it says I'm on 3.5.5 and should update to latest version!

    There was no "update failed" message
    I wonder whether I'm doing the right thing when I drag to the dock. There's only one ff icon in the applications folder. The first time I was prompted to update it showed that days date next to the icon as if the update was successful. The second time was a few days later but I think it was still the same date next to the icon (25/8/10) I've only just noticed that (on 10/9/10) so can't be sure but I'm sure the second time was around 2nd or 3rd of Sept.
    Also, I am running two versions of ff- one is english, the other is the Italian version. They can't be opened at the same time but they seem to talk to eachother in the background, so to speak, because when I open one after a long gap, it opens with all the history and settings of the other one, right up to the last website I went to. I think I closed both when updating because it prompts you to close all programmes and restart (I think/ remember) so I just clicked ok to that prompt.
    By the way, I got the prompt to update twice for ''BOTH'' the Italian and the English version- so 4 times altogether so it would seem that ff does recognise them as separate but still has problems concluding the update for each separate one respectively.
    Thank you very much if you can help.
    Trapperjohn

    Download a new copy of the Firefox program: http://www.mozilla.com/firefox/all.html
    Trash the current Firefox application to do a clean reinstall.
    Install the new version that you have downloaded.
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • I was updating Firefox from version 6 to version 7, after updating I tried to open Firefox and the message I got is this: This application has failed to start because xul.dll was not found. How can I fix this?

    I was updating Firefox to the newest version 7.0.1 from version 6.0.2 I think it was, I clicked the restart Firefox button that always comes up after updating. It started updating and then Firefox never restarted like it was supposed to after it was done updating. I then tried to open Firefox and it told me "This application has failed to start because xul.dll was not found." I did have Firefox crash on maybe about 30 minutes or so earlier which bothered me because I have been using Firefox for years and never had it crash on me before but I didn't think much of it at the time it happened because I was able to go back onto Firefox and finish what I had been working on. A while later I checked for updates and updated. The first time I tried to update it didn't work though so I had to shutdown Firefox and reopen Firefox and start the update a second time. It was after the second time that when I tried to open Firefox I got that message about failing to start because xul.dll can't be found. I filed a crash report when my Firefox crashed. This would have been around 1am-2am in the morning that Firefox first crashed and then wouldn't allow me to open it after updating. I have a DELL laptop running the Windows XP operating system but the laptop is probably at least 6 or 7 years old. The laptop will no longer charge so I always have to have it plugged into an outlet. Both my laptop hard drive and my external hard drive give me messages that I am running out of disk space on my hard drive. I bought this laptop 6 or 7 years ago second hand so it could be even older. In short it's a piece of crap and it gives me all kinds of issues but I currently can't afford a new one, but I have never had any problems with Firefox and I use Firefox more than any other aspect of my laptop so it's really really bothering me. May you please help me fix it?

    Unfortunately I tried that and it didn't work. Thanks for the help though. I tried to uninstall and it said I couldn't because the file is corrupt or something, but I think I finally got it uninstalled and/or deleted or whatever, but now I try to reinstall/download it again from the beginning and I can't. No matter what I do I can not get Firefox working again. No matter how many times I try to redownload it. Any other suggestions?

  • I am unable to open raw files from my Canon T1i in Adobe Camera Raw of my version CS3 of Photoshop.  I have tried to update my ACR by downloading version 4.6 from the Adobe website but I am still unable to open raw files, just JPEG.  Is there a way to use

    I am unable to open raw files taken on my Canon Rebel T1i in my version of Photoshop CS3.  When I import raw files into Bridge they come up as patches with CR2 on them and when clicked on, a notice comes up stating that Photoshop does not recognize these files.  I tried to update my Adobe Camera Raw by downloading version 4.6 from the Adobe Website, but when I clicked on the plus-in, I got another message that Photoshop does not recognize this file.  I spoke with a representative from Canon who said that I could not update CS3 and that I should subscribe to the Cloud.  I would prefer to use my CS3, if possible.  Can anyone advise me what to do?

    The T1i was first supported by Camera Raw 5.4 which is only compatible with CS4 and later
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    Some options:
    Upgrade to CS6
    Join the Cloud
    Download the free Adobe DNG converter, convert all T1i Raw files to DNGs then edit the DNGs in CS3
    Camera raw, DNG | Adobe Photoshop CC

  • Firefox update 10 won't open and the previous version 3.6 won't load any pages. I have done everything this site said to do. HELP?

    The last version of Firefox that I had was the one before 3.6. I stopped upgrading due to it always messing up and not working right for me... whether it be due to vista, or just errors on your part. My husband decided to upgrade firefox to the newest one two days ago because the version I had was just "too slow!" Ever since he did that, I cannot get firefox to open. No matter how many times I uninstall it and delete everything mozilla on my computer then reinstall after restarting my computer, it just refuses to open. Every time i try it says that firefox has stopped working. It cant even check for solutions. I then try to click on the icon and I get something that says: firefox.exe - Bad Image C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCP80.dll is either not designed to run n windows or it contains an error. Try installing the program again using the original installation media or contact your system administrator or the software vendor for support.
    I have tried installing it over and over again several times, same message shows up. So i had clicked on the link to go download the previous version of firefox... what sucks is that the only version on the site is 3.6.27. I have never upgraded to this. So the second i installed that version, i now am able to open up firefox... BUT it is unable to connect. I have internet... a pretty bad ass connection. So my internet is not the problem. I then looked up how to fix that issue and did all 5 things listed under the Firefox cant load pages but other browsers can link. Still nada! I am now stuck using IE and going insane. I am on the verge of throwing my laptop out of the damn window because I have to wait 3 hours for google to load. Nothing is working for me... and it would be appreciated for something more. If i can get help with a ton of details on what to do or how to fix this issue... either version... i would greatly appreciate it. I am going nuts having to put up with IE because my husband decided to update Firefox to a version that sucks with vista!

    Here is the system requirements page: http://www.mozilla.com/en-US/firefox/system-requirements.html.
    http://www.mozilla.com/en-US/firefox/all-older has the latest 3.6.x version, and http://www.floodgap.com/software/tenfourfox/ is another option.

Maybe you are looking for

  • Problem Launching Java Applet with Plug-in: Version 1.4.2_01

    Hello out there: I recently installed j2re-1.4.2_01 on my home computer but have been unable to access Web sites emmploying JAva applets. The following is an email exchange with Jeff Hall of Lowell Observatory, manager of an educational site hosted b

  • Can I use the "Apple DVI to Video Adapter" with the GeForce 8600M GT?

    It's all in the subject, folks. I've got an nVidia card, not ATI. Should I go ahead and buy the Apple DVI to Video Adapter to connect my MacBook Pro to my CRT Sony TV? Thanks. PS My May 2005 Powerbook G4 had both a DVI and sVideo connector. I used to

  • HDV KGCore crash with Final Cut express 4 NEED HELP

    I recently purchased a cannon hv30 hdv camera. This is my first time using High Def footage and I am now working on my first project with it. I have used Final cut express with a hard drive camera for over a year now and have made many projects with

  • Does 10.9.2 make Messages and App Store crash?

    Just updated from 10.9.1 to 10.9.2 After the initial reboot, I now can't open  Messages or App Store - both result in a full-on crash with a crash report.  Is anyone else having this issue?  Disk check and Permission Repair both come back clear.  Int

  • Motif 2.1.2

    Hallo, is it possible to install Motif 2.1.2 on Solaris 8 x86? If yes, where can I obtain Motif 2.1.2 package/source? Can I install motif 2.1.2 (SUNWmfrm) from Solaris 9 x86 on Solaris 8x86? I want to install Motif 2.1.2 on Solaris 8 because Eclipse