Version in mc87

i am uploading the data in mc87.  shall we create the record in same version??
because for every record it is asking new version?

Hi
while Transferring the Plan to Demand Management, in the MC74 screen have you unmarked the Active tick in the bottom of the screen?
Regards
Bala

Similar Messages

  • How to activate planning version

    hi,
    sap gurus,
    in which t.code we will create planing version for product allocation.
    please explain how to activate planning version in product allocation.  when we go T.CODE MC93
    there the planning version 'A00' showing active instead of '000' which works as a updation when ever requried.
    regards

    Dear,
    A00 is active version
    What we need to do is create inactive version say 001 or 010 anything and forcast sales plan or production plan
    Creat sales plan in MC87 and then goto MC88 make this inactive plan to active plan which system automatically takes to A00
    Logistics u2192 Production u2192 SOP u2192 Planning u2192 Version Managementu2192 MC78 Copy
    So here in the Source Version Provide the SOP version that you have created,
    In the Target Version give Version A00
    Hope clear to you.
    Regards,
    R.Brahmankar

  • Version related problem in Sales and Operations planning

    The system has been upgraded from 4.6C to ECC 6.0. We are facing the following problem in production (the problem was not there in upgraded development server)
    upto last year client has consumed version number up to 321. Yesterday they have created and saved a plan with version number 322 for material M1 and Plant P1. Now,
    1.     T-code MC87. for material M1 and plant P1, Hit enter.Current version shows as , say, 323.
    3.     But if you try to create another plan and enter a new material in MC87 (say M2), the version number shows as 322 instead of 323.
    Please suggest what may have gone wrong and how to correct.
    Thanks in advance.

    Dear,
    OMP2 is only use to create the version number  please check the version number here.
    Also note only active version will relevant for MRP.
    Regards,
    R.Brahmankar

  • SOP Confituration- Maintain Copy Profiles version A00 not maintained

    Hi Gurus
    While configuring Maintain copy profiels (SOP) and trying to input A00 in Target Version field in develpment server
    Iam finding following error
    "Entry  A00  does not exist in P44V (check entry"
    "Input values must be defined in Table P44V. The value or values ' A00 '
    are not specified in this table."
    Iam not fining any img path or TC path to configure this A00
    Your earlier response is highly appreciated
    thanks
    K.Prabakaran

    Hi Prapakaran
    A00 is active version
    what we need to do is create inactive version say 001 or 010 anything and forcast sales plan or production plan
    creat sales plan in MC87 and then goto MC88 make this inactive plan to active plan which system automatically takes to A00
    hope this will solve your problem
    Thanks
    Bala

  • 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

  • Accessing BAPI's using JAVA with out using webdynpro URGENT

    hi Experts, What is the procedure for calling RFC/BAPI's using JAVA with out using the webdynpro. Please let me know what are the possibilities with step by step implementation. Regards Vijay

  • Printing in BSP

    Hi all I ve created a BSP application which incorporates the BPS web interface for entering the commentary for the data in transaction cube. When i exceute the BPS web interface, i am able to see the documents for required selection criteria for exam

  • Interactive Reporting Issue

    We are changing the table definition, lets say a column name. And that column is referenced in a BQY. Is there a way that we can identify that changing a table definition impacts which BQY's

  • Can you force the bg of a button to a spicific layer?

    Ok, shot in the dark here? I am trying to get a button to always show the bottom layer as its background. For example: lets say I have 4 layers 0: photo 1: blue 2: green 3: yellow each layer is stacked on top of the next and each takes up 1/4 of the

  • What is an alternate to the % operator

    I'm studying for a java exam, and on my study guide I have a question that asks to rewrite the following equation a = b % c; let a, b, and c be integers how would i rewrite that without using the % operator? any help?