Deletion of BOM.

Hi All,
I have accidentally created a Bill of Material with wrong unit of measure for the header material, how can I get this one corrected ??
If I set the deletion flag the records will still remain there and I still cant create an alternate BOM with correct unit of measure because even the alternate Bom will get the wrong unit of measure.
I cannot delete the BOM without the change number, that is using the Authorization object C_STUE_NOH.
Please let me know, if there is an another way of doing it ??
Thanks & Regards,
Sashivardhan

Hi,
as per my knolwledge ,once one bom is created you can't deleted, but you can edit the data what you given
but for that confirm there is no document is created with respect with that particualr meterial
is system you can created deletion flag for bom in cs 02 in header view
regards
Faisal

Similar Messages

  • How to delete a BOM?

    Hi,
    Could anyone please tell me how to delete a BOM and the transaction which we use please?.I need to drop or delete a complete BOM
    Thanks in advance.

    Hi Suresh,
    m in need of help pls read my below query .. & if possible pls mail the sample code. your help is greatly appreciated ...
    Create a program that removes BOM allocations to plants for a specified range of BOM materials and plants.
    The selection screen should contain the fields:
    Material number (from - to and multiple selection)      - entry should be required/mandatory
    Plant (from - to and multiple selection)
    BOM usage
    Alternative BOM
    The program should utilze the entered information.
    Then remove the BOM allocations specified in the selection screen.
    After the program run the should be a list displayed that contains the following information:
    All errors that have occured while deleting allocations
    All BOM - plant - BOM usage - Alternative BOM combinations where the allocation has been deleted.

  • Mass Deletion of BOM

    Dear Experts,
    Please advice is there is any mass tranasaction available to delete
    the BOMs in mass.

    Hi sumit,
    u can use T.code CS28. First u have to create Archive file using "Write" option in front screen of CS28. This will goto directly  RCSARCH1  programme and here u can define your BOM range.
    2.Delete option will delete as per Archiving file has created.select time and excute.
    i havenot tried this, plz first try this in your DEV system.
    regards.
    pradeep

  • Delete material bom from ECO.

    Hi,
    I need to delete material bom from eco .
    thanks,
    Aviva.

    Hi
    please check
    CSAP_MAT_BOM_DELETE
    FM to Delete material from BOM
    Regards
    Sujit

  • Deletion of BOMS

    For a particular material certain calulations have been which require BOM, but no BOM was found in that year. Is it possible to delete a BOM and its records completely, so that we cannot trace whether the material had a BOM or not?

    Hi Sampada,
    You can delete BOM in following three ways,
    1. You can delete BOM by creating change number with the date from which you want to delete BOM, in this case history  will remain in the system.
    2. You can delete BOM by activating deletion indicator, BOM will get deleted in next archiving run. In this case you can use that BOM with deletion flag till archiving run.
    3. You can delete BOM directly from the transaction code CS02----Material BOM (Menu bar) -
    Delete.
    In this case once you delete BOM there willl not be any history of this BOM.
    If you have any querry please let me know.
    Regards.

  • Error message for materials deleted in BoM

    When we cost a material master, we have discovered that if a BoM has been created, then subsequently 1 of the sub materials has been flagged for deletion, we don't get an error/warning telling us this.
    We would like to know this, so I've had a look at message control.  I can't see an obvious message that I can upgrade to a warning/error, which is surprising, as I would have expected 1 as standard.
    Have I missed it, if so, what message nr is it?
    If there isn't 1, can you create your own, and whats involved in getting the scenario programmed to trigger the bespoke message?
    Thanks
    Graham

    Hi Aditya,
    I think you can use production version .
    You can create a production version with alternate bom1 with mateiral B.
    Another version with alternate bom2 wtih material A.
    Second option you can use discontinuation process with follow up material
    check this link for further help.
    http://help.sap.com/saphelp_47x200/helpdata/en/ea/e9b3f84c7211d189520000e829fbbd/frameset.htm
    If helpful reward points
    Regards
    Ranga

  • Track Deleted BOM item in Process Order

    Hi Guys,
    I am facing one issue which is described as below.
    when user is converting the Planned order into Process order at that time he has deleted 1 BOM item.
    Now i he is saying that i have not deleted that item and after that he released and done the GI conf GR.
    Now i want to track the change history but i am not able to find the changes done by him.
    I have check so many blogs but i come to know that if he is deleting BOM item during creation we will not able to find.
    Pls help

    Hi D R,
    To the best of my knowledge at the time of creation if some component has been deleted, you can not  track. Because up to that time table entry has not happened. After saving you can see the component.
    If you have some existing process order which is without item deletion, you can compare and check. As well Check the BOM in CS03 and check the BOM inside process order. You can easily find out the component.
    Hope this clarifies and at per your requirement.
    Success.
    Regards,
    Krishnendu.

  • Deleted Component appearing in BOM

    Dear Guru's,
    I m facing a strange situation where i have a BOM of material with one component and then i came to knw that,that material is not required any more so i removed the component  and deleted the BOM.
    But when i am running the MRP it is showing the deleted component,i am not able to understand hw it is happening.
    Kindly throw some light on this.
    With Regards.

    check in md04 of that bom component, is there any dependent requirement.May be mrp for that header material
    was carried out earlier before your bom change and later you have run mrp for components individually.
    Do one thing run mrp - single item multi level for your header material again with planing mode 3 - delete and recreate planning data.
    Regards,
    Dhaval

  • Delete BOM items via DI API

    hello,,,
    I want to ask can i delete my bom items through DI API.
    Will the changes of addings and deleting of items through DI API(coding n sdk)be reflected in our SBO.

    Dim objBOM As SAPbobsCOM.ProductTrees
    Dim intCnt As Integer
    Dim strCode As String
    Dim objItem As SAPbobsCOM.Items
    Dim objRS As SAPbobsCOM.Recordset
    Dim boolFlag As Boolean
    objItem = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems)
                objRS = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                objRS.DoQuery("Select Code from  OITM ")
                If (objRS.RecordCount > 0) Then
                    For intI = 0 To objRS.RecordCount - 1
                        strCode = objRS.Fields.Item(0).Value
                        boolFlag = objItem.GetByKey(strCode)
                        If boolFlag = True Then
                            lngStatus = objBOM.Remove()
                        End If
                        objRS.MoveNext()
                    Next
                End If
    Note - This code will delete all BOM's.Change the as per u r requirement.

  • BOM Deletion Inconsistency

    Hello All,
    Deleted a BOM (ALT 1) containing a only document item in it, ALT 2 is still available. Now we are again in need of the that BOM but when tried to re-create ALT 1 system gave error message that "ALT 1 BOM already exist for the material and plant" 
    When use to display using CS03, system says BOM for material and plant is not exist in the system.
    After invistation it has been noticed, ALT 1 BOM was got deleted physically only and not logically as BOM table entries (MAST, STPO, STKO etc) for ALT1 still exist in the system.
    Our need to create ALT1 BOM is immense and inescapable.
    Please suggest how to delete the BOM logical entries so that ALT1 can be recreated (Table maintenance SE11 option is not feasible).
    Thanks you.

    Hi Dgirme,
    your question is Deletion Inconsistency yeap.
    Ok here are the steps to Delete the BOM  CS02----> open the BOM and goto -
    > on the top MATERIAL BOM clikck it -
    > there will be Option DELETE.
    If you click on it (DELETE) there will be a message displayed in the bottom that materials are been allocated again press ENTER then the BOM will be DELETED.
    Come back to CS01 and give the same material maintain the particulars  you will able to create the alternate BOM 1 with the same items in the BOM.
    I hope you can try it.
    Regards,
    Madhu.G

  • Extending a BOM that has been created and then deleted

    Hello!
    I have a BOM for a material that has been extended to several plants already.
    This BOM should be the same for all plants, so I maintain through extenstion in CS07 for all other plants.
    The problem is that someone created that same BOM for a new plant manually and did NOT use CS07 to extend it.
    I deleted the BOM they created manually, hoping that I could recreate it using CS07 to extend it.
    It won't let me.  I get the error  "BOM already exists for this material/plant/usage" when I try to extend it now for the new plant, even though I have deleted the BOM I am trying to re-create.
    Is there any way that I can create the BOM for this new plant using an extension now?  Or is this not possible in any way?
    Thank you very much,
    Stefani

    Yay!     Our Global Business Team did figure out how to fix this issue (thank you Julia Fox):
    1.) We used CS02 to go into the BOM we wanted to delete and extend with the others.
    We found the date it was first created and entered that date in "Valid From" field.
    We left the Change Number blank.
    2.) In CS02, we hit the green check icon, selected "Material BOM" and then "Delete".
    This cleared out the change history that we did not clear out before when we used a change number to delete this BOM previously.  That change history was what was preventing the extension of the plant's BOM from another after we deleted it with a change number.
    3.) Then we were able to go into CS07 and extend the BOM to match the other BOMs, since the change history was deleted.
    Thank you again Mariano for your help!  We couldn't use Support Note #19006 you found because the BOM could still be displayed (because we deleted it with a change number).

  • Effects of deleting a Production BOM?

    Hi SAP Guru's,
    Can anybody please tell me the effects of deleting a Production BOM? I want to create a new Production BOM in place of it.
    Thanks in advance,
    Ketan

    dear ketan,
    why do you want to delete the production BOM, it is not necessary to delete the BOM you can anytime define a new BOM and assign the materials to it.
    Hope solved your querry.
    Reward if useful
    njoy
    Ashish

  • Deletion of  the BOMs

    Hi everyone !
                   I am Ranjan, a toddler in this SAP World. I have uploaded so around 3000 Bill Of Materials using a program and now I need to delete them as our client wants so many changes in it. And I am searching for a program or any other simple method to delete those BOMs. Could anyone please help me. I want to delete all those BOMs <<urgency removed by moderator>>.
                  I will be waiting for your precious reply.
    Edited by: kishan P on Sep 13, 2010 5:30 PM

    You can also check tcode CEWB other than cs20.
    I donot have any idea on CEWB.
    You can check BOM Mass Delete for further help.

  • BOM lines deleted

    While processing an ECO, all lines of a material BOM in a particular plant were deleted. Now there doesn't seem to be anyway to get them back!
    If I try to modify it in CS02, it tells me "No items are valid on xx/xx/xxxx." It doesn't matter if I use today's day or an earlier date, it won't allow getting into the BOM. The header apparently still exists or the error would be different.
    I found old postings on another board that said a deleted BOM couldn't be reinstated. Is that true? I would think that deleting the BOM lines wouldn't be a terminal situation. My best thought at this point is to try creating it as an alternative BOM, but that hardly seems like the best solution...
    Any help is appreciated!
    SAP ERP 6.0

    Thanks, Rupesh.
    I'll be honest, I don't fully understand the first part of your response, but it did end up helping me. I searched the board for the 29064 message and found the answer. http://scn.sap.com/thread/3451508
    And now I feel silly. All I had to do was hit Enter after seeing the message.
    I should have known. That's not the first time I've been tripped up by thinking that an error message means I can't go any further.
    But I appreciate the help!
    Jim

  • Delete BOM

    Hi all,
    I need to delete a BOM so I can add it again afterwards.
    In the 8.8 version I'm removing all the lines first and then the BOM afterwards. This method is working for me.
    However in the 2007 version, I don't have the option to remove the BOM lines (oBom.Items.delete();).
    How can delete a BOM in a 2007 version?
    Kind regards,
    Hans

    Hi Hans,
    You can delete either line or the entire BOM. Why not delete BOM directly?
    Thanks,
    Gordon

Maybe you are looking for

  • How to Enter Purchase Order Acknowledgement

    Hi All, I am working on a scenario where I want to send Purchase Order Acknowledge (corresponding Sales Order number)to SRM through XI. My PO is local PO so I want to enter this acknowledgement in EBP. Can some one please help me out in this scenario

  • How to deactivate Adobe Acrobat v7?

    I have Adobe Acrobat Version 7 installed. I would like to move up the Version 9 to use the new features; mass file size reduction and web forms. I want to move the Version 7 installed on my PC by deactivating it -then installed it on some-else's PC a

  • Component Pick Release - Source Subinventory, Move Order

    I am using component pick release screen for push components.. Is there any possible way to select source subinventory prior to creation of move order ?

  • IFrame hack for IE6 in Tooltip Widget

    The iFrame, that is called up in IE6 to cover form elements doesn't seem to get placed right. Obviously, this issue has to be viewed with IE6 since that's the only browser that uses the iFrame hack built into the Tooltip Widget. The following page sh

  • Computer just turned off and now won't turn back on!!

    I have an IQ770 Touchsmart and while I was out of the room, it turned itself off.  Now it won't even turn back on!!!  I've unplugged and replugged and it won't do anything.  What could have caused it?  There was no power interruption, it's plugged in