Rounding value at MRP area level

Hi All,
  We are using MRP areas at storage location level. Also we have maintained rounding value , one at plant level in mRP1 view and one at MRP area level for that particular storage location.
Now when we run MRP for that storage location specific MRP area one would assume that it picks up the rounding value maintained in that MRp area,but it is picking up the value maintained at plant level.
Am I missing some setting or is it std. system behaviour..pl. advise.
Tks..kiran

Hi Inguva
Can you give more detail of your solution?  I have the same problem, MRP is creating requisitions using the lot size parameters from the MRP area but when converting to an STO using ME21N the lot size parameters from the plant are applied.
This usually increases the PO quantity beyond the PR quantity and I get an error message "06076 - Materials of requisition & item & alr. ordered in full"
It's driving me crazy so any help you can offer would be greatly appreciated.
Thanks
Robyn

Similar Messages

  • Mass change of Reorder point at MRP area level

    Hi,
    I have another constraint.
    MM17 will mass change the reorder point at plant level.
    Is there any process to do mass change of reorder point for a particular MRP area level.
    Please suggest.
    Thanks in advance.

    Hi,
    When I am doing mass change of reorder point through MM17 tcode selecting MARC table,it will chnage at plant level and getting reflected in material master once I save changes.
    But I need it at storage location level.I tried to do this through MM17 tcode selecting MARD table,which will ask for storage location data(i.e storage location level).But after I save the changes,changes are not getting reflected in Display material-MRP1 view.
    Can anyone pls suggest why this is happening.
    Thanks in advance.

  • Upload Forecasting parameters on MRP area level

    Hi there,
    Is there a way I can automate via Bapi or Idoc, the upload of the forecasting parameters on MRP area level.
    The MRP area data is uploaded via IDOC /ISDFPS/MDMA but there is nothing foreseen for the forecast parameters.
    Parameters that should be uploaded are DPOP-KZINI and DPOP-PRMOD.
    Anyone an idea?

    Dear Essam,
    Please try the following procedure.
    1. Create Plan in flexible planning --> MC93 (In this step you create Sales plan in flexible planning )
    2.Sales plan verification transfer to active version--> MC8V (In this step you verify and transfer to active version)
    3.Transfer sales plan to production plan -->MC8Q  (In this step you transfer to sales plan to production plan)
    4.Create Inactive Demand in Demand Management -->MD61 (In this step you create Independent Requirement which can be
    simulative requirements. These requirements are set after analyzing sales forecast and production requirements together)
    I hope it may help you out..
    Feel free to ask.
    Thanks,
    Mohit

  • Sales Plan At MRP area level

    Dear All,
    is it possible to maintain sales plan on MRP level? if yes How.
    or if I will enter sales plan on Plant level can i tranfer to demand management on MRP area level if yes how?
    Regards,
    Ahmed sobhi

    Hi,
    Please elaborate  your query.
    You must have gone to SE37 transaction to check this function module and you must have checked the import parameters on the the import tab.
    When we call this fiunction module in Z program, we need to ensure that data is supplied  so that import parameters are taken  and data is updated in MDMA table.
    Regards
    Datta

  • Capture livecache values in planning area level.

    Hi Experts,
                     We have got a typical requirement, where we need to capture livecache values for safetystock(SAFTY) KEYFIGURE maintained for a particular product, location and planning area.
    we are using function module  BAPI_PBSRVAPS_GETDETAIL2 to retrieve the required results. Every thing is working fine but to retrieve the required value , we have to pass mandatory parameters (planning book ,data view and Selection ID as mentioned below) into the BAPI.
    Issue:-  This will work for interactive planning  for a particular planning book, data view and selection ID but not for "Mass processing".  We have searched and tested different BAPIs but could not get the required one.
    So, would like to know if there is any class method or bapi or normal functional module where we can pass planning area, product and location to capture livecache values for safetystock(SAFTY) KEYFIGURE maintained based on Macro.

    Krishna,
    I think it doesnt make a difference, The Keyfigure values are not Planning book or Dataview specific, they are only planning area specific. So if there is a value in one Planning book/dataview the same value will be seen in any planning book or dataview within the same planning area. Also, it is not mandatory to use the selection id. Instead you can use the it_selection internal table under the tables parameter of the BAPI.
    Hope this helps.
    Thanks & Regards
    Mani Suresh

  • I want to update bstrf-(rounding value )in MRP 1 and  eisbe (safety stock) value in mrp2

    i am a beginner and i want to update these fields in mm02 transaction and i am trying to use
    md_mrp_level_change_data , function module can some one please help me with the code or procedure

    Yes, it should update the fields. You need to pass values to parameters " PLANTDATA" and " "PLANTDATAX".Have a look at following sample code:
    data mat type mara-matnr VALUE '000000009900000000'.
    data:header TYPE BAPIMATHEAD,fore TYPE BAPI_MPOP_GA,
           forecast TYPE BAPI_MPOP,forecastx TYPE BAPI_MPOPX,return TYPE TABLE OF BAPIRET2 WITH HEADER LINE,msg TYPE TABLE OF BAPI_MATRETURN2,
           plant type BAPI_MARC,plnt type BAPI_MARC_GA,plantx type BAPI_MARCX.
    CALL FUNCTION 'BAPI_MATERIAL_GETALL'
       EXPORTING
         material                         = mat
    *   COMPANYCODE                      =
    *   VALUATIONAREA                    =
    *   VALUATIONTYPE                    =
        PLANT                            = 'XYZ'
    *   STORAGELOCATION                  =
    *   SALESORGANISATION                =
    *   DISTRIBUTIONCHANNEL              =
    *   WAREHOUSENUMBER                  =
    *   STORAGETYPE                      =
    *   LIFOVALUATIONLEVEL               =
    *   MATERIAL_EVG                     =
    *   KZRFB_ALL                        =
      IMPORTING
    *   CLIENTDATA                       =
        PLANTDATA                        = plnt
    *   FORECASTPARAMETERS               = fore
    *   PLANNINGDATA                     = plant
    *   STORAGELOCATIONDATA              =
    *   VALUATIONDATA                    =
    *   WAREHOUSENUMBERDATA              =
    *   SALESDATA                        =
    *   STORAGETYPEDATA                  =
    *   PRODUCTIONRESOURCETOOLDATA       =
    *   LIFOVALUATIONDATA                =
      TABLES
    *   MATERIALDESCRIPTION              =
    *   UNITSOFMEASURE                   =
    *   INTERNATIONARTICLENUMBERS        =
    *   MATERIALTEXT                     =
    *   TAXCLASSIFICATIONS               =
    *   EXTENSIONOUT                     =
        RETURN                           = return
    MOVE-CORRESPONDING plnt to plant.
    header-material = mat.
    plant-SAFETY_STK = 2.
    plantx-plant = plant-plant.
    plantx-SAFETY_STK = 'X'.
    header-mrp_VIEW = 'X'.
    CLEAR:return[],return.
    CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
       EXPORTING
         headdata                   = header
    *   CLIENTDATA                 =
    *   CLIENTDATAX                =
        PLANTDATA                  = plant
        PLANTDATAX                 = plantx
    *   FORECASTPARAMETERS         = forecast
    *   FORECASTPARAMETERSX        = forecastx
    *   PLANNINGDATA               =
    *   PLANNINGDATAX              =
    *   STORAGELOCATIONDATA        =
    *   STORAGELOCATIONDATAX       =
    *   VALUATIONDATA              =
    *   VALUATIONDATAX             =
    *   WAREHOUSENUMBERDATA        =
    *   WAREHOUSENUMBERDATAX       =
    *   SALESDATA                  =
    *   SALESDATAX                 =
    *   STORAGETYPEDATA            =
    *   STORAGETYPEDATAX           =
    *   FLAG_ONLINE                = ' '
    *   FLAG_CAD_CALL              = ' '
    *   NO_DEQUEUE                 = ' '
    *   NO_ROLLBACK_WORK           = ' '
      IMPORTING
        RETURN                     = return
      TABLES
    *   MATERIALDESCRIPTION        =
    *   UNITSOFMEASURE             =
    *   UNITSOFMEASUREX            =
    *   INTERNATIONALARTNOS        =
    *   MATERIALLONGTEXT           =
    *   TAXCLASSIFICATIONS         =
        RETURNMESSAGES             = msg
    *   PRTDATA                    =
    *   PRTDATAX                   =
    *   EXTENSIONIN                =
    *   EXTENSIONINX               =
    Also check following link
    http://scn.sap.com/thread/3366978 
    Regards

  • Can PIR created at wbs element and MRP area of storage location level

    Hi,
    I tried to create an planned independent requirement at MRP area and WBS element level, but failed. The MRP area is not plant level, but storage location level.
    *When trying to create account assignment category Q for it, then there is an error message saying:*
    **only stock requirements are allowed when planning at MRP area level.**
    Does it mean it is not possible to create planned independent requirement for this case?
    Thanks!

    Select the "Issue storage location" as '2' here:
    spro -> production -> material requirement planning -> mrp groups -> overall maintenance of mrp groups -> overview -> mrp control parameters at material level -> (field) Issue storage location selection
    & make sure:
    1. In the BOM  issue storage location is blank for the components
    2. For the FG products , in mrp area prod.storage loc is maintained
    3. Components are extended to the mrp area.
    Pl. revert with the results

  • Planning a materail at plant level and the MRP Area

    Hi Gurus,
    Is it possible to plan the same material at the plant level and  at the MRP area level ( Storage location MRP)?. If so please provide the steps how this needs to be set-up. what will the implications on the MRP.
    Thanks!
    Nagesh.

    Hi,
    Inventory can be valuated at two levels either at company code level or at plant level. If you select valuation at company code level, all materials across all the plants will have same material price since valuation is at only company code level.
    Say for example Company code 1000 is buying a material which unit price is Rs. 10 from a vendor who supplies to two different plant A & B of company code 1000.  Assume Plant A is situated near vendor premises itself (so freight cost is Re 1 extra)  whereas plant B is situated at far away from vendor place (so freight cost rs 2 extra) and both cases freight cost is borne by the company and not by vendor.
    Assuming you have selected valuation at plant level, now in plant A same material will be valauted at Rs. 11 (10 +1) whereas at plant B it is valuated at Rs. 12 (10+2).
    Whereas if you have selected valuation at company code level, price will not be valuated at plant level rather at company code level which will get updated at moving average price in this case.
    So it is always best practice to select valuation at plant level rather than at company code level.
    Reg
    Karthikeyan G

  • Rounding value

    Hi,
    For a material there are two rounding values (no rounding profile is maintained ) One at plant level and one at a
    MRP area level .
    While MRP run system is taking into account MRP area kevel rounding value ,and create a PR as  MRP is run at MRP area level
    but at the time of converting PR to PO system is considering rouding value which is maintained at plant level.(thru MD04)
    e.g
    rounding val at plant level -8
    MRP area level rounding val -13
    requirement -108 -triggered through mrp
    PR generated of qty-117 -(multple of 13)
    But while generation of PR to PO system shows requirement of qty 120 in PO
    Where we can say that this is rounded in multiple of 8 i.e rounding val at plant level
    Now my question is that is there any setiing in cstomization or is there any rule as to when the roudning val oa plant level will supertsede at MRP level ?
    Regards
    nitin

    Dear,
    You can do this with  order optimising  customising in MM go to SPROMaterials Management-Purchasing-Order Optimizing-Control for Quantity Optimizing.
    Regards,
    R.brahmankar

  • Sap pp -MRP-area

    Hello SAP-Guruu2019s
    Pls tell me the Procedure/steps/Details to maintain MRP-area for a Vendor & also for a Sub-Contractor.
    Any comments welcome   & Thanks in advanc

    Hi,
    Pls. find the following details regarding MRP Area :
    MRP Area
    Definition
    The MRP area represents an organizational unit for which material requirements planning is carried out independently.
    Basically, there are three types of MRP area:
    Plant MRP Area
    The plant MRP area initially contains the plant together with all its storage locations and stock with subcontractors.
    When you have defined MRP areas for storage locations and for subcontractors and you have assigned the materials, the plant MRP area is reduced by exactly this number of subcontractors and storage locations. This is because they are now to be planned separately.
    MRP Areas for Storage Locations
    You can define an MRP area that consists of a particular storage location, by creating an MRP area and assigning the storage location to it. Material requirements for this storage location are then planned separately from the rest of the plant.
    You can also group several storage locations into one MRP area, by creating an MRP area and assigning the storage locations to it. These storage locations are then planned together.
    A storage location of a plant may be assigned to only one MRP area.
    MRP Areas for Subcontractors
    You can also define an MRP area for each subcontractor.
    A subcontractor may be assigned to only one MRP area. An MRP area of the subcontractor type may also only contain one subcontractor.
    Use
    You can carry out MRP specifically for the determined MRP areas. This enables you to carry out differentiated material requirements planning. The requester can be, for example, the production on a particular assembly line or a subcontract order.
    The MRP area allows you to have specific control over the staging and procurement of important parts produced in-house and purchased parts for each shop floor area. You can, however, also plan the provision of components for the individual subcontractors.
    MRP areas of the storage location or subcontractor type are only suitable for:
    components that are planned and produced for stock
    finished products that are planned and produced for stock. By assigning a storage location in a sales order or by entering an MRP area when creating the planned independent requirements, you can define whether a material is planned in the plant MRP area or in the MRP area of the storage location.
    Finished products and important assemblies intended for make-to-order or engineer-to-order production are always planned in the plant MRP area.
    The planning run takes into account the planning with MRP areas as follows:
    If you do not enter a separate scope of planning, the system plans the whole plant, that is, all MRP areas in the plant, during the total planning run. If you want to carry out a total planning run for a particular MRP area only, you must specify the required MRP area in the scope of planning.
    During single-item, multi-level planning, the system plans the selected material in the MRP area entered. In addition, the system takes into account planning file entries from other MRP areas, for example, if the material is to be procured using stock transfer.
    During single-item, single-level planning, the system plans the selected material in the MRP area entered only.
    Structure
    You define the MRP areas in Customizing for MRP. You can thereby assign the following to an MRP area:
    one or more storage locations (example: you want to carry out planning for a particular assembly line and therefore assign a production storage location to the MRP area)
    a subcontractor.
    You assign the various MRP areas to the materials in the material master. For this, you create an MRP area segment for a material for every MRP area, in which it is used. In this MRP area segment, you can define MRP parameters such as, for example, the lot size or MRP type. This allows you to plan the material differently in the MRP area from how you plan it in the plant MRP area.
    MRP with MRP areas for the material is not activated until the material has been assigned to an MRP area. If you have not assigned a material to an MRP area, that is, you have not created an MRP area segment in the material master, the material will continue to be planned in the plant MRP area only. If you have assigned an MRP area to it, the system can plan it in the plant MRP area and in the assigned MRP area.
    Integration
    You can carry out material requirements planning for MRP areas using all MRP procedures and all lot-sizing procedures.
    You can also carry out an independent material forecast for MRP areas using your own parameters.
    The material consumption values are updated separately for each MRP area.
    A separate ATP check is carried out for each MRP area.
    If several storage locations belong to an MRP area, the system can also carry out a check at two levels, that is, at storage location level and at MRP area level.
    Example: Subcontractor
    You can also carry out planning for components to be provided in subcontracting using an MRP area by defining an MRP area for every subcontractor and assigning the components to be provided to the MRP area of the subcontractor. You therefore plan the requirements to be provided for these components for one subcontractor separately from all other requirements (see Planning for Components to be Provided in Subcontracting).
    Depending on the requirements situation, the system creates either stock transfer reservations from the plant to the stock of material provided of the subcontractor or it creates purchase requisitions within subcontracting/third-party order processing, according to the special procurement key settings.
    Implementing MRP Areas
    Implementation Options
    The main reason for you to implement MRP areas is if you would like to plan materials, which are required in different shop floor areas, storage locations or by subcontractors, separately from one another.
    As soon as you have activated materials requirements planning with MRP areas, this type of MRP is active at client level, that is, MRP will be carried out in this way in all plants.
    Material requirements planning with MRP areas cannot be reversed.
    Process Flow
    You can implement material requirements planning with MRP areas in three steps:
    You convert the existing planning file entries at plant level to planning file entries at MRP area level.
    During the conversion, the system creates a plant MRP area for every plant as a background job. This, however, will not affect your planning. The processes in material requirements planning and the planning results remain unaffected.
    The conversion is also useful even if you do not work with MRP areas, but still have to plan for several plants, as the new planning file improves system performance during the planning run.
    You activate MRP with MRP areas in Customizing for MRP. This causes the MRP area field to appear in the applications of MRP and in related areas. When you enter the plant number, the system automatically fills the field with the number of the plant MRP area. The number of the plant MRP area is the same as the plant number.
    This does not affect the planning run as the plant MRP area still corresponds to the present plant.
    You define an MRP area, for example, for a storage location. You then assign the materials that are to be planned for this storage location, by creating an MRP area segment in the material master.
    Materials requirement planning for this storage location is then carried out separately. The storage location stock is no longer included in the available stock of the plant MRP area. The receipt and issue elements of this storage location (MRP area) are also not taken into account in the plant MRP area. They are only taken into account in the MRP area of the storage location.
    If you have already worked with storage location MRP the system still carries out storage location MRP even after the activation of MRP areas. You need to decide in principle whether you want to continue using storage location MRP or whether you want to create MRP areas for the storage locations that are planned separately. It is not possible to simultaneously plan a material using storage location MRP and an MRP area for the same storage location.
    If you decide to use MRP areas, you should then try to convert all storage locations that are planned separately to MRP areas in one step. Before you assign the material to an MRP area, you must remove the MRP indicator, which is located in the material master at the storage location organizational level (view MRP 4) in the screen area Storage location MRP.
    Even if you have defined MRP areas in Customizing, the system plans the materials in the plant MRP area until you assign the MRP areas to the materials.
    Only the assignment of one or more MRP areas to a material, by creating MRP area segments in the material master, actually cause changes in the material requirements planning.
    Hope this helps.
    Regards,
    Tejas

  • MRP AREA CONFIG & PROCESS

    Hi PP Gurus,
    I want to know about the complete process of MRP Areas.
    1) Complete step by step process in terms of config. & front end in SAP.
    2) How to activae it for Plant, Storage location & vendor.
    3) Difference between above three & where they are exactly used.
    The person who helps will be awarded points = 10.Sure.
    Regards

    Hi,
    Pls. find the following details regarding MRP Area :
    MRP Area
    Definition
    The MRP area represents an organizational unit for which material requirements planning is carried out independently.
    Basically, there are three types of MRP area:
    Plant MRP Area
    The plant MRP area initially contains the plant together with all its storage locations and stock with subcontractors.
    When you have defined MRP areas for storage locations and for subcontractors and you have assigned the materials, the plant MRP area is reduced by exactly this number of subcontractors and storage locations. This is because they are now to be planned separately.
    MRP Areas for Storage Locations
    You can define an MRP area that consists of a particular storage location, by creating an MRP area and assigning the storage location to it. Material requirements for this storage location are then planned separately from the rest of the plant.
    You can also group several storage locations into one MRP area, by creating an MRP area and assigning the storage locations to it. These storage locations are then planned together.
    A storage location of a plant may be assigned to only one MRP area.
    MRP Areas for Subcontractors
    You can also define an MRP area for each subcontractor.
    A subcontractor may be assigned to only one MRP area. An MRP area of the subcontractor type may also only contain one subcontractor.
    Use
    You can carry out MRP specifically for the determined MRP areas. This enables you to carry out differentiated material requirements planning. The requester can be, for example, the production on a particular assembly line or a subcontract order.
    The MRP area allows you to have specific control over the staging and procurement of important parts produced in-house and purchased parts for each shop floor area. You can, however, also plan the provision of components for the individual subcontractors.
    MRP areas of the storage location or subcontractor type are only suitable for:
    components that are planned and produced for stock
    finished products that are planned and produced for stock. By assigning a storage location in a sales order or by entering an MRP area when creating the planned independent requirements, you can define whether a material is planned in the plant MRP area or in the MRP area of the storage location.
    Finished products and important assemblies intended for make-to-order or engineer-to-order production are always planned in the plant MRP area.
    The planning run takes into account the planning with MRP areas as follows:
    If you do not enter a separate scope of planning, the system plans the whole plant, that is, all MRP areas in the plant, during the total planning run. If you want to carry out a total planning run for a particular MRP area only, you must specify the required MRP area in the scope of planning.
    During single-item, multi-level planning, the system plans the selected material in the MRP area entered. In addition, the system takes into account planning file entries from other MRP areas, for example, if the material is to be procured using stock transfer.
    During single-item, single-level planning, the system plans the selected material in the MRP area entered only.
    Structure
    You define the MRP areas in Customizing for MRP. You can thereby assign the following to an MRP area:
    one or more storage locations (example: you want to carry out planning for a particular assembly line and therefore assign a production storage location to the MRP area)
    a subcontractor.
    You assign the various MRP areas to the materials in the material master. For this, you create an MRP area segment for a material for every MRP area, in which it is used. In this MRP area segment, you can define MRP parameters such as, for example, the lot size or MRP type. This allows you to plan the material differently in the MRP area from how you plan it in the plant MRP area.
    MRP with MRP areas for the material is not activated until the material has been assigned to an MRP area. If you have not assigned a material to an MRP area, that is, you have not created an MRP area segment in the material master, the material will continue to be planned in the plant MRP area only. If you have assigned an MRP area to it, the system can plan it in the plant MRP area and in the assigned MRP area.
    Integration
    You can carry out material requirements planning for MRP areas using all MRP procedures and all lot-sizing procedures.
    You can also carry out an independent material forecast for MRP areas using your own parameters.
    The material consumption values are updated separately for each MRP area.
    A separate ATP check is carried out for each MRP area.
    If several storage locations belong to an MRP area, the system can also carry out a check at two levels, that is, at storage location level and at MRP area level.
    Example: Subcontractor
    You can also carry out planning for components to be provided in subcontracting using an MRP area by defining an MRP area for every subcontractor and assigning the components to be provided to the MRP area of the subcontractor. You therefore plan the requirements to be provided for these components for one subcontractor separately from all other requirements (see Planning for Components to be Provided in Subcontracting).
    Depending on the requirements situation, the system creates either stock transfer reservations from the plant to the stock of material provided of the subcontractor or it creates purchase requisitions within subcontracting/third-party order processing, according to the special procurement key settings.
    Implementing MRP Areas
    Implementation Options
    The main reason for you to implement MRP areas is if you would like to plan materials, which are required in different shop floor areas, storage locations or by subcontractors, separately from one another.
    As soon as you have activated materials requirements planning with MRP areas, this type of MRP is active at client level, that is, MRP will be carried out in this way in all plants.
    Material requirements planning with MRP areas cannot be reversed.
    Process Flow
    You can implement material requirements planning with MRP areas in three steps:
    You convert the existing planning file entries at plant level to planning file entries at MRP area level.
    During the conversion, the system creates a plant MRP area for every plant as a background job. This, however, will not affect your planning. The processes in material requirements planning and the planning results remain unaffected.
    The conversion is also useful even if you do not work with MRP areas, but still have to plan for several plants, as the new planning file improves system performance during the planning run.
    You activate MRP with MRP areas in Customizing for MRP. This causes the MRP area field to appear in the applications of MRP and in related areas. When you enter the plant number, the system automatically fills the field with the number of the plant MRP area. The number of the plant MRP area is the same as the plant number.
    This does not affect the planning run as the plant MRP area still corresponds to the present plant.
    You define an MRP area, for example, for a storage location. You then assign the materials that are to be planned for this storage location, by creating an MRP area segment in the material master.
    Materials requirement planning for this storage location is then carried out separately. The storage location stock is no longer included in the available stock of the plant MRP area. The receipt and issue elements of this storage location (MRP area) are also not taken into account in the plant MRP area. They are only taken into account in the MRP area of the storage location.
    If you have already worked with storage location MRP the system still carries out storage location MRP even after the activation of MRP areas. You need to decide in principle whether you want to continue using storage location MRP or whether you want to create MRP areas for the storage locations that are planned separately. It is not possible to simultaneously plan a material using storage location MRP and an MRP area for the same storage location.
    If you decide to use MRP areas, you should then try to convert all storage locations that are planned separately to MRP areas in one step. Before you assign the material to an MRP area, you must remove the MRP indicator, which is located in the material master at the storage location organizational level (view MRP 4) in the screen area Storage location MRP.
    Even if you have defined MRP areas in Customizing, the system plans the materials in the plant MRP area until you assign the MRP areas to the materials.
    Only the assignment of one or more MRP areas to a material, by creating MRP area segments in the material master, actually cause changes in the material requirements planning.
    Hope this helps.
    Regards,
    Tejas
    Edited by: Tejas  Pujara on Nov 7, 2008 12:02 PM

  • MRP AREA NETCH indicator missing in planning file entry

    Hi,
    MRP has been activated at MRP area level storage location level and there were no planning file entries for some materials because we were using the LSMW program RMDATIND for uploading the materials and there was no update flag for Planning File entries. Later we have updated the Direct input session with update Flag.
    I already ran the MDAB and MDRE so by the missing planning file entries.
    We are running the background job RMMRP000 for the MRP. There are some materials which are not being planned in the background job. When i run the MRP for the same materials in MD02/MD03, the procurement proposals are being created using MD02/MD03.
    I checked in MD21, we can see the Planning file entries then there no indicator for NETCH.
    What could be the reason?
    Regards,
    Kumar

    hi
    take t code-md20
    flag required field
    regards
    gyana

  • Planning file entry for MRP Area

    Hi,
    To create planning file entry in the background at plant level we use Transaction MDAB. I would like to know that if MRP area is active than whats the T-code for planning file entry in the background at mrp area level?? To create manualy in the Trx md20 we have that option to select mrp area & plant. So please let me know yours view on this.
    Thanks & Regards
    Kundan Kumar

    Dear,
    If planning file entry are there on plant level then system will convert same on MRp area level. Have you check that tables? (DBVM)
    For planning file entry at MRP area lvel , use report RMDBVM00 (transaction OM0F) to convert the existing table MDVM with the planning file entries into table DBVM. The conversion is also described in MRP Customizing: TA OPP1 -> Planning File Entries.
    There is no need of MDAB just check your entry in MD21 take a MRP run at MRP area lvel and come back if any problem.
    If you want to schedule it on MRP area lvel then use the MDRE or use program RMMDVM10 and in variant here select the MRP Area redio button.
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on Oct 26, 2009 6:25 PM

  • MRP area in Source list

    Hello
    Can anyone tell me how the MRP Area field (BERID) is maintained in  source list (transaction ME01).  In my system it is greyed out?
    We are running MRP at MRP Area level and I was hoping that this field would allow me to maintain source lists at this level.
    Thanks in advance for your help.
    Kind regards
    Sue

    Hello Sue,
    The MRP area field will appear if you are planning with MRP option 2 - Record relevant to MRP. Sched. lines generated automatically.
    You can see help document below explaining this process:
    http://help.sap.com/saphelp_47x200/helpdata/en/49/d8fe86df2c11d1a6a80000e83235d4/frameset.htm
    I hope it helps.
    Kind Regards,
    Prakash

  • MRP area data tables

    Hello all,
    We want to know the tables where the MRP area data for a storage location is stored. We are looking table which are similar to MDKP and MDTB in which the noraml MRP data is stored. we do not use comsumption planning at the Mrp area level and we have scheduling agreements which go the the mrp area storage location and we get a STO from the storage location to the production storage location. I am looking for data which is displayed in MD06 for the MRP area. Thanks in Advance.

    Table      MDLV           
    Short Description:  Customizing MRP Area
    Table      MDMA            
    Short Description:  MRP Area for Material
    Table      MDLG           
    Short Description:  Customizing: MRP Area Storage Location
    Table      DVER            
    Short Description:  Material Consumption for MRP Area
    Table      MDIP            
    Short Description:  Material: MRP Profiles (Field Contents)

Maybe you are looking for

  • Hp Photosmart 1215 color cartridge will not print.

    I have a photosmart 1215. The color quit printing so I purchased a new print cartridge hp c6578d and that cartridge would not print. I performed all the cleaning procedures as set forth on this site. Has anyone else had this problem? Thank you in adv

  • How do I install right click to windows running on mac

    I recently installed windows 7 on my Macbook Pro Retina and cannot right click on windows programs! how do I install this?

  • How to delete a bookmark on safari page?

    Want to know how to delete a bookmark on the new Safari page?

  • STYLE tag problem in HTML Parser.

    Hi, I am trying to parse a HTML file. I am able to extract context of various tags like Tag.SPAN,Tag.DIV and so... I want to extract the text content of Tag.Style. What to do? The problem is that HTML Parser right now doesnot support this tag along w

  • Java NIO

    I have made a socketchannel non-blocking and after I write some data to the socket channel , I am closing the socket channel.Why I am doing like this because I am not able to send data properly to the client without closing the socket channel.Now wha