Change MRP Controller Description

Hi,
We have maintained Same MRP Controller with Description for all 100 Plants.
Now we want to change Description of these MRP Controller for all 100 Plants.
Is there any way to change in One go or we need to manually change one by one?
Thanks & Regards
ND

Hi Nitin Desai,     
Well there is a way:
GO TO OMD0 t-code select all the plants and then on the top of the screen you can see SELECTION click it select BY CONTENTS then select MRP CONTROLLER NAME OR MRP CONTROLLER.
Then a pop window will appear give the data then bottom press CHOOSE then you can do it easily OK.
I hope it helps you.
Regards,
Madhu.G

Similar Messages

  • Change MRP Controller - MLFH

    Hello Experts,
    I want to change the mrp controller for recieving mail through output type MLFH  . .. current mrp controller is no longer with company so can anyone guide me the step by step process
    Will award full points
    Thank You
    Justin

    Hi
    for changing the MRP in MLHF go to T-Code NACE then select Application MEthen presscondition record on top. a pop up opens in that select your out out type double click on MLHF. it will ask for missing parts then Give X and execute it will open up a new screen then you can change your existing MRP controller to your new MRP controller.
    by doing this you will be able to send mails for missing parts to your new MRP controller.
    hope i made it clear
    Edited by: vikrama sharma on Dec 21, 2007 1:02 AM

  • Changing MRP controller for planned order

    Hello experts,
    Is there any way the planner could change the MRP controller of a planned order within MD12 ? We are using ver 4.7 and this field is not enabled. Currently the planners are creating prod orders much in advance and are looking to move to a process where they firm planned order. We are using project stock planning structure so more that one planner may create orders for the same material. So when one planner review the material planning for one project he would firm the planned order and assign it to him for leater conversion.
    Note: I the config I didn't saw any field selection control for planned orders.
    Thank you in advance for sharing your wisdom.
    Francois Paquet BPA
    aeronautive industrie

    Francois,
    Very interesting question. However I never had to change those fields in either planned or prodcution orders.
    Both orders master data fileds are disabled.
    However since your are working with project orders ( or netwrok orders ) system would be giving you specific planner order hard tied to the project order ( similar to Made to order scenario).
    Planner could use MD51 ( project planning ) & MD4C ( option for Netwrok or WBS element ) for monitoring progress of his /her order.
    This way planners do not have to go by MRP controller data.
    Hope this provides some new thoughts.
    Thanks,
    Ram

  • Planner order - change MRP controller

    Hi PP Guru
    Can I change value in field "MRP controller" when i manual create planned order, MD11 ?
    MRP controller is copied from the material master when the material number is checked, but can i change it to another ?
    In Prod.Order field "MRP Controller" is editable
    In Purch.Req. field "MRP Controller" is editable
    In Planned Order field "MRP Controller" is NOT editable.
    Thanks.

    Hi,
    It depends upon your authorisation profile. Normally MRP run, Planned order creation authorisation is given for the MRP controller only. Because MRP controller is the person responsible to plan that particular material. So with out his knowledge you cannot create the planned order.
    Regards,
    V. Suresh

  • MRP Controller changes in Planned order

    Hi Gurus,
    If anyway possible to change MRP controller in Planned order. I tried to change in MD12 but it's shows only display mode. Any answer?
    Thanks,
    B.Deethya

    Dear,
    I do not think so you can change the MRP controller any where other than material master and source list .Please check this threads which has approched similar kind of alternative solution :
    /thread/1611534 [original link is broken]
    Revert back for more information.
    Regards,
    Alok Tiwari

  • Mrp controller with description in two languages

    Hi gurus
    how can we create MRP controller  with description of Controller in two languages out of which one would be englidh .
    awaiting reply

    Hi,
    Please try following.
    For English there is no issue.
    For another language which you want, log in that language (FR/DE etc)and in customisation give which discription you want.If it is available to you or ask user what description he want and paste it.
    This is technically not correct but most of the times system not convert properly, at that time we can follow this process.
    This is also usefull when some times user wants same description (which is in EN)in the other language.

  • MC.9 report is showing -ve value when MRP controller selected

    Hi Expert,
    I'm confuse about the -ve value in MC.9. If i run by using Plant as the selection parameter for month 02.2010, then sorted by valuatted stock value(ascending), it will not show me the -ve value for all materials. But if i run the report by using Plant and MRP controller as the selection parameters,then sorted by valuated stock value(ascending), it shows me the -ve value. why?
    Please explain.
    Thanks

    hi jurgen,
    i still not clear. I try to run the report for material A and mrp controller  001. I got the -ve value. But when i run the material without mrp controller, it shows 0. no -ve value. i check in MM03,changes history for the material. MRP controller has been changed few times but the latest is 160. What am i confusing is, what is the relation between MRP controller with the report? What is the function of the report actually? Isn't it suppose to give the same data either i put the MRP controller or not when running the report?
    Thanks

  • How can i display the MRP controller in transfer order print?

    Dear all:
       When i print the transfer order(Tcode: LT31) ,i want to display the MRP controller in the output form.
    How can i get that ?
    I found the user exit MWMD0001 and add the code in the include like this:
       select  single dispo from marc
         where matnr = ltap-matnr
               and werks = ltap-werks.
         zdispo = marc-dispo.
    But caz the "zdispo"  could not been brought to the "print form " of the report RLVSDR40 which control the print LT31.So ,i failed.
    Anyone advice?

    The problem is as zdispo is declared in your user exit it doesn't become available. Had it been declared variable in the include of the program for LT31 you would be able to use it directly in the script.
    Try doing this instead in your layout set.
    /: PERFORM MRP_CONTROLLER IN PROGRAM ZABCXYZ
    /: USING &LTAP-MATNR&
    /: USING &LTAP-WERKS&
    /: CHANGING &ZDISPO&
    /: ENDPERFORM
    in your program ZABCXYZ.
    FORM MRP_CONTROLLER tables in_par structure itcsy
                               out_par structure itcsy.
    tables: marc.
    data: matnr like marc-matnr.
    data: werks like marc-werks.
    READ TABLE IN_PAR WITH KEY ‘LTAP-MATNR’.
    CHECK SY-SUBRC = 0.
    MATNR = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY ‘LTAP-WERKS’.
    CHECK SY-SUBRC = 0.
    WERKS = IN_PAR-VALUE.
    select single dispo from marc
    where matnr = ltap-matnr
    and werks = ltap-werks.
    IF SY-SUBRC = 0.
    READ TABLE OUT_PAR WITH KEY ‘ZDISPO’.
    CHECK SY-SUBRC = 0.
    OUT_PAR-VALUE = MARC-DISPO.
    ELSE.
    CLEAR OUT_PAR-VALUE.
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    This should work.

  • Mass update for production and planned order MRP controller

    Hi Gurus,
    It's anyway possible to mass update MRP controller for Production orders and  Planned orders. If any please provide me step by step process.
    Thanks,
    B.Deethya.

    I feel You have changed the MRP controller in Material master and want to incorporate same in production order & plan order.
    For Planned order Run MRP with delete and recreate mode, system will create a new plan order with MRP controller in Material master
    For production order, Mass change is not possible, create a simple BDC or LSMW, And change the MRP controller

  • To update mrp controller through transaction variant

    hi experts,
                  how to create transaction variant for mm02 to update mrp controller,can anyone guide me for the same.
    thanks in advance.

    if you are using MRP profiles and the field is included in your MRP profile, then you should change it in MMD2 and a batch job will subsequently update all your materials.
    If you are not using MRP profiles, then usual mass maintenance transaction for material master is MM17.
    Please search the forum before posting basic and redundant questions.

  • How do i display Materials by an MRP Controller?

    I tried using MD07,MD05,MD06 and i think MD16 all this displays the materials by the specific MRP controller but you cannot export from these displays.
    MMD7 is not configured to work in our system because there are no values set up for the MRP profile and this is a compulsory field that must be entered for this report to run.
    Is there any way to run a report of Materials by MRP controller?Also i need report that'll give me access to export the displayed report in an excel format.
    Please help...thanks

    When they changed Oracle versions, did you have to create a new data source in ColdFusion Administrator?  If so, there is a setting under "Advanced Settings" to enable CLOB support, and that probably didn't get turned on.
    -Carl V.

  • MRP controller to APO product planner

    Hi,
    I want to use product planner as MRP controller to run PP heuristics.
    What I have done is as follows:
    1. I create planner in APO: Advanced Planning & Optimization->Supply Chain Planning->Specify Person Responsible(Planner)
    2. In ECC, I use exit CIFMAT01 to change CT_CIF_MATLOC-PLANNR_PPS according to IT_MARC-DISPO.
    But after CFM2, the product planner in /SAPAPO/MAT1 is still null.
    Is there anything wrong?
    Best Regards
    Rui

    Rui, This is what we did to accomplish this:
    In the R/3 User exit include ZXCIFUSERU08,
      Loop at IT_MATLOC where METHOD = ‘N’ (For each new product location),
      Read IT_MARC with key Material, Plant.
      If not IT_MARC-DISPO IS INITIAL.
      Set IT_MATLOC-PLANNR_PPS = IT_MARC-DISPO
    (Copy MRP Controller on to APO Production Planner)
      Update the change table (IT_MATLOCX)
      Endloop.

  • Report for MRP controller and relevant purchasing document

    HI
    My requirement :We have MRP controller for different diciplines(mech, electrical, Instrumentation.......ect).
    I want to search for a report Where it display me the Purchasing document(PO) number by respective decipline.
    I tried all the report in MRP controller such as MC.E, MC.D, COOIS.........ect
    Thanks in advance
    Mujeeb

    Hi Mangalraj
    Thanks for your answer, but my question is not yet answered.
    As you told i did follow accordingly.
    When i enter the T.code: ME5A ( i can not find the scope of list ALV but did find the entried as below)
    A     3-line + n special
    B     2-line + n special
    B1     2-line + 2 MRP list
    B2     2-line + 2 stock/rq.
    B3     2-line + 2 purch.dt.
    C     1-line
    C1     1-line + stock/rqts.
    D     
    F     Collective release
    G     3-line loop
    H     2-line loop
    I     1-line loop
    If i select "C" from the list i'm getting 1 line display but as you told i did press the CTRL+F8 but unable to get the cost) it does not work at all like dat.
    I'm using the system version 4.6C. Can you please suggest something on the report.
    Thanks & regards,
    Mujeeb

  • Inventory report for the selection of requisitioner and MRP controller

    Hello Experts,
                           Can someone please help me with a standard  Inventory report in which we can give input thr requistioner and MRP controller
    regards,
    YK

    Hi,
    You will get the requisition no. from EKKO (provided PO has been created otherwise you won't get any record). Find out PO & item no. for the requisition item. Then you can check EKBE table whether GR has been posted or not. If GR has not been posted then there won't be entry in EKBE for that PO & item.
    Regards,
    Rakesh

  • Change the field description in the query report

    Dear All,
    I have created a querry using SQVI,It is working fine Now i want to change the field description in the querry report,Please suggest on this.

    Hi,
    follow below steps
    SQVI -> Enter Report name -> Change -> click on layout mode - > Expand tables - > double click on filed names - >
    coming right side you are able see list of output fields .
    Just double click on the field then going to the editable mode Description.
    Thanks
    Balakrishna

Maybe you are looking for

  • Effect of SAP R/3 upgrade on Delta Queue

    Hi Gurus, We have our SAP upgrade scheduled to go-live in some time. My problem is that we have 2 loads based on Direct Delta queue concept. As per my understanding, the approach that we need to follow is that we should get all the users locked and t

  • Media player 10 conflict with sb audigy 2

    i cannot play any dvds or cds without a choppy sound, Im pretty sure it is because of the wmp 0,I once reset my computer to manufacture settings with wmp9 and it worked, then my auto update added the 0 and my sound went to crap. If I rip the cd to co

  • How to find out if J2EE Engine is PROD or TEST or DEV System

    Hi, I want to get the system state / system type (even if si PROD or TEST or DEVELOP system) of the J2EE-Engine at runtime, because to use different properties. How can I find this information and how can I get this info in Java? Thanks for help. Sve

  • Applications don't install from OSD after 2012 SP1 upgrade

    After upgrading SCCM 2012 RTM to SP1, then to CU3 (to fix a PXE issue), my OSD task sequences no longer installs any applications after the OS.  Win7 installs with all drivers, the PC is added to the domain and the correct ConfgMgr client version is

  • Updates not downloading properly after installing Mavericks

    Hi there, I downloaded and installed Mavericks without any problems on Monday, however all subsequent updates (for pages, itunes, keynotes, HP printer etc) are not downloading properly. The updates will start downloading from the App store but after