MRP Run with production version.

Hi Experts;
I am working as a member of a SAP implementation supporting team. The client wants to run MRP with alternative BOM, not with the 1st BOM. As a solution for the requirement i created production versions and assigned to MD61 schedule line tab. It is working properly.
But the user maintain some quantity as a safety stock for finished materials also. To cover the safety stock requirement, system create planned orders with the 1st BOM, not the production version.Already i have maintained the selection method "3" in material master.
Is it possible to cover safety stock with alternative BOM.
Please help..
Thanks,
Malka

Hello Malka,
For your issue,,
As per other expert suggested you can block the first production version but if in future you want use first production then,,
In these case you maintain production version in many way
Ex.
1.  Lot size .(if production version using for specific lot)
    Maintain the Lot for both production version, so Production version 1 lot completed system take       second production version.
2. Production version validity date (If production version using for specific period )
    In this case after completion of 1. Production version period system take second one
3. Manually selection of production version (If multiple production version and all have same condition)
    Whenever you convert the planned order to production order, one pop up come and ask for                manually selection for Production version, for this you go to OPL8 and select the Manually                production version
I hope this information cover your all requirement, No need to go with quota arrangement
Still you want know about the Quota arrangement, Please create new thread so other expert also provide their view
Regards
Umesh Mali

Similar Messages

  • MRP run with lot size as per prod. version and capacity levelling

    Dear PP experts,
    Hi, We are working with strategy 10. For SFG and FG produced inhouse we have created BOM and recipe with production version.
    For example:
    I have a production version with batch size as 100 Kg.
    I load PIR for 500 Kg in MD61.
    I have maintained lot size as EX in the material master but I have not defined mini. and max. lot size.
    Is it possible during the MRP to consider the production version batch size if the mini. and max. lot size is not maintained in the system and create 5 Planned Order of 100 Kg each.
    I know, how it can be done by using lot size in material master or by maintaining schedule lines in MD61 or by maintaining quota. But if nothing is maintained is it possible for the system to create 5 Planned orders as per the production version batch size.
    Pl. check if this is possible and revert back.
    Regards,
    Prashant

    Hi
    No, system will not consider the size that maintained in the production version  for the creation of planned order while the mrp run .
    This lost size is used to validate the bom/ routing combiation for the particular  pv of the material

  • Create PIR with Production Version

    Dears ,
    Can I Create PIR with Production Version Specific
    Best Regards
    Rami

    Hy Rami,
    Yes you can select required Prod. Version With PIR itself.
    To do the same follow below Path,
    MD61/MD62 --- > Go to Schd. Line Tab ---> Go to Settings Menu --->
    Production version.
    After pressing that Tab for Prd. Version you will find Column for Prod. version gets Activated and there you can select your required Prd. Version.
    System will explod the BOM and Recipe as per that Selected Prod. Version during MRP run.
    Regards,
    Dhaval

  • Selection of BOM with Production version

    Hello friends,
    I have Finish product say A with two alt. BOM and Production Version 1 & 2
    i have semi-finish product say B  with two alt. BOM 1 and 2 in the BOM of the Product A
    Now when i create PIR in MD61 for product A with production version 2 selection,how the system will select the component B
    with alternative BOM 2
    please suggest

    Hi Mangesh,
    The production version is selected based on the setting you are maitaining in MRP-4 view for Dependent Requirement Selection Method. The selection will be based on the Validity dates, Quantity i.e. based on the Lot sizes, and based on the production versions.
    If both the versions are having same date,lot size etc, then the system will select the first version by default.
    IF you do not want any version not to be selected then you can lock that version in MRP-4 view or in C223.
    Thanks and regards
    Muru

  • I downloaded the new firefox and now I get an error stating it won't run with my version of Mac OS? What is the fix?

    I was prompted to upgrade to Firefox 4 - I have a 3.6 version. When I move it to my application folder and tried to run it, I get the error that it cannot run with my version of Mac OS. I'm not sure how to update my OS version or go back to an older version of Firefox.

    Firefox 4 requires at least OS X 10.5. You can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html
    Mozilla are working to prevent Mac users with non-compatible systems from getting the notification about Firefox 4, and also not displaying the "Download Firefox 4" button on http://www.mozilla.com

  • I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    with an iphone 3G the most up to date ios is 4.2.1 so you have a problem because whatsapp requires a higher version.  If you saved an earlier version of whatsapp you could install that otherwise you cannot use the app.  You will need to get a more up to date phone

  • MRP With Production Version

    Dear Guruji
    I have material code XYZ with production verson-3 of same lot size.I want to MRP run in following Sequstion
    Verson-1-=100 kg
    Verson-2= 300 kg
    verson-3= 600 kg
    i am put above aqty in MF50 as per verson.
    Uppear Verson BOM is AS per Following
    Verson-1 -Base QTy-500 kg
    RA- 50 kg
    RB-100 kg
    Verson-1 -Base QTy-100 kg
    RA-50 KG
    RB-100 kg
    Verson-1 -Base QTy-800 kg
    RA-100 kg
    RC- 500 kg
    Our verson is define in combibnation OF BOM & Recipe.
    Sometime BOM one & Recipe may be more then one.
    sometime BOm & recipe both change
    so please guide me how the system react
    Thanks
    Pankaj Kapadia

    If you cannot maintain lot size in production version (please elaborate why?), then another option is to create the BADI MD_MODIFY_PRODVERS as follows:
    1.  Go to se19 and enter your BADI name (Zxxxx) linked to BADI definition MD_MODIFY_PRODVERS
    2.  In interface IF_EX_MD_MODIFY_PRODVERS, you double click and put the code.  This is a code sample :
    METHOD if_ex_md_modify_prodvers~modify_production_version .
      DATA: lv_verid LIKE ch_verid.
    *--> Store old value
      lv_verid = ch_verid.
      IF im_menge LE 100.
         ch_verid = '1'.
      ELSEIF im_menge GT 100 OR im_menge LE 300.
         ch_verid = '2'.
    ENDIF.
    IF lv_verid NE ch_verid.
            ch_changed = 'X'.
    ENDIF.
    Endmethod.
    3.  Activate the BADI.  Test it out.
    Edited by: ayethebing on Jul 5, 2010 11:12 AM

  • Quota with Production Version

    Dear Experts,
    Finish Material: A
    Production Version for A: A1 and A2
    Quota Usage for A: 4
    Maintain Quata arrangement: For A1 quota rating 70 , for A2 quota rating 30 , no other setting
    PIR for A : 100
    At MRP run system is always picking production version with higher quota rating. Pl guide me why it is happening, I want both the versions will be picked as per the quota ratings.
    Regards
    Reshmi

    Hi,
    Request you to check in the lot sizing procedure defined whether split quota has been activated.
    Also check whether your requirements is less than the minimum lot size for splitting.
    Thanks,
    nandha

  • MRP Runs With Out Forcasting & With Miximum Level.

    Hi  All,
    I Have a One Finished goods Item Which is Marked as Inventory Item and Sales Item.
    My Inventory Management is Werehouse Level
    So This Item I have a In Stock Quantity is 40 at my werehouse Minimum Quantity is 50  and Maximum Quantity is 400 Both
    of  this minimum and Maximum Quantity will Put Manuly by me at Item Master.
    I Don't wnat to Use the Forcasting For Any Item.
    I Want to Run MRP For This Item at  Maximum Level
    If Item Goes down to minimum Inventory Level for Example: In stock Is 40 at that time I wnat to Run MRP 
    My Requirment is when I run MRP System Gives Recomandation to me a 360 Quantity
    Meanse  { Maximum Quentity-Instock=Recomandatin  } [ 400-40=360]
    Is It Possibal or any one have solution for this Requirment then Pl z send it to me.
    Vikas

    Hello Vikas - I doubt also that you will find an MRP system with that, however, here is something you might want to fool around with as a start to creating an alert message or daily SQL run...
    SELECT
    T0.[ItemCode],
    T0.[MinLevel],
    T0.[MaxLevel],
    T0.[OnHand],
    T0.[MaxLevel]-T0.[OnHand] AS 'Sugg Order'
    FROM OITM T0
    WHERE
    T0.[OnHand] <=  T0.[MinLevel]
    AND  T0.[MinLevel] <> 0
    At least this will give you a list of products you can look at until you can find something else.
    Maybe this will help?  I hope so...
    Regards - Zal

  • MTS - MRP Run and Poduction version

    DEAR PP GURUS & EXPERTS,
    There is a case of MAKE TO STOCK and we have multiple production versions (OR BOM) for a single material.
    Now, MRP Point of view: Suppose we want to produce (let 6000 PCS) of that finished goods. Out of which:
    1000 Based on BOM1,     2000 Based on BOM2      3000 Based on BOM3
    Can we differentiate 6000 PCS During MRP RUN or During MRP Run can we devide the Finished Qty in percentage.
    Thanks in Advance.
    DSC
    Edited by: Devendra Singh Chauhan on Dec 23, 2010 2:02 PM

    DEAR PP GURUS / EXPERTS
    Suppose, I have finished Goods 20017440 for which I want to produce 5000 PCS. For that I have mentioned  Quota arrangement  Usage 3 in MRP-2 View, In MRP-4 View Under BOM Explosion / dependent requirement I have mentioned
    Selection Method -3 and also mentioned Production versions (1001, 1002 & 1003).
    After that in MEQ1(Quota arrangement) I have mentioned Validity and three lines for this item by defining:
    QAI     P     S     PPI     Ver     Quota     in%     Quota BAse Qtt
    1     E     E     1152     1001     2     20     1000
    2     E     E     1152     1002     5     50     2500
    3     E     E     1152     1003     3     30     1500
    After that Run MRP in MD02-NETCH-2-1-3-3-2 and chek the result in MD04.
    But Result is appearing only for 1 Production version not for second and third.
    Actually my requirement is: I want to Produce 1000 PCS as per production version 1001, 2500 PCS as per production Ver. 1002 and 1500 PCS as per Prod. ver. 1003. So, total Qty. is 5000 PCS. For these I want to run MRP and generate planned Order.
    Please Suggest Where I am wrong.
    Thanks in Advance.
    DSC

  • Demand Management with Production Versions

    Dear all,
    Is it possible to link the requirements in Demand Management with a production version which I've listed in the MRP 4 view?

    Hi,
    Yes it is possible. In MD61 when you place independent demands, switch to the schedule line view & specify which Production Version you want the demand to consider.
    Hope the above clarifies.
    Regards,
    Vivek

  • MRP Run with User Exit key for Follow up material

    Dear Gurus,
    I want to run MRP only for followup materials by using User exit key. For example i have a material X(with discontinued Indicator as 1) and it's follow material is Y.
    So we have a user exit key as ZFL, with coding as shown below. Now when i run MD01 with user exit key ZFL and parametre as 1, it only runs MRP for material X and not for material Y. What else we need to do so that when i run MD01 with user exit key ZFL, it shoudl consider both X and Y. 
    WHEN 'ZFL'.
    DATA : BEGIN OF ITAB5 OCCURS 0,
    KZAUS LIKE MT61D-KZAUS,
    END OF ITAB5.
    TRANSLATE USER_PAR TO UPPER CASE.
    SPLIT USER_PAR AT ',' INTO TABLE ITAB5.
    IF ITAB5[] IS INITIAL.
    EXIT.
    ENDIF.
    CLEAR: NO_PLANNING, STOP_PLANNING.
    READ TABLE ITAB5 WITH KEY KZAUS = MT61D-KZAUS.
    IF SY-SUBRC <> 0.
    NO_PLANNING = 'X'.
    ENDIF. 

    Hi Kumar,
         You can use either MRP Type, MRP Controller, MRP Group in this user exit to control the MRP run. For these set of Materials you have to assign any of same value or at least differentiate these material from other material. Then only you can control the MRP by using this user exit even though if you use different MRP Group and MRP Controller. In User Exit, you may have to add your dependent material's MRP Group/MRP Controller. Make sure that these set of materials are different than all other materials.
    If you don't have any plan to run MRP for other materials then as per Ajit suggestion you make that material's MRP type as "ND". But, in your business case they may want to activate the MRP for all the material not now but may be latter.
    Thanks

  • MRP run with MDBT

    Hi all,
    I'm facing a typcial problem
    In MDBT -processing key is maintained as NETPL
    There are 3 materials say
    1.A
    2.B
    3.C
    For all three materials NETCH is marked in the planning file entry & NETPL is blank in MD21
    When i go for MRP run via MDBT then no proposal is raised for A & B,where as for C i'm getting a proposal
    All three has requirement -Exected result is Planned order
    Initially i thought NETPL is not active in MD21 & that is the reason i'm not getting any proposal
    but i'm shocked to see proposal for material C
    MRP is run with processing NETPL
    Will the material marked for NETCH also be included in the run or only those materials which are marked for NETPL only will be included ?
    If yes for 1st question then i feel there is a logical difference
    If yes for 2nd question then why should i get proposal for material C?
    Please clarify me
    SVP
    Guys pls respond
    Edited by: SVP on Jan 8, 2009 3:55 PM

    Hi Vishal,
    Thanks for pointing out user exit key,i didnt noticed that,In one the variants user exit key is maintained ,MRP controller selection (CTL)
    & user exit paramter also is maintained as 100 in one variant & in another as 001-099,101-500
    How is this normally defined?What doen tis mean
    In first case(100) does it mean that run only for thos matrials which have MRP controller as "100"
    In second case rund for all materials with MRp controller (001-0990 & 101 to 500 I'm not usre on this
    If yes pls let me know where we define this whole thing
    Like MRP controller selection is defined as CTL -but what does it mean,where are the actual conidtions written
    Very basic question may be but i'm not aware fo this,pls let me know
    Once again thanks a lot for giving the lead
    SVP

  • Processing with Production Version

    We have planned order with one level BOM (Discrete Mfg. Scenario).
    FERT and ROH . in production version 1.
    While converting this planned order to production we are choosing production version 2 which consist of two level BOM.
    FERT - HALB and ROH.
    When we choose production version 2,  Order reservation are generated in system for HALB.
    How to process this HALB  if it is to be
    1) Processed inhouse.
    2) Given to Subcontracting.

    Dear
    In your Senario U have choosen Two Production version PV-1 &PV-2 inorder to clear reservation happen in HALB u need to select the Production version -2 because from roh you are making semifin then fg first u need to get ROH in Unrestricted then Create SFG and Issue ROH to sfg then GR SFG unrestesticed Stock issue To FG while confirmation then Do GR of FG
    then there wont be any Reservation.
    And For Subcontracting U need To decide Which Operation And which Material is going
    Operatin subcontarcting for Material Keeping PP02 in ca02  As external Key then Create a Purchase Info Record
    Issue this material To Subconctarcting With Movement type  541 with refrence to PO
    and receive this Through 101 GR
    Please Follow This Link for more Steps
    [http://help.sap.com/saphelp_46c/helpdata/en/f4/7d322744af11d182b40000e829fbfe/content.htm]
    [http://wiki.sdn.sap.com/wiki/display/SCM/Subcontracting+Process]
    with regards
    pushpalas

  • Can older verion of java run with new version ?

    I am new to java.I confuse with the version of java.
    I have buit system,like a website,with 1.1.8 version of java . Now, I will promote the JVM to the new version , like 1.2 version . What i will watch ? Is that ok ?
    Thanks everybody.

    Yeah, it's ok - Java is backwards compatible. But you might want to check that it works first. Most old parts of the API have remained the same from the day they were first released, but you might get problems with methods like getX in the class java.awt.Point or getWidth in the class java.awt.Dimension.

Maybe you are looking for

  • CIN Setting for Capital goods (RG23C)

    Hi, Presently, after doing Goods Receipt (MIGO) when trying to update RG23C Part 1 in J1I5 with reference to the material document and choosing classification as ROP, the system doesn't find any data. When trying to Capture Excise Invoice in J1IEX, t

  • Change values of driver program from sapscript form...

    Hello Experts, Can we change the values in driver program from the sapscript program during runtime? Because it always generates 2 pages well in fact the main window only has 1 line of content! I also cannot change the driver program since it is a st

  • Authorisation in SPRO

    Hai SAP guru I would like to provide display access in production client to core users,  is it posible  to give only display access, if so how. Thanks.

  • Billing dump error!!!

    Hi gurus.. while iam doing easibi transaction iam getting the following dump error.can anyone please tel the reason behind this error? it would be more appriciatable. Error analysis      Short text of error message:      200026       already exists  

  • Select Row as Data filter between Report viewer webpart

    Hi All, i have a requirement in SharePoint 2013 which has 2 SSRS Report Viewer webpart. i need to pass data which i select in First webpart to second webpart. is this possible how can i achieve this. Thanks for your time. Regards Bhasker hi