MRP run for Project

Hello Experts,
I want you experts help with regards to the following scenario
This is a construction scenario. In this industry, during the Project estimation stage productivity Norm of the company plays a vital role
For Example
Say for excavation of 1 M3 of Soil following resources are required (this is productivity Norm)
1.     Labour – 2 Hours
2.     Excavator – 1 Hour
In order to capture this, I have created a Material BOM, with Header Material as “EXCAV” (Material Type – FERT & UOM – M3) and Components as “LABOUR” & “EXCAVATOR” (Material Type – DIEN & UOM – Hours).
           EXCAV (Material Type – FERT & UOM – M3)
LABOUR     EXCAVATOR (Material Type – DIEN & UOM – Hours)
I have created a project with an activity called “EXCAVATION”, for which I have assigned the material “EXCAV”.
I want to generate the requirement for the components “LABOUR” & “EXCAVATOR”; hence I’m trying to run Project MRP (MD51). But no requirements are getting generated for any material.
Please help me out.
Thanks in advance & any suggestions will be rewarded.
Regards
Tanya

Hi Taanya,
When ever components are allocated to the activity in a Network, system creates only reservation for the components. In your case also it should have created reservation.
If so run MD02 for "EXCAV" - (Assumption you have populated the material master with all MRP view and related fields), system should now generate Procurement proposals.
Another check what I would suggest is to check in the Component overview "Res./Purc. Req." field hope this is not populated with value "1". If it was "1" change it to "3" so that reservations are created immediately once the Network is saved.
Hope this helps... you. Reward your points if so,
Regards,
Prasobh

Similar Messages

  • No reservations relevant to MRP exist for project

    Hi all,
    While doing MRP for WBS through MD51 i have got an error " No reservations relevant to MRP exist for project " . I am not getting where the problem is occurs.
    Regards,
    Swapnil Vaidya

    Dear .
    1.Please check wether in your project builder(CJ20N) Project Status is REL  and  Procurement Type is  :Reservation for WBS element . then it will not create this masg.
    2.Check whether MRP run date is after the project start date as well as the WBS element is also with in the time frame
    3.Check the material master parameters(MRP1-MRP4 view ) for Project material which are to be planned by that Project WBS .
    Check and revert
    Regards
    JH
    Edited by: Jiaul Haque on May 1, 2010 2:27 PM

  • 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 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

  • 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 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.

  • MRP run for header material with bom usage-3

    Dear All,
    We have header material with bom usage-3.We maintain the stock at child components only ,not at header
    I have created the planned independent requirement for header material.I have created a sales order but sales order is not shown in md04.
    What can be the further setting  I am missing for mrp run of above scenario.
    with regards,
    pradeep

    Dear ,
    Couple of checks points for you :
    1.Check the material master Sales Org Veie-Item Categoery .As you have mentioned Item Categoery -TAQ which is not relevent for requirement planning throgh schedule line category -CT ( CT means there will not be any inventory or good movement and requirement will not be passed for MRP ) .Only CP -line item categoery does requirement passing through MRP and it will show u in MD04. So the summery is if you want to generate an MTO order for the same FG material , you should matian the Sales Line item categoery as MTO in sales Org View and it will pop up in VA01 whiel logging Sales Order .
    Generally , TAQ item categoery are used in Project Billing or Delivery .ok  and they will not be having any availabilit check so it KP ( no check ) .
    But for MTO order , you should have availablty chek 02/01 in MRP3 view and also MTO Sales Item categoery .
    Based on the above information logg an sales order , release credit chek in VKM3, SAVE and check in MD04.
    Create PIR in MD61 and Run MRP on the both cases .I have tested its working .but noit with TAQ item categoery ok
    2.Why do you need to create Sales Order for dependent Item-Y because it will be in X-BOM item  ? Make sure that Y- should have Sales Item categoery in material master -MM02-Sales Org View as NORM item .If you really want to create sale sorder for this item , it should TAN or NORM .
    3.Other PIR detail is fine .
    Try and revert back
    Regards
    JH

  • MRP run for requirement plan

    Hi Experts,
    Please tell me following.
    I have created one requirement plan in MD61. I want to run MRP for that. As I know we can run MRP for Material & product group in MD02. So please tell me how to run MRP for requirement plan.
    Regards,

    Hi Raja,
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/62/32b8371a2c9912e10000009b38f889/frameset.htm
    You can run MRP:
    - at plant level (total planning)
    - single material, multilevel
    - singel material, single level
    - run MRP for SO (MTO envirinment)
    - run MRP for project
    You can use user exit if you want to give further selection criteria for toatl planning run:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/b4/d2e0d6a31411d352b0004ac160649/frameset.htm
    But as for your question:
    Based on your setting (config + master data) MRP will consider IndReqs inputted in MD61. There's no further selection criteria to make MRP understand you want to run it foer IndReqs.
    Just use MD01, MD02, MD03 and if your settings are proper system will consider them.
    Regards,
    Csaba

  • Parallel MRP run for Internally and Externally procured materials

    Hello all,
    we want to run MRP with different settings for externally procured materials (create purchase Requisition) and internally produced materials. The choices provided my MRP run is either create planed order or Requisitions when run background. Is the activation of user exit M61X0001 the solution to this issue?  I can recall that we had done this is some project in the past, not 100% sure to be sincere. Can anyone help on this?
    Thank you for any help.
    Edited by: Ioannis Salichos on Aug 11, 2010 11:51 PM
    Edited by: Ioannis Salichos on Aug 11, 2010 11:57 PM

    you are right, this is the user exit that can be used to control this.
    see an excellent "how to use"  from R Brahmankar
    in this thread:
    Re: mass MRP run

  • 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

  • Schedule lines are not coming after MRP run for HALB material

    Dear All,
    I am not getting schedule line after mrp run, inspite of all required setting only purchase requisitions are coming.
    Material type is HALB and involve a subcontracting process (30). For raw material I am getting the schedule line but in the case of HALB, it is not coming.
    Pls let me know if I am missing something and guide me further on this.
    Thanks & Regards
    Kundan Kumar

    Dear All,
    I am closing this thread. As the vendor mentioned in scheduling agreement is not a subcontracting vendor. Its a individual vendor.
    Thanks for all the reply.
    Thanks & Regards'
    Kundan Kumar

  • Delivery Schedules not created after MRP Run for MRP Type PD

    HI All,
    I have created Schduling Agreement, maintained Source List with MRP Relevant - 2 option and maintained Vendor as Fix, maintained info record.
    I have created a material with MRP type as PD and lot size as EX, and strategy group as MTS. Now when i enter requirement through MD61 and do MRP Run through MD02, system is generating PR instead of Del Schdule line inspite of schduling agreement.
    But If i change MRP type to VB and maintain reorder point and maintain min lot size, then system generates Del Schdule lines for the same material.
    What could be the reason. I want delivery schedules based on MRP Type PD.
    Where I am wrong in MRP Views or in any cutomization. It seems that purchasing part is fine since it creats scudles line so no problem in SA or in Source List.
    Please help
    Regards,
    Vikas

    Hi Vikas,
    Go through this link you will able to customize correctly
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/3b/66596eda7b11d1b6330000e8a738dc/frameset.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/f4/7d2da044af11d182b40000e829fbfe/frameset.htm
    Cheers
    Kris

  • Reg: MRP Run for all Materials

    Hi Abapers,
    I have an issue where in using MD01( Material Run), i need to raise one PR for all materials below the re-order stock. Currently system creates one PR for each material below the re-order stock.
    Please throw any ideas regarding this.
    Thank you

    Hi ,
    to procure assembly take 10 days.
    And delivery date is after 2 days
    After MRP run , system will take first backward schedulling from delivery date will take 2 days and going forward scheduling and take 8 days .
    So that from current date system will take 10 days so assembly will procure easily .
    Suppose today date 19/05/2011. And delivery date is after 2 days .( on date 21/05/2011 )
    if MRP is run on 19/05/2011. System will create delivery date 29/05/2011.So assembly will be easily procure within span of 10 days from 19/05/2011 to 29/05/2011. Delivery of FG is easily available on 29/05/2011.
    Regards
    Vinod

  • Clubbing of PR through MRP run for same group items

    Presently PR's are generated under MRP for single line item. we required consolidation of the PR material group wise. is it possible? if yes, how? kindly suggest.

    Dear praneetsadekar ,
    If my understanding is correct then during MRP run it 's not possible to create single Purchase Req.for a list of materials that fall
    under same material group.
    check and revert back.
    Regards
    Mangalraj.S

  • Not able to find the source requirement of MRP RUN-(for planned order)

    Dear All,
    Actullay In MRP run system is generating 10000 qty in planned order but in MD61 there is only 3000 qty and no sales order requirement also exists for the same. And when i rerun the MRP by choosing option 3 in planning mode, then also it is generating the planned order for 10000 qty only but Iam not able find out the base requirement for that. Kindly suggest me the solutions.
    Regards,
    Krishna

    Hi
    In MD04 at bottom, you can see a button for pegged requirement, click there you will come to know the list of requirement. It is not only because of Planned independent requirement you maintain in Md61, it could be due to lot size in Material master, or if you have fixed vendor in sourcelist then it could be because of Minimum order quantity with the vendor, or it could be safty stock or reorder point maintained in Material master
    Regards
    Antony

Maybe you are looking for

  • Failed to load weblogic-ejb-jar.xml

    Hi, I try to deploy an EJB on Weblogic 9.1, but the weblogic-ejb-jar seems to cause this exception : ====================================================== [wlappc] <30 oct. 2006 12 h 13 CET> <Error> <J2EE> <BEA-160187> <weblogic.appc failed to compi

  • Please Help - Excel Cold Turkey

    Hi out there, I'm trying desperately to wean myself off Excel and onto Numbers. I have an excel spreadsheet that contains a table of all our regular monthly payments in date order with the date the payment goes out as a number then a description in t

  • Avoiding system.exit(0)

    Hi I am using an external .jar file in my java program for parsing a file. My problem is that its main method has System.exit statement in the end i.e after parsing it exits the application. So when i use it my application also gets terminated. I hav

  • Ipod Touch Acts like a Camera?

    Anyone else had this experience? Today my Touch wigged out on me and started acting like a camera. Everytime I touched the power/on/off button you could hear a shutter sound like a camera takng a picture. I plugged it into my computer and it found ne

  • Sum material require by customer

    Hi all,     is any way to sum material require by customer in mrp.  i want to see the  sum quantity by customer in MD04. THANKS! JAMES