Only one MRP run for diffrent companies plants

Hi PP expert,
my bizness scenario  is . there 2 companies  code one company code has 2 plant and another comp has 3 plant..only one product is assembling in all plant. suppose  finish material  X is producing in all company plants
but  finish material X have component K and L, L is manufacturing in only one plant and supply to all company plant
my client want to produce material component "L" for all plants  for his monthly  requirement with MRP run.
component L is semi finish material and its is component of X
but i am not under standing how will get requirement from  same company plants and other company plants. for Monthly MRP run
Kindly suggest me how will take requirement from others companies plants for MRP run...
kindly suggest me step by step
Regards
Aqueel

Dear Friend,
Only one MRP Run i.e. the Total MRP Run is possible at different plants but all must be under same company code.
in your case ,plants are under different comp.codes , so it s quite difficult.
Here I have to check the posiibility of using the special procurement key  to tranfer the material  between plants assigned to different comapny codes.  The particular Keys are ..
40--Stock transfer (proc.from alter.plant);   70 -- Withdrawal from alternative plant   or 80----Production in alternative plant*
If it is possible , then you can use this option of Special Procurement key.
Otherwise you can use Plant to plant transfer movements like 647 to transfer beween plants against the Purchase order.
Regards,
Edited by: Girishprasad Subhash Pawar on Jun 28, 2010 12:26 PM
Edited by: Girishprasad Subhash Pawar on Jun 28, 2010 12:30 PM

Similar Messages

  • MRP run for sub contracting plant

    Hi all,
    Please let me know if this scenario is possible:-
    I have two plant A and B. A is manufacturing plant and B is sub contracting plant. For one FG I plant there is demand of 100. After MRP run planned order is created for 100 for FG. For raw material purchase requisition for 50 is created and delivering plant will be B.
    In md04 for plant A I can see pur req for 50 and for plant B in md04 I can see 50 as stock requirement.
    Now use wants that if MRP is run for plant B, it should generate planed order against stock requirement.
    Strategy 11 we are using.
    Please let me if it is possible
    Regards,
    D.Dutta

    Hi ,
    Cross plant planning is possible ( like Plant A & B) , no need to run MRP in two plants separately  . but you need to the follow the following config .
    1) Define special procurment key ( Spro> MRP> Master data --> Define spl procurement key)
          You can copy standard key 40 , ( you have to defined supply plant and recving plant)
    2) Identify the Materials which are to be cross plant planning and go to material master MRP 2 view and assign Speial procuremnt key
    3) run MRP for FG in Plant A and down level MRP for  RM/PM/SFG  will be generated in plant B.
    I hope this will help your requirement .
    Thanks
    sekhar

  • MRP RUN for the more than one line item in sales order.

    Hi ,
    In the sales order nuber of line item are , i will have to take MRP RUN for selected line item .
    So plz suggest what development will require?
    Abhay
    Edited by: abhay patil on May 30, 2008 8:52 AM

    HI,
    U can write separate prog. Which will ask sales order no. and from to line item or multiple line item of sale order. Then in loop internally pass the each line item no to MD50 prog. Which will run in background.
    I will give u sample prog. Which I had created for running MRP for all the lines items of given sales order in one go.
    *& Report  ZPRG_PP_001
    REPORT  ZPRG_PP_001.
    tables vbak.
    data: begin of it_vbap occurs 1,
            vbeln  type    vbap-vbeln,
            posnr  type    vbap-posnr,
          end   of it_vbap.
    DATA: P_MODE   TYPE    C.
          Batchinputdata of single transaction
    DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.
    selection-screen begin of block b1 with frame title text-001.
      parameters :   p_vbeln  like  vbak-vbeln obligatory.
      selection-screen skip.
      parameters :   p_fore   radiobutton group mode,
                     p_back   radiobutton group mode default 'X'.
    selection-screen end   of block b1.
    at selection-screen.
    Check Sales Order
      if not p_vbeln is initial.
        select single * from vbak
          where vbeln eq p_vbeln.
        if sy-subrc <> 0.
          message e499(sy) with 'Invalid Sales Order no.' p_vbeln.
        endif.
      endif.
    start-of-selecTION.
    Get Sales order items
      select vbeln posnr from vbap
        into table it_vbap
        where vbeln eq p_vbeln.
    Set BDC mode
      if p_back eq 'X'.
        p_mode = 'E'.
      else.
        p_mode = 'A'.
      endif.
    Process MD50 BDC
      LOOP AT IT_VBAP.
        perform bdc_dynpro      using 'SAPMM61X' '0160'.
        perform bdc_field       using 'BDC_CURSOR'  'RM61X-TRMPL'.
        perform bdc_field       using 'BDC_OKCODE'  '/00'.
        perform bdc_field       using 'RM61X-KDAUF'  IT_VBAP-VBELN.
        perform bdc_field       using 'RM61X-KDPOS'  IT_VBAP-POSNR.
        perform bdc_field       using 'RM61X-BANER'  '1'.
        perform bdc_field       using 'RM61X-LIFKZ'  '3'.
        perform bdc_field       using 'RM61X-PLMOD'  '3'.
        perform bdc_field       using 'RM61X-TRMPL'  '1'.
        perform bdc_dynpro      using 'SAPMSSY0' '0120'.
        perform bdc_field       using 'BDC_OKCODE'   '=XBAC'.
        CALL TRANSACTION 'MD50' USING BDCDATA MODE P_MODE.
        CLEAR BDCDATA.
        REFRESH BDCDATA.
      ENDLOOP.
    end-of-selection.
           Start new screen                                              *
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR BDCDATA.
      BDCDATA-PROGRAM  = PROGRAM.
      BDCDATA-DYNPRO   = DYNPRO.
      BDCDATA-DYNBEGIN = 'X'.
      APPEND BDCDATA.
    ENDFORM.
           Insert field                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
      CLEAR BDCDATA.
      BDCDATA-FNAM = FNAM.
      BDCDATA-FVAL = FVAL.
      APPEND BDCDATA.
    ENDFORM.
    Ajay P. Nikte

  • Sale Order MRP Run for All Order Line Items

    Greetings...
                     I have One Sales Order , in which i have ten different Line Items .
    Now I have to Run the MRP on basis of Created sales Order so that all Line items wi get consider insingle MRP Run on sales order base MRP Run.
    How to take MRP Run of One Sale Order for all Line Items.???
    In MD50 , we can have sales Order with Item..

    In MD50 you can give only one item at a time.
    Its a standard transaction meant to accomodate changes relevant for MRP after plant level MRP run  related to specific sales order Item.
    so either you need to do it multipal times by changing material or you need to go for MD02.
    Please explain bussiness case in detail why you want to restrict your MRP run for items in a specific sales order.
    Regards

  • MRP RUN for increased qty of SODS PR for complete qty instead of increase

    While doing MRP RUN for increased qty of SO No line item 10 to 20,System is making PR for complete qty instead of increased qty.
    Sales order  - 0001
    Line item - 10 Qty - 10
    Line item - 20 Qty - 15
    MRP run against the sales order for line item 10 & 20 PR / PO raised for qty 10 & 15 respectively.
    After that qty has increased in sales order.Again we run MRP system generates totla no of PR insted of Increased qty .
    Sales order  - 0001
    Line item - 10 Qty - 10 + 5 = 15
    Line item - 20 Qty - 15 + 5 = 20
    Plz help

    There are few questons here:
    - when you increase the amount of the sales order item, is the newly added amount confirmed with the same date / schedule line? You can check the schedule lines for that SO item.
    - have the purchase requisitions, which were generated after the first MRP run (before the modification of the SO items), been modified manually (are they firmed?) / processed? In this case MRP cannot modify (delete) them (and create new ones)...
    - did you check the MRP control settings in material master
    Remark: even if you get several PRs, you can create one PO from them.

  • Fbl5n: The printer provides me only one customer items for each page...

    Hi all,
    launching t.code FBL5N, and printing the repost list, the printer provides me only one customer items for each page...
    I'd like obtaining more customer items for each page...
    What to do?
    Thanks

    Hi Umberto..
    Thats how the standard report works..
    To meet your requirement, you would probably need to look at another standard report.
    In case you need further clarification, please feel free to write to me..
    Good Luck!
    Lucid-Mind...

  • How i can have only one Apple ID for everything my computer and tab and iphone?

    How I can have only one Apple ID for evrything, my computer Iphone

    Thats how the majority of people use iCloud. All you need to do is sign into the same account on all of your devices.

  • Only one Apply button for Dashboard Prompt in obiee

    Hi experts,
    We have a need wer we need to place prompts at specified places like one at right top then next 3 one below other. But only one Apply button.
    Please let me know how to customize OBIEE 11.1.1.5 to achieve this.
    Thanks in advance.

    Hi,
    You are using OBIEE 11g ,so constrain the second report should be on the first prompt.I mean,In the second prompt properties we have an option like "based on the other prompt";where you need to give the first prompt column name.like wise third prompt also.
    Then you will get only one apply button for 3 prompts.
    mar if helpful/correct..
    thanks,
    prassu

  • In MRP Run for FERT, i want to eliminate 3rd level HALB and their BOM compo

    Hi All,
    Can you please guide me on this issue please.
    Regarding - In MRP Run for FERT, i want to eliminate 3rd level HALB and their BOM components for exploration and planning
    My scenario is:
    Level 1: FERT1
    Level 2: HALB1.1 + ROH1.1 + VERP1.1
    Level 3: HALB1.1.1 + ROH1.1.1
    Level 4: ROH 1.1.1.1 + ROH1.1.1.2
    While performing MRP run i dont want to include the material HALB1.1.1 (Level 3 component) and their corresponding BOM component (ROH 1.1.1.1 + ROH1.1.1.2)
    My constraint:
    The reason for this is HALB1.1.1 is being manufactured through REM profile with separate PIR and MRP run.
    But it is being consumed in FERT1 through intermediate semi-finished HALB1.1.  and it needs to include for Product costing.
    Note: All materials have been marked as PD - MRP type
    Would be a great help from you.
    Thanks and Regards
    Khadeer Ahmed

    Hi,
    If you put in FI forums then you will get reply immediatly.
    Anil

  • Mrp run for multi-plant

    Hi,
         My client is having the productionn of material 'x' in two plants- 0001 & 0002.  How i have to run the MRP for material 'X' by considering the both the plants?.

    Dear,
              Extend the material for both the plant and if sale order is from plant one and u do not have capacity then distribute the material for two plant and run the mrp . planned order will generated for both plant acc. to ratio. then make the confirmation.
             now if u want to sale the material from the plant in which u received the sale order then transfer the stock from other plant also to first plant by making stock transport order . and in this way you can sale your material from first plant and moreover you can also see the profit and loss plant wise.
    hope by doing this ur problem will get resolved. reward the points if u get success in this.
    regards
    Deepak

  • MRP Run for Multiple plants

    Hi Guys:
    IN SAP R/3
    My client has requirement to merge planning of material for multiple plants and run the MRP under one head plant.
    For example:
    Plant : 1000, 1001, 1002, where plant 1000 is a head plant who had authorization to perform MRP run.
    if I run MRP Sepeartely:Each plant has below requirement for one material number (M1)
    Plant 1000 : 3 EA
    Plant 1001 : 2 EA
    Plant 1002 : 5 EA
    Instead of running MRP per plant, my client needs to run MRP for multiple Plants  that Consolidate  total requirement for all plants.
    and generate PR--->PO , In the PO, M1 should be delivered to 3 different plant locations by vendor and Po Will be issued from Head Plant 1000?
    Is there any Report in SAP , Where MRP Controller can See Requirements from Different Plants @ Central Purchasing  level after one Multi Plant MRP run, So that he can decide on how much to allocate to each plant?
    Thanks for help
    Thanks
    Sweth

    Hi,
    If u want to perform the MRP in one plant for all the plant requirement is depends on the bussiness process.
    You can try the following scenario:
       Planning in one plant nd production in other plant - Respective master data and special procurement have to maintain.For 
    further clarity please follow the below link
    http://help.sap.com/saphelp_46c/helpdata/en/f4/7d3f9344af11d182b40000e829fbfe/frameset.htm.
    We can evaluate the PR and PO by providing the authorisation object for the multiple plant to the respective users.
    Revert me back in case of clarification.
    Thanks
    P.Srinivasan

  • MRP run for some listed component

    Hi Dear,
    I want to run MRP for 10 to 20 components instead of whole plant. Pl. let me know how I can run the same.
    Thanx in advance
    Regards
    L.B.Yadav

    Hi Lal,
    One way is you can assign a new MRP controller for the materials you need to run the MRP.
    And in the user exit:  M61X000, activate for the MRP controller
    In MD01 screen you can give the MRP controller and run, it will consider only the materials assigned with the MRP controller.
    Thanks,
    JK

  • Costing Run for all Hub Plants

    I just want to understand from you regarding your Monthly Costing Run for all Plants.Actually we have Plant 5000 (Ruwais) which is our Manufacturing Plant having BOM.
    We have two other Plants 7000 ( Shanghai ) and 7100 ( Singapore ) these are our Hub Plants not Manufacturing Plants and having no BOMs. 
    When we run our Monthly Costing Run for Plant 5000 using TCode (CK40N), it’s completes smoothly without any error.
    We have to create a material cost estimate in monthly basis using TCode (KKPAN) before we execute cost estimate for both Plants 7000 & 7100.
    We see these runs at the months end as very time consuming and we are not manage on time set for such update in SAP as part of the month end procedure.

    Hello Yasir,
    In our system I see that PC01 and PC02 are the same for cross plant costing:
    1 - Future Cost Estimate - valid for fiscal year
    2 - Current Cost Estimate - no age restriction
    3 - Previous Cost estimate - no age restriction
    If your system is set this way, then for cross plant costing, it does not make a difference which one you use.
    If all plants are in one company code then the currency should be the same in all, so P rate should not be an issue.
    Take one part number: What period and FY is your current cost estimate? What are the validity dates?
    go to CK11n, input the part number; <b>hub plant</b> number and create cost estimate.
    On the Tab "QTY STRUCT."  you should see only Special procurement data, the plant number should be the mfg plant.
    Look at the Costing Structure.  Top level should be the part in hub plant.
    The first level below should be the part in the mfg plant.
    theTosts should be the same and I would expect it to be the same as the current cost estimate.  (Pay attention to the currency)
    If the first level from the mfg plant is not the same as the current cost estimate, you will need to figure out where that cost estimate is coming from.
    If you would like to send screen shots of your cost estimate screens, give me your e-mail and I will contact you with pictures of what I expect to see.
    Althea

  • MRP run for sales orders

    Dear Friends,
    I want to run MRP based on the sales order delivery schedules. My sales orders are spread for the next 2 years.
    For example for material A, I am having sales order for 40 quantity (item 10) and material B -20 quantity (item 20). My sales order delivery scedule is defined such away that each month I may required to send 4 items of material A and 2 items of material B starting from March 08.
    In this case I need not to consider all the quantity. I want to run my MRP for which I need to deliver for the next 3 months period.
    If you need any further clairification, please let me know.
    Regards,
    Surya.

    Dear Surya,
    Make sure that the scheduleline in the sales order are having 4 qty of A and 2 qty of B for each month as below
    Schedule line of A
    31.03.2008 - 4 qty
    31.04.2008 - 4 qty
    31.05.2008 - 4 qty
    Schedule line of B
    31.03.2008 - 2 qty
    31.04.2008 - 2 qty
    31.05.2008 - 2 qty
    Make sue that your planning horizon is only one month. and you are running MRP with NETPL option.
    This with consider the sales order line item schedulelisewise and give planned order only for one month.
    i hope u got it

  • MRP Run For Credit Blocked Sales Orders

    Hi
    Does any one know how to prevent the generation of planned orders for Sales orders which
    have been credit blocked. At the moment the reservation is still visible on MD04 and is therefore
    planned during the MRP run. As a result manufacturing continues for these sales orders.

    As far as credit block is concern; what it means is that delivery will not be done for this customer via VL01N.
    This means if you have blocked this customer in FD32; no delivery to be done
    It may not be linked with MRP calculation b'cos it comes into picture while doing delivery & not during planning
    Rgds

Maybe you are looking for

  • Itunes won't recognize Nano

    I tried to update my Nano (4G) and it went through the process then the installation program froze. After that my I-tunes program would not recognize my i-pod. I tried to re-install both i-tunes and i-pod software. My computer sees the nano, but not

  • How to view iphoto 9 photos after iphoto 11 upgrade?

    I just upgrade to Lion and installed iphoto 11. I was previously using iphoto 09. I'm now trying to open iphoto to view my photos and it tells me "Your photo library will not be readable by previous versions of iPhoto after the upgrade. The upgrade p

  • Add multiple records thorough lov, help of one field?

    Hi All: Actually, I have a datablock with two fields, one is id, other one is name. I select no of records in datablock is 3.My requirement is, there is should be one field on the above of this block.on this block should be lov. suppose that field na

  • Relating product compilaence with the material master in SAP R3 system

    Hai SAP Gurus, Please can you help me to mark a material in relation to the product compilance or regulatory requirements like RoH, CSA, EC, Copy exact in the SAP Standard process. please note that we are not using SAP EH&C and the client is asking t

  • MSI TV @nywhere Stopped Working

    Ok, so I got my MSI TV @nywhere about a week and a half ago, great card. Nice quality etc. Now all of a sudden it doesn't work! It came with WinDVR, and now when I load it up I get an error when the TV should pop up (this program has encountered a pr