How do I replace a component in several BOMs at once?

I need to replace an item that appears in several BOMs. Rather than go into each BOM separately and remove the old component and then go back in and add the replacement component, is there a way to find and replace several (all) at once?

You have fist to create a Change type :
Bill of materials > Setup > Change types
Open the BOM Mass update form, enter the Change type , enter the selection criteria for the Assemblies.
In the Changes window, select the Change type 'Update'. On the first line (Update), enter the Component to change. On the second line (New), enter the new component.If necessary, enter component information.
On the main screen, select Report and submit : will display all the changes that will be performed.
Select Implement and submit : will apply the changes.

Similar Messages

  • How can I add alternate component in same BOM

    Hi Experts,
    One of my requirement like this , in same alternative BOM I want to add alternative components with existing components.So please advise how to do.
    With Regards
    Aravind

    Hi,
    This is discussed before in SCN. Please go through below links for your query,
    Alternative component in BOM
    alternative materials in PP
    Alternate Item in BOM
    Re: PR( purchase requ) for Alternative material in BOM
    Regards,
    Narresh

  • How to get the Calculated Component Qty  of BOM in BI

    Hi Gurus,
    I am working on a requirement where I need to get the BOM Calculated Component Qty which we see in CS11.
    The way it is getting calculated in ECC is :- If a Component has an Assembly then We take the Base quantity of that material from STKO table and Take the Component qty of its component and multiply the Component qty of The component and the component qty of the Material for which the assembly exist and divide it by the base qty of the component  of the Assembly.
    We need to put the same logic in BI. can anyone please help me how i can accomplish this.
    Thanks!

    CLOSED

  • How to get calculated component quantity for BOM like in CS12

    Hi All,
    Please let me know how to get the calculated component quantity of BOM similar to the field in CS12.
    Regards
    Mahesh

    hi,
       [http://www.sap-topjobs.com/SpecialPP/overviewdoc1.pdf]

  • How to email several people at once

    I do education for several physicians and use my mac.com account and cannot send an email to more than 75 recipients.  I have to send two separate emails to encompass all recipients.  How can I send one email to several recipients at once?

    What you're seeing is a preventavtive measure in place by the server to prevent spamming.  Sending email to large amounts of recipients at once is a tell tale sign of a spam bot.
    Use a listserv or similar service to acheive what you want.

  • How to replace a component in the JPanel?

    Hi,
    I want to replace a component in the JPanel. My panel has GridBagLayout.
    Thanks in advance.

    because my application demands me to use GridBagLayout.No it doesn't, that a choice you made. You are never forced to use a specific layout manager. In fact most layout problems are solved by using combinations of layout managers. You two main choices are:
    a) use a GridbagLayout for the main panel and then a CardLayout for the two components you want to sway, although it may look strange if the components are a different size as the preferred size of the panel will be the size of the largest component
    b) Simulate a card layout using:
    panel.remove(...)
    panel.add(...);
    panel.revalidate(...)

  • How to populate the time component of a cube?

    We have a question regarding how to populate the time component of a cube. Let me explain:
    We are using OWB 10gR2. We have created a cube with several dimensions. We are now building the mapping to load the cube. The cube operator has two columns for every dimension (e.g., "customer" and "customer_id" for the "customer" dimension).
    We understand that, in this case, "customer_id" stands for the dimension business key, so we create an arrow from the business key in the source table to the "customer_id" column in the cube operator.
    So far so good. The mapping works all right, and the cube is loaded correctly.
    Now we need to do the same for the time dimension. We have already created the time dimension and we have loaded it. We have also included it in the cube, so now we have two new columns in it: "time_day_code" and "time", both NUMBER data type.
    We have the "sale_date" column (DATE data type), in the source system and, of course, now we want to populate the date column in the cube. We suppose that, somehow, we have to translate the "sale_date" field into the numeric column of the surrogate key of the time dimension. How should do we do this? I suppose that OWB must do the translation for us, just as it does for the other dimensions, but how? We have been looking into the manuals, and we have found no explanation on how to go about this.
    Any help would be appreciated.
    Best regards
    Juan Algaba

    Hi Juan
    You are right this should have been in the manuals, checked and there is only a brief mention (Using a Time Dimension in a Cube Mapping section)
    The identifier format should have been documented for each level and will involve creating the formatted attribute for input to the cube operator's time dimension reference attribute.
    The time dimension business keys are stored as follows;
    Day Level - YYYYMMDD
    Month Level - YYYYMM
    Week Level - YYYYWW
    Quarter - YYYYQ
    Year - YYYY
    If you have a source that has a SQL date datatype for example and want to construct the key for a cube's time dimension at the day level something like the following expression can be used to construct the time reference from a SQL date...
    to_number(to_char( time_key, 'YYYYMMDD'))
    The result of this expression can be used as input to the cube's time dimension attribute.
    Cheers
    David

  • How we can replace the column in Core Table plz see this msg

    Hi,
    How we can replace the column in Core Table plz see this msg
    Req:
    when i push the Insert button the data inserted into the Table
    like
    Cols Values
    FOCD      CUFZ14
    PRDCD FU6
    Month 082008
    AgencyCD AG02
    PLAN 123
    This is FO_Plan Table....
    Requirement:
    i need at table show to replace the Prd_CD to Prd_Desc while inserting the above Row....
    There is no Prd_Desc in FO Plan Table....
    Prd_desc comes from Product Table.
    did u get my point...
    how to solve.
    Thanks
    Ram
    Edited by: Ram Vungarala on Sep 24, 2008 9:09 AM
    Edited by: Ram Vungarala on Sep 24, 2008 9:15 AM

    Hi,
    I'm not sure if I understood what are you trying to do. But you can modify your table in a backing bean code. JSF page code for a table:
    <af:table id="product_search_results_tbl" binding="#{backingBean.boundTable}" ... />
    And a backing bean code:
    import oracle.adf.view.faces.component.core.data.CoreTable;
    public class YourBackingBean {
        private CoreTable boundTable;
        public void setBoundTable(CoreTable boundTable) {
            this.boundTable = boundTable;
        public CoreTable getBoundTable() {
            return boundTable;
       public String insertButtonAction() {
          // Bind your button action to this method and modify here your bound table
         return null;
    {code}
    Look for column modification methods in a CoreTable class documentation.
    Marius                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How can I Replace a Hard Drive on a 160gb iPod Classic?

    How can I Replace a Hard Drive on a 160gb iPod Classic? I am considering buying an iPod Classic off of eBay which is described as 'broken' and having the 'Red X' showing up on the screen. The seller is starting the bid at a very low price, which raises some concerns for me. For this thread, let us assume that the iPod has a broken hard drive that needs to be replaced in order to function properly. I am assuming that merely 'restoring' it would not suffice. How would I be able to replace the hard drive myself, without bringing it in to a store? I have never fixed an iPod's hardware before, nor a computer or any electrical device. I am a novice at such things. Would I be able to fix it myself without wasting money on a broken iPod and new hard drive? Please provide instructions on how to do so =)

    Hello there,
    Yes, the red X icon is usually a sign of a bad or damaged hard drive. Sometimes, restoring the iPod will resolve the issue, but rarely. Other users were able to smack the ipod against the side of their leg and gain back full functionality of the iPod.
    However, if no such luck with either, your next option would be to replace the drive. For this task, you can either opt to repair and replace the hard drive yourself, or opt to send it into a third party repair business to do the job for you.
    I use the guides at [www.ifixit.com|http://www.ifixit.com> to help me replace broken parts on an iPod. These guides provide excellent step-by-step instructions as well as photos on how to repair any part from an iPod.
    Some other good sites for purchasing repair parts include the following:
    [iDemiGods|http://www.idemigods.com>
    [RapidRepair|http://www.rapidrepair.com>
    [iResq|http://www.iresq.com>
    Lastly, I would also like to remind you that ebay also has several great deals on excellent iPod replacement parts. It's where I purchase a majority of mine.
    Hope this helps.
    B-rock

  • Replace the component after batch determination in the process order.

    Hi dudes,
    How we can replace component for which batch determination done with a new component in a process order. can any body suggest if its possible.
    thanks in advance.
    Robert

    Hi,
    i am not able to delete the component in the materials overview after the batch allocation done by batch determination rather giving batch manually.
    i.e if i give batch directly in the batch field i can able to delete that entire component row, but if do batch determination for that component once its done i can't  able to delete.
    thanks in advance
    Robert.

  • Replace a component by another in a Frame

    Hi all!
    I've a frame with several component (panels, buttons...) set with a gridbaglayout.
    I would like to know if i could replace a component by another.
    For instance.
    Frame f = new Frame();
    button b1 = new button("b1");
    panel p = new panel()....
    f.add(b1)
    /* replace b1 by p
    like :
    f.remove(b1);
    f.add(p);
    */Thanks!

    Sure, you can replace any component by enother one.
    add f.validate() in the end.

  • How to create a table component dynamically in netbeans 6.0 (JSF 1.2)?

    How to create a table component dynamically in netbeans 6.0 (JSF 1.2)?
    This example http://developers.sun.com/jscreator/reference/techart/2/createTableDynamically.html works only with JSF 1.1.

    Please help my write correct code.
    How to replace this strings for run example?
    rowGroup.setValueBinding("sourceData", getApplication().createValueBinding("#{Page1.tripDataProvider}"));
    staticText1.setValueBinding("text", getApplication().createValueBinding("#{currentRow.value['TRIP.TRIPID']}"));

  • How do I replace the battery in my older IPod

    I have an older Ipod with what seems to be a dead battery.  How do you replace them?

    I was able to find an all-in-one kit specific to my older ipod at my local electronic store (Micro Center.)
    The kit cost $20 (a couple years ago) and included all the tools I'd need to take apart the unit, the new battery, and a CD-ROM with a step-by-step video. I think it even included a sleeve to mail in the old battery for recycling.
    It was easy, cheap, and kinda fun! My ipod works great to this day. Highly recommend it!
    One thing I wish I had asked before doing this: Do they sell memory upgrade kits for older ipods? If so, it would have been best to change out that component while I had the unit open. Since they're not really meant to be opened by the user, I don't think I'll dare open it up a second time. Just some food for thought.

  • From an ItemRenderer, how can i reach the component that the Itemrenderer is applied on

    Hello.
    I have a component that uses a skin that uses several different item renderers.
    in each item renderer i want to set a different background color according to a public variable that
    the component that i apply the item render on has.
    how can i reach that component from the ItemRenderer?
    thanks!

    Usually outerDocument or parentDocument.

  • How to i replace the firefox toolbar....and remove the toolbar that starts with MOST VISITED and SUGGESTED SITES

    Somehow lost the toolbar that has the page return arrows and refresh and stop icons. How can I replace those and remove a toolbar that starts with MOST VISITED and lists several SUGGESTED SITES.

    hello kittyheckel, please see [[Navigation buttons like back, home, bookmarks and reload are missing]]. you'll want to disable the bookmarks toolbar & enable the navigation toolbar.

Maybe you are looking for