BOM Explosion based on Production Order Creation

Hi PP Guru,
My client wants the BOM Explosion date to be based on Production Order creation date. Could you help to advise how to set-up this requirement?
I have showed them these possible System Configuration in BOM explosion, but none of these options are applicable to their current business practice.
<OPPQ> BOM Explosion:
     BOM explosion number/order start date
1     Order start date
2     Order finish date
3     BOM explosion number/order start date
4     BOM explosion number/order finish date
Looking forward to you reply.
thanks,
John

Hi Sundaresan,
Thanks for your reply.  So do you think there's any other way to fulfill the client's requirement?  I was thinking to do the "PP Master Data" instead, in order to choose the date of explosion.
Actually the scenario is this:
Initially the Material XXXXXX has a valid BOM on 03.01.2011 to 12.31.9999, but then, some changes has been made, maybe the user has changed the component or added new component using 04.01.2011 to 12.31.9999 as validity date.
For example, the user created the Production Order (manually in CO01 or from Planned Order conversion) on 03.20.2011 and the Order Star date is 04.01.2011, so the system will copy the updated BOM which is valid on 04.01.2011 to 12.31.9999 (based on Order Start date).
However, the client wants to explode the previous BOM instead (03.01.2011 to 12.31.9999).
Please advise.
Thanks,
John

Similar Messages

  • Modification BOM Quantity during the Production order creation

    Hi ,
    I am using the next BAPI: BAPI_PRODORD_CREATE however I would like to modify the Quantity of the components during the creation.
    Does anyone know how I can do that? Because this BAPI has not the parameters to modify the quantity components.
    Regards,
    Isaias

    Dear ,
    You need to use BDC tool for modification of BOM qty .BDC ( Batch Data Communication )  is basically a tool to upload or modify  mass data from Legacy  to SAP in batch programming   ( for any Master Data like Material Master , BOM , Work centre ) .
    To know more about BDC , please refer the step by stepo procedure :
    http://www.sap-img.com/abap/learning-bdc-programming.htm
    http://wiki.sdn.sap.com/wiki/display/ABAP/DataTransfers-BAPI%2CBDC%2CALE%2CLSMW%2C+DX-WB
    http://wiki.sdn.sap.com/wiki/display/ABAP/BDCSession-AutomaticExecution
    Regards
    JH

  • Userexit for updating sales order user status based on Production Order

    Hi.
    My clients requirent is
    Sales order user status should get updated based on production order creation,GR for PO creation etc.
    Basically depending on PO & GR For PO,various user stauts in sales order should get updated.
    Can you please suggest me some userexits in PP for this requirement?
    I am a SD Consultant and not having much idaes about PP
    Thanks
    Nisha

    hi,
    if you are not going to update it in the SO..
    then you need different exits as those are different transactions.

  • Exit for production order creation that update BOM explosion date

    Hi Guros
    does any one know a user exit for production order creation that update BOM explosion date = AUFLD.
    or a UE that run before the BOM explosion.
    thanks.

    Dear,
    I dont think user exist will work for you,
    You need to find BAdi for it, cl_exithandler=>get_class_name_by_interface .
    Or try with SE84,
    Enter the package name and check the " Enhancements"
    Regards,
    R.Brahmankar

  • Selection Of BOM & Routing at the time of production order creation

    Hi guys,
    Please clarify how i can go about for the following mentioned scenario
    I have one Master BOM(Finished Product Level) & alternative BOMs for that,similarly i have one Master Routing & alternate routings for the same finished product
    At the time of production order creation is it possible for me to choose one of the BOMs & One of the routings of that particular finished product without creating a production version?
    Awaiting for a quick response
    Vijai

    Hi vijai prasad shanmugam ,
                                              In the material master MRP-4 view under the BOM selection you can maintain on what fatcors you want the BOM to be selected  Viz. Selection by order quant.,Selection by explosion date.Selection by production version etc.
    As far as the master recipe is concerned ........ I guess that if there are more than one valid master recipe maintained then SAP will prompt to select the one manually.........
    But it the standard practice to maintain the production version ....... for the similar situation to the one that you have mentioned.
    Please Let me know if I can help you in any way regarding this........
    Please reward the points......... in you find the ans helpful.....
    Thanks
    Kaushik

  • How to ignore Assembly Scrap of MRP during Production order Creation

    Hi All,
    We want to ignore the Assembly Scrap maintained in MRP View during production order creation.
    We are maintaining assembly Scrap for planning so we do not want to remove that.
    Please let us know if any User exit is there during Production Order Creation.
    Thanks,
    Amit

    Dear Amit,
    Assume in CO01,once after entering the total order quantity the system proposes the scrap quantity field separately,now
    remove this quantity for scrap field and press enter and once again adjust the total quantity and check for what quantity the
    system is proposing the BOM components.
    check whether this works for your requirement.
    Regards
    Mangalraj.S

  • Production order creation & updation in co02 transaction takes long time

    Hi experts,
    I am creating production order using the below logic whiich takes more time.can u please help me with some logic.
    1. I am taking recut and rejection last completion date for the material from zee table.
    2. Based on the date to till date iam taking all the document number(mblnr) from mkpf.
      SELECT mblnr
             mjahr
             vgart
             bldat
             cputm
        FROM mkpf
        INTO TABLE it_mkpf
        WHERE vgart = 'WF'
          AND ( bldat GE wa_zrjrcpoc-zdate
          AND bldat LE c_date ).
    3. Then fetching mblnr from mseg
        SELECT mblnr
               mjahr
               bwart
               matnr
               werks
               lgort
               menge
               j_3asiz
               j_4ksca
          FROM mseg
          INTO TABLE it_mseg
          FOR ALL ENTRIES IN it_mkpf
          WHERE mblnr = it_mkpf-mblnr
            AND mjahr = it_mkpf-mjahr
            AND ( bwart = '101' OR bwart = '102' )
            AND matnr IN s_matnr
            and lgort in s_lgort
            and werks in s_werks
            AND ( j_4ksca = 'REJ'
             OR j_4ksca = 'RCT' ).
    The above logic takes more time for Production order creation.
    can u please help me with a new logic...
    A.Jenifer

    Hi Abhi..
    Thanks for reply...
    Yes i am taking material number and date from zrjrcpoc table & reading it.
    Then iam passing it to mkpf & then to mseg.
    In zrjrcpoc for 2 materials zdate is 01.05.2010 & 30.06.2010.
    To create PO for this 2 materials it takes all mblnr from 01.05.2010 to sy-datum.
    Finally after comparing it creates PO for document number from 01.07.2010 to 30.07.2010.....
    whether any other logic to take material number from mkpf & mseg from 01.07.2010 to 30.07.2010....

  • BOM Explosion for Multiple Process Orders

    Hi,
    I hope someone can assist me with the following: Is there a report I can run or transaction I can do to have BOM explosion for multiple Process Orders? I would like to input process orders for a week and see the BOM details per PO.
    Thanks

    Dear Sukendar,
    1.For this requirement you have to go for a Z report and you can give the Functional Spec's to prepare
    this report to your ABAP consultant.Prepare the input format,logic of the program and the output format.
    In the logic part you can make use of this Functional Modules's CSAP_MAT_BOM_READ or 
    CSEP_MAT_BOM_READ  or CS_BOM_EXPLOSION   or CS_BOM_EXPL_MAT_V2 .
    2.Using CEWB helps you to identify all the material that's having the BOM,but here the report does not
    shows you the level by level by BOM for a FERT.
    Check and revert back.
    Regards
    Mangalraj.S

  • APO: RRP3 automate Production order creation from planned order ?

    Hi everyone ,
    I have got a business requirement in APO where in Open sale orders uploaded in R/3, needs to be converted to Planned order and subsequently to Production order in APO-PPDS tcode RRP3 at all stages. They want to automate this process rather than doing it
    manually.
    Can anyone tell how is this possible . Any BAPI or function module available to do this . Please help.
    Regards,
    Syed

    Hi,
    1.You need to run the heuristics Planning of standard lots SAP_PP_002  in /SAPAPO/CDPSB0 by specifying the time profile
       and  strategy profile, planning version and propagation range, product and location.
    2. Convert PPDS Planned Orders created to process orders thru /SAPAPO/RRP7 by specifying the product location start date of the order for production order creation.
    Out put of step 1- For sales order requirement, PPDS Planned orders gets created.
    Out put of step 2- PPDS Planned orders are converted to production orders.
    Thanks,
    nandha

  • IDOC/BAPI for Production order creation from Legacy system

    Hi all
    We are using an interface to create Production orders from legacy to SAP. Would you recommend an IDOC or a BAPI to create Production orders. If IDOC or BAPI then could you please mention which one?
    thanks a bunch

    Hi John,
    For your purposes, please use BAPI for production order creation from legacy system. There is no standard inbound IDoc available to use. SAP has an IDoc for outbound interface only (message type LOIPRO).
    If there is an inbound IDoc available, I would recommend to use an IDoc.
    IDoc technology has excellent error handling and will allow you to reprocess an error (if any).
    BAPI is also good approach to use and fast in term of  processing.
    For BAPI approach, you can use BAPI BAPI_PRODORD_CREATE.
    Hope this will help.
    Regards,
    Ferry Lianto

  • FM for creation of production order creation

    Hi All,
    Can anyone tell me the BAPI for the production order creation.
    BAPI for creation of production order through CO01 transaction code.
    Thanks in advance
    Ramesh.

    Hi,
    Please check this FM CO_ZF_PRODUCTIONORDER_CREATE.
    Regards,
    Ferry Lianto

  • IDoc Configuration for Production Order Creation and Change

    Hi All,
    Please Help me out for IDoc Configuration for Production Order Creation and Change
    I have found the IDoc for Production Order
    Messgae Type : LOIPRO and IDoc type : LOIPRO01
    Actually my requirment is to send the (LOIPRO01 )IDoc from SAP R/3 to XI system ,when ever the Production Order Created and Changed,
    I have done following Configurations:
    1. RFC Destination created for XI system
    2. PORT was created for XI
    3. Partner profile created WE20 and LOIPRO01 IDoc is added in OutBound Perameter.
    I need to know how to do the followning.
    1. How do i configure the outbound Production order idocs when Production Order is created or changed.
    2. in NACE (Output control) which is the Application for Production Order.
    3. How can I set IDoc as output Type for Production Order Creation.
    Thanks in advance
    Dhanabal T

    Hi Michal,
    I know that it is the old thread but still want to get clarified from you out of curiosity.
    Unlike other IDOC, i actiavated change pointers for LOIPRO
    1.message and idoc type is linked
    2.function module , message type , idoc type is linked
    function module used is CLOI_MASTERIDOC_CREATE_LOIPRO
    3.BD64, distribution model is created and distributed
    4. port and partner profile is in place.
    5. IDOC is not getting generated after creating the process order.
    do we need to activate the change documents for the message type in BD52,
    if yes can you please provide the object types for the same.
    or i am missing something else. please guide me in this regards.
    Thanks in advance for your time.
    S.Janagar

  • Notify of Production Order Creation service

    The SDN WIKI for Integration of Manufacturing Execution Systems states that...
    "Now, as of Enhancement Package 4, each time a production order is created in SAP ERP, that action automatically invokes the Notify of Production Order Creation service operation, which informs the MES system of all the details of the new production order. "
    I am not able to locate any further documentation and definition of the Notify of Production Order Creation service.   Please provide assistance on where to find documentation of this service.

    Look at these links , may get some help ....
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/espackages/create%252bproduction%252bplanning%252border
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/espackages/find%252bproduction%252border%252bby%252belements
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/espackages/change%252bproduction%252border
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/espackages/find%252bproduction%252bplanning%252border%252bfor%252bapproval%252bby%252belements%252b(SCM)
    Regards
    Abhishek

  • Manual production order creation in MTO

    Dear collegues,
    I am stuck in a scenario:
    I have a finished item A. strategy 20 is used.I created sales order for A in plant 1000. MRP run in plant 1000 happens. Through special procurement key 40, system generates planned order in plant 2000. Planned order is converted to production order. I can see in assignment tab of production order,  Production plant is 2000 and planning plant is also 2000. Till here it is ok. I will do GR against production order in plant 2000 and through SD route I will send it to Plant 1000.
    But when I create manually production order in CO08, always system sets in assignment tab of Production order , production plant as plant 2000 and planning plant as 1000. How to avoid this? Why manual production order is not like MRP generated planned u2013production order?
    Kindly help.
    Regards.

    Give below a try in sandbox (Not from experience, so not sure if it works):
    At the time of production order creation, maintain the production plant in Sales Order & ensure the demand flow to MRP is switched off at schedule line (If you're not sure, take help of your SD person).
    The order created in CO08 should now have production & planing plant as same. Once that is done, switch back the plant in Sales Order & release the demand to MRP. (I hope the cut over plan has addressed the sales & MRP flows, so no inputs from my end)
    If the above does not work, then revert with details.

  • Blocking of production order creation

    Hi All,
    I need a help on blocking of production order creation.
    I have few materials for which deletion has been activated in material master. But for these materials, while creating production order it is allowing to create by showing some warning message. But I want to totally block creation of production order.
    Regards,
    Vijay

    Dear,
    Youneed to define for block for productio.OMS4 --> create new one material status (08) for "Blocked for Prod Order" and set the prodution.
    If u want plant specific block then do not use this indicator in basic data 1 view ,use it in purchasing alse and MRP view.
    Please check with Message No M7-127 at OMCQ. Here u can set error message
    IMG>MATERIAL MANAGEMENT>INVEN>DEFINE ATTRIBUTES FOR SYSTEM MESSAGES. message no M7127
    Change the warning message to error. Then create the production order and check.
    Or Archieve material by SARA
    Regards,
    R.Brahmankar

Maybe you are looking for

  • Apple MacBook Air 2011 - powerful enough for most tasks?

    I want to buy the 2011 model of MacBook Air 13" 128GB, but I have some questions for you guys, would appreciate it if you experts have answers: 1) I'm currently on a two year old Acer Aspire 6920G laptop with 17", Windows 7, Core Duo 2 (T5750 @ 2.0 G

  • HT4515 How to add a ring when you receive text messages

    I just purchased I Phone 5 and when I rec a text message I do not hear a ring-On my Iphone 4S no problem what am I doing wrong. Thank you

  • EDI/IDOC setting

    Hi, Can anybody suggest regarding any  EDI/IDOC setting for SD counsultant apart from developer's work? Regards Susrikant

  • Logic Pro 8 NOT working w/ Fast Track Ultra

    I'm new to producing music and i got the older logic pro 8 from a friend today. The problem started when I tried to play a sound and nothing would come out from my Bx8's. I know its not b/c of the system preferences on my macbook cuz i can still play

  • Struts formbean question

    I have a simple form, with a field, say, number, of type Integer, and a search button. when the user clicks on search, the request first goes to the formbean, to set the number, with method, setNumber. In the user input form, if the user did not spec