Problem changing mrp prfile

Hi All
By mistake i have assigned a wrong mrp profile for a new material and now i would like to change the same.Present there is no stock of this material although there is one PR generated for the material through MRP run as the material was assigned a "reorder point planning" mrp type and the reorder point was 1.
Now when i try to change the mrp profile by entering the material in mm02 and clicking the edit button i could see the mrp profile option is grayed out.Hoe to proceed further.Can anyone explain.
Please note that i would like to change the profile into one that is with mrp type ND i.e not planning relevant.

Hi All,
thankyou, i have found the resolution.That is while trying to change the MRP profile from the basic data views the system shows the MRP profile field in the edit option as grayed out.however when i try after going to the MRP views the system allows me.
thanks again

Similar Messages

  • Problem in MRP RUN

    Hi,
       We are maintaining one field in suppose MRP field in MRP1view as "X".
    In  Enhancement, we develop logic like that if in material master MRP field value equal to "X", then while creating reservation,system automatically create a PR along with reservation.
    Now My Problem is -
    I created a material with MRP field as "X", MRP type as ND.
    i created a resrevation for this material,system will generate PR no. 10000002.
    Now i am changing MRP field as Blank, & MRP type as PD.
    if now i am running MRP,system will generate again a new PR.now i have two PR for the same reservation.
    i also tried in t-code MD03, planning parameter as 3 (delete & re-generate).
    so now i have two PR against a reservation,if i am checking in MD04.
    so how can we control this situation,so that only one PR can create against one reservation.
    OR can we exclude that reservation / storage location for MRP,then my problem will solve.
    Thanks
    Pavan

    When you make enhancements you are taking responsibility that all scenarios are covered, and should not expect a solution from standard SAP.
    Change the nhancement in such a way, that when you try to change from X to blank, system will issue a message saying that Preqs exist, and thus will not let change before those are deleted.
    This will prevent the double coverage issue.

  • Problem With MRP

    Hi Friends,
    I am facing a problem with MRP. In my Implementation, my Client is a Automobile Gasket Manufacturer.
    One major product line is Gaskets which is high volume and low price
    We will use Make to stock  with streategy 40.
    Now the queries are as follows-
    1)       What should be the frequency of MRP Run for the plant (weekly , monthly of daily)
    2)       If  after one MRP Run- some Planned Orders and some Purchase Req are converted to Production Orders and Purchase Orders. My Prod Orders- 100 Pieces and PO is 1000 Kgs.
    Now subsequently , due to change in schedule,(PIR is maintained by Sales Department and it changes  often) lets say, my PIR is Changed from 100 to 10 Pieces ,
    How can a PPC  person come to know of this and inform the Buyer to foreclose the PO or amend the PO and as well change the Prod order also.
    Thanks in Advance
    Waiting for your Reply,
    Praveen

    Hi Praveen
    1) What should be the frequency of MRP Run for the plant (weekly , monthly of daily) : Daily Basis as your demand changes frequently.
    2) PPC will understand from MD04 screen where all the result of MRP as Stock Requirement List available.U cant change Production Order while running MRP as your demand changes from 100 to 10 pecies because Prodction Orders are firmed recipept.In that case you can change quantiy , do the availablity check and scheduled again  or set TECO so that it will not show up in the MD04 screen also.
    Any changes to demand and subsequent effect can be viewed through the exception messeges column in MD04/MD05
    Hope this will help you to figure it out.
    Regards
    Jia

  • Change Mrp Element Data of Production Order in MD04

    Dear guru ,
    In the mrp element data of the stock/requirement list for the production order I see the
    Production order number , the order type , and the system add /RE if production order is released or
    /PD if production  order is partial delivered. No other information about others production order status.
    How can I change mrp element data using Customizing or ABAP in order to recognize in MD04 if production order is confirmed or partial confirmed ?
    Thanks.

    Dear Cris ,
    I am not sure if CNF/PCNF will show up in the MRP Element data in MD04.I have checked PO which are also CNF/PCNF and i looked the same order in md04.It is not showing .U may need some ABAP help .
    But if you really intersted to see the list PO status together , then go to COOIS and give plant , order type .It will give you all the order under that plant irrespective of material and also Status.U ave lot of option to filter the PO status under Status Profile or System status ok.
    Hope this will fullfill your requirement
    Reward point if useful
    Regars
    Jia

  • Probleme changing the value of a variable in movieclip from my scene

    Hello,
    i have a probleme changing the value of a variable in movieclip from my scene. i explain: I have combobox on my scene containing categories, and in the scene i load an xml file containing links to php files that work with the combobox.
    Also on the scene i have a movieclip "filmstrip", inside this movieclip on the first frame i have a script loading the php file selected in the scene . i use a load() function with a variable "theUrl" inside like this : T.load(theUrl);.
    In my scene i want to change the value of "theUrl" inside the movieClip filmstrip. I tried filmstrip.theUrl = url; But it doesnt work
    the xml file
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <slideshow>
    <area title1="10 Last updated" link1="link1.php"/>
    <area title1="special" link1="link2.php"/>
    </slideshow>
    here is the code on my scene:
    var link1:Array = new Array();
    var LINK:String;
    var url:String;
    var whoOn:Number;
    whoOn=0;
    var x:XML = new XML();
    x.ignoreWhite = true;
    x.onLoad = function(success) {
    var photos:Array = this.firstChild.childNodes;
    for (i=0; i<photos.length; i++) {
    _root.link1.push(photos[i].attributes.link1);
    url=link1[whoOn];
    filmstrip.theUrl=url;//<<--HERE
    x.load("category.xml");
    var cbListener:Object = new Object();
    cbListener.change = function(event_obj:Object) {
    trace(select.selectedItem.label);
    if (select.selectedItem.label == "Last updated") {
    whoOn=0;
    } else if (select.selectedItem.label == "Special") {
    whoOn=1;
    url=link1[whoOn];
    filmstrip.theUrl=url; //<<-----HERE  
    select.addEventListener("change",cbListener);
    here is the code inside the movie clip "filmstrip"
    var T:XML = new XML();
    T.ignoreWhite = true;
    T.onLoad = function(xml) {
    etc etc etc }
    T.load(theUrl);    //<<---HERE it still undefined

    YESSSS . Thanks you very much Kglad it wotk i put all in a function inside the filmstrip function Tload(theUrl){etc ect}and in the root i call it like this filmstrip.Tload(theUrl);   and it works
    code in the root var link1:Array = new Array();
    var LINK:String;
    var url:String;
    var whoOn:Number;
    whoOn=0;
    var x:XML = new XML();
    x.ignoreWhite = true;
    x.onLoad = function(success) {
    var photos:Array = this.firstChild.childNodes;
    for (i=0; i<photos.length; i++) {
    _root.link1.push(photos[i].attributes.link1);
    url=link1[whoOn];
    theUrl=url;
    filmstrip.Tload(theUrl);//<<--HERE
    x.load("category.xml");
    var cbListener:Object = new Object();
    cbListener.change = function(event_obj:Object) {
    trace(select.selectedItem.label);
    if (select.selectedItem.label == "Last updated") {
    whoOn=0;
    } else if (select.selectedItem.label == "Special") {
    whoOn=1;
    url=link1[whoOn];
    theUrl=url;
    filmstrip.Tload(theUrl);//<<-----HERE
    select.addEventListener("change",cbListener);

  • How to change MRP Type in mass ?

    Hi experts,
             I want to change MRP type (MDMA-DISMM) in MRP 1 view of material master. I checked in Tcode MM17 , but this field is not available for mass maintenance.
            How to change it in mass? Thanks in advance.
    Regards,
    Jay

    Dear,
    Tcode: MM17
    Select Plant Data for material: MARC
    In the menu: Click on Select New Fields
    In the selction list, pick MRP type
    Once MRP type is selection, replace old MRP type with NEW MRP type
    Once New MRP type is selection, enter the materials or plant for which NEW MRP TYPE is applied
    Lastly, execute the transaction.
    OR,
    You are  trying to change value of MARC-DISMM
    You can use BAPI BAPI_MATERIAL_SAVEDATA
    Regards,
    R.Brahmankar

  • In iTunes I'm having problems changing the "Media Kind" with a number of playlists in the OPTIONS menu from "music" to "audiobook". After going through the steps, the next time I check the items have reverted back to "music". What step am I missing?

    In iTunes I'm having problems changing the "Media Kind" in the OPTIONS menu from "Music" to "Audiobook". After going through the steps, the next time I check, the items have reverted back to "Music". What must I do to save it as an "Audiobook"?

    After more digging in the Support section here and some Google work, I turned off iTunes Match and lo and behold!  I can change the media kind to Audiobook!  So, it looks like iTunes Match locked the files up somehow and for some reason.
    I went into iTunes Store > iTunes Match > "No, Thanks" to disable it on the local PC.

  • Having problems changing my verizon prepaid to a new device

    I'm having problems changing my Verizon prepaid phone number to a new device.

        Anita65,
    Oh no, sorry to hear you are having so many issues changing your device. However, get some assistance changing your device by contacting Prepaid Support at 888-294-6804.
    KarenC_VZW
    Follow us on Twitter @VZWSupport

  • Problem changing AppleID Name

    Hello,
    I am having problems changing my AppleID name. On Apple ID summary, it shows my moms name. Before I was 18 the billing information was under her name. Now I have changed it to my information. When I go to "Account Details" it shows my information, but when I go back to Apple ID summary, it still showers her name. How do i fix this or who can I talk to, to get this changed?
    thanks

    There is no an easier solution?
    Thank you !

  • Problem changing default key bindings using Oracle Terminal

    Hello,
    I'm facing a problem changing default key bindings using Oracle Terminal. I changed
    some bindings, saved them in forms60/fmrusw.res, started the generation and saved again.
    I thought that's it but it wasn't. It took no effect at all in Forms (even after recompilation) although reopening the file in Terminal showed the changes. I'm using Forms in German, which means that even the key bindings displayed in Forms are translated i.e. STRG+F1 instead if CTRL+F1,
    but I can't find a german version of this resource file, so i think it's the same resource file for all supported languages. But what is needed for the changes to take effect ?
    Thanks in advance
    STD
    null

    Hi,
    is it client/server you are working?
    if so you should not be using the fmrusw.res file because I guess your NLS_LANG is German_Germany.WE8ISO8859P1 or something like that. This means the terminal that is being opened is fmrdw.res instead of fmrusw.res and this file should be edited using Oracle Terminal.
    if you are working via the web implementation than you can open the file fmrweb.res in a text editor and change the keybindings in there. If you need to have the PC like key bindings on the web just open the fmrpcweb.res and see if it contains the German texts. If so you can either copy this file over the frmweb.res file or you can specify term=fmrpcweb.res in the serverargs parameter.
    Hope this helps.
    Kind regards,
    Frank van der Borden
    Oracle Support Services
    Netherlands

  • Can we change MRP Run results after executing MRP. Can anyone tell me how?

    Hi,
    I want to change MRP rum planning results after executing MRP run. Is this possible??
    Regards,
    Thomas

    Hi,
    Yes, you can do changes. The MRP result will be the planned order. You can change the planned order qty and dates.  Once you change the planned order manually, it will get firmed and the system will not do any automatic changes in that planned orders. You can delete the planned orders, but again in the next MRP it will create the new planned orders once the requirement has not changed.
    Regards,
    V. Suresh

  • I am having a problem changing a color in a selected area. Using the Quick Selection tool I am able to select the area I wish to change. Using the Brush tool, color, color mode and click drag in my selected area, nothing happens, no color changes.   I hav

    I am having a problem changing a color in a selected area. Using the Quick Selection tool I am able to select the area I wish to change. Using the Brush tool, color, color mode and click drag in my selected area, nothing happens, no color changes. I have viewed some videos and read numerous articles but haven't found the one to help me. Please point me in the best direction. Thank you Vincent TC

    For the sake of clarity and to save people time, Todd is asking about the behaviour of the Patch tool when using it to repair the area next to the young lad's head.  Todd gets a blurred dark tone pretty much regardless of the options he uses.
    IMO that's what I would expect to happen because of the close proximity of the other image elements i.e. the lad's neck and the strong lines of his shirt.  I would not choose to use the Patch tool in this situation.  Content Aware Fill makes a better stab at it. 

  • TS3899 I was hacked and had to change my yahoo password.  I cannot get my iPhone or iPad to accept my new password.  Am not receiving emails on either device.  I had no problem changing my password on my computer.  What is the secret?

    I was hacked and had to change my yahoo passwrd.  I cannot get my iPhone or iPad to accept my new password so I cannot receive messages on either.  I had not problem changing my password on my apple computer.  Please help!  What is the secret?

    Delete the account on your phone & iPad. Then set them up again.

  • Problem changing default webroot of built in server

    I installed CF 8 yesterday, and am running into a problem
    changing the webroot. As per the instructions at
    http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=webservmgmt_3.html#10239 3,
    I have modified the lines in jrun-web.xml as follows:
    Old entry:
    <virtual-mapping>
    <resource-path>/WEB-INF</resource-path>
    <system-path>C:/ColdFusion8/wwwroot/WEB-INF</system-path>
    </virtual-mapping>
    New entry:
    <virtual-mapping>
    <resource-path>/*</resource-path>
    <system-path>C:/ColdFusion8/spayflorida</system-path>
    </virtual-mapping>
    When I browse to
    http://localhost:8500/, I get
    "index of" and a listing of the files in the new folder. If I click
    on index.cfm, I get the following error:
    404
    java.io.FileNotFoundException
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:94)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:284)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    The only work around is to shuffle the web files back and
    forth as I work on different sites which is quite a pain.
    http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=webservmgmt_3.html#10239 3

    Hi Oren,
    the corresponding parameter is called metadata directory. You can look it up within BEx WAD --> Tools --> Settings --> Metadata Directory (over there just as display parameter).
    If you have to customize the directory you are to set the environment variable BEXWAD_METADATADIR in your operational system (Start - Settings - System settings - System - Advanced - environment variable). Just set the new folder according to your needs in the field value.
    Usually restarting WAD the next time the new folder is taken, perhaps you have to refresh your metadata (again: BEx WAD --> Tools --> Settings --> Metadata Directory) and restart WAD. The first time WAD starts the files have to be copied to the new directory which can take some time.
    If there are problems/questions let us know.
    Best Regards,
    Marcel

  • I am having problems changing my security question.

    I am having problems changing my security question. When I try it sends me a email to a email I don't own.  is going to gmobil.com instead of gmail.com but its correct user name and password when I log in to iTunes?

    The address the rescue email is set to isn't the same as your normal one. If you can't change the answers, contact the iTunes Store staff via the link in this article.
    (81471)

Maybe you are looking for

  • Is it a Limitation of Named Cache Storage- Fails for large volume ???

    I debugged the code which loads data from database into the cache as mentioned in the posting : Pre-loading the Cache from Database during application start-up Now what this code does is load 869 rows from database into java.util.Map using Hibernate

  • HP PSC 1200 and airport

    According to the HP website I shouldn't be able to print from my all in one (printer) PSC 1200 using Airport. Somehow I managed it once, but haven't been able to do so again. Any ideas how I might manage it again? The print utility browser knows that

  • MAX Number of charachters in a file name

    Hi, what is the maximum length of the file name if I have to write a TEXT filr in /tmp folder on the application server. Thanks, Gaurav

  • Working with fdf files in Adobe in Android

    Can I translate fdf files into pdf within Adobe please Colin

  • Multiple datasource with a sub-report with Java

    Hi All, I have a group of data from which I will create subset to separate on a group. Now, I have multiple (say 3) datasets with me for which I want to perform the following tasks: Add first dataset to the databasecontroller, after adding the datase