All the raw materials for finished products

Can anyone please help me how to find all the raw materials for a finished product. The desired result which i am expecting is same that we get through TCode CS15.
Please help me to solve this issue.
anyone who answers will be rewarded..
thanx in advance

Hi,
Please note what you are talking is multi-level blow up & the logic given by me is for Single Level blow up. In any case you can modify the above mentioned logic as follows so that you will get the desired result.
Once you get all the first child materials of a BOM i.e. 800024 then check in MAST if there is a BOM for this child material. IF you get sy-subrc = 4 in Select of MAST it means there is no BOM Present for this child material hence no need to take any action. However for child material 800120 you will get sy-subrc = 0 indicating that there is a BOM for this child material so write these child material in ANOTHER INTERNAL TABLE SAY 'X' & DO NOT WRITE THIS CHILD MATERIAL in your current internal table. Follow this procedure for all child materials of this BOM. Once your thru with all child materials. loop at internal table 'X' which contains all materials which are haveing a BOM so repeat the above mentioned procedure for all child materials of material from 'X" i.e. in your case 800120. Stop this process till internal table 'X' is empty. I hope this helps,
Regards
Raju Chitale
Edited by: Raju Chitale on May 5, 2008 12:55 PM

Similar Messages

  • In house mfgd. raw materials for a production order- Cost capturing

    Hello Experts,
    The scenario is as below:
    Client wants to manufacture in house some of the raw materials for a production order of sub assembly. These raw materials are made from scrap, with some manhours spent on it. After making them in house, these are handed over to stores for kit preparation.
    The planner wants to create a stock of these materials (without making individual prod. orders since there are many of these). One option is, planner can do the cost centre issue reversal (202 movement). But the raw material cost is also getting captured in it from the material master.
    From costing point of view, the cost of raw material should not be included since it is made from scrap. Only the cost of man hours spent is to be accounted for.
    Please help as to how to map this scenario. For capturing cost of man hours spent, we can include a routing for it in the production order of the sub assembly. But how to eliminate or exclude the material cost. All inputs from your side are appreciated. Thanks in advance
    Regards,
    Chetan.

    Hi Chetan,
    Your scenario has some major issue.
    1. You cannot produce RAW material in SAP.
    2. The cost of material produced inhouse will be different than that of original RAW material.
    3. There will be some cost effect in the final finished product if you consider this inhouse produced material for product costing of finished goods.
    We have similar scenario with my client and here is what I have implemented.
    1. Create a new HALB type part number for the inhouse manufactured RAW material. This will ensure that you assign Routing and BOM to same and can capture the COST for the same.
    2. Creating new material will enure that the product costing for inhouse produced RAW material is done.
    3. You can create single Production order for the same as you only have to capture cost. This depends on your Business scenario.
    4. Once you have inhouse produced raw material, you can create alternate BOM for the FINISHED Material with this new Part number in BOM.
    5. Create Production Version for the two BOM and ask Planner to select the Version 2 if he requires new part number in Production Order. I assume that this case would genrally appear in very small numbers.
    6. Now coming to product costing for final assembly. Since we are going to reuse scrap material to create the new part number, only activity cost and component cost will be used to determine cost. This cost will be less than that of RAW material cost.
    So we always suggest our customer to consider OLD part number to determine the PRODUCT COST of final material. BUT business will have to take a call on this.
    Do let me know if u need any thing else.

  • Can we get the raw materials for a classified Material from MSEG table?

    Hi All,
    Can we get the raw materials for a classified Material from MSEG table using Order number?
    If yes How we can find it out for Past month only? As well how we can get the std price for this raw material.
    Please help me out,
    Thanks,
    Ravi

    Field STPRS (Standard price) From Table MBEW.
    Kanagaraja L

  • Where do the raw materials for the iphone come from?

    I'm doing a school project and I need to know where the raw materials for the iphone come from in order to explain it's role in globalization.
    Thanks!

    "did you ever figure this out?"
    No, he wants people uninvolved with his school project to "figure it out".

  • Raw Materials for a production order

    Hi,
    i am using sap b1 8.81 pl06. i have a Production order or a sales order with some finished product item. i need to know how much we have to prepare as raw materials for this specific PO or SO. is there any report that can give me these infomation. note that my finshed product are composed from semi-finished product as well.
    thanks

    hi all,
    thanks for your support, i found similar query in some sample queries by SAP. with some edition i managed to get what i need. here is the code maybe someone will find it helpful.
    SELECT T0.[Father] as 'Assembly',
    t16.[quantity] as 'BuildQty', t16.[quantity]*t20.[LastPurPrc] as 'Total Price',
    T0.[code] as 'Component1', t10.[ItemName] 'Description1', T0.[Quantity] as 'Quantity1',
    t16.[quantity] * t0.[Quantity] as 'ExtQty1',
    t10.OnHand as 'OnHand1',
    case when t10.OnHand - (t16.[quantity] * t0.[Quantity]) > 0 then 0 else
    -(t10.OnHand - (t16.[quantity] * t0.[Quantity])) end as 'Shortage1',
    T1.[Code] as 'Component2', t11.[ItemName] 'Description2', T1.[Quantity] as 'Quantity2',
    t16.[quantity] * t0.[Quantity] * t1.[Quantity] as 'ExtQty2',
    t11.OnHand as 'OnHand2',
    case when t11.OnHand - (t16.[quantity] * t0.[Quantity] * t1.[Quantity]) > 0 then 0 else
    -(t11.OnHand - (t16.[quantity] * t0.[Quantity] * t1.[Quantity])) end as 'Shortage2',
    T2.[Code] as 'Component3', t12.[ItemName] 'Description3', T2.[Quantity] as 'Quantity3',
    t16.[quantity] * t0.[Quantity] * t1.[Quantity] * t2.[Quantity] as 'ExtQty3',
    t12.OnHand as 'OnHand3',
    case when t12.OnHand - (t16.[quantity] * t0.[Quantity] * t1.[Quantity] * t2.[Quantity]) > 0 then 0 else
    -(t12.OnHand - (t16.[quantity] * t0.[Quantity] * t1.[Quantity] * t2.[Quantity])) end as 'Shortage3'
    FROM ITT1 T0 LEFT OUTER JOIN ITT1 T1 on T0.Code = T1.Father
    LEFT OUTER JOIN ITT1 T2 on T1.Code = T2.Father
    LEFT OUTER JOIN ITT1 T3 on T2.Code = T3.Father
    LEFT OUTER JOIN ITT1 T4 on T3.Code = T4.Father
    LEFT OUTER JOIN ITT1 T5 on T4.Code = T5.Father
    LEFT OUTER JOIN ITT1 T6 on T5.Code = T6.Father
    left outer join oitm t20 on t0.father = t20.itemcode
    left outer join oitm t10 on t0.code = t10.itemcode
    left outer join oitm t11 on t1.code = t11.itemcode
    left outer join oitm t12 on t2.code = t12.itemcode
    left outer join oitm t13 on t3.code = t13.itemcode
    left outer join oitm t14 on t4.code = t14.itemcode
    left outer join oitm t15 on t5.code = t15.itemcode
    left outer join rdr1 t16 on t0.father = t16.itemcode
    left outer join ordr t17 on t16.docentry = t17.docentry
    WHERE T17.docnum = '[%1]'
    order by t0.father

  • I purchased a lightroom 4 on disc several years ago. In 2013 I again purchased the upgrade to Lightroom 5. Later I was sent a free upgrade of lightroom 5. I have all the activation codes for those products. Unfortunately the original disc has been misplac

    I purchased a lightroom 4 on disc several years ago. In 2013 I purchased an upgrade to lightroom 5 via a download. I have all the activation codes. I uninstalled lightroom from my old laptop and now want to download it to my new laptop using windows 8.1.
    Where do I go to download already purchased and paid for copies of lightroom 5. I can put the verification codes when payment is requewsted. HELP!!!

    Lightroom - all versions
    Windows
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Windows
    Mac
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Macintosh

  • Collective requirement for Raw materials for the whole week during mrp ru

    hi gurus,
          I have a requirement like this. the raw materials required for on different requirement dates has to be clubbed together  per week and one single purchase requisition for that raw material for that week. I had created a availability checking group and assigned that to check rule. then attached that in material master mrp 3 view of the material master.
       If i run mrp for that product, it is not clubbing the weekly requirement instead it is clubbing only daily requirement and pr is getting generated.
      can anybody give some valuable inputs so that i can proceed further?
    regards,
    senthil

    Hi,
    Try using the Lot Size: WB.
    With this system wil club together all the requirements and propose a single receipt element.
    Regards,
    Siva

  • Pallet sheet for finished products printed in the not expected printer

    Hello to all,
    I have an issue right now with a user printing pallet sheet for finished products in Z602 printer.  The user wanted it to be printed in printer Z630.  I have checked transaction SU01 and found that the output device assigned to the user is Z630.
    What would be the cause of the documents coming out in Z602? 
    Just to add, the user print the document via transaction CO02, if the person needs more palette sheet then he prints by transaction LT01, and LT16 is just to cancel.
    Many thanks.
    Regards,
    Patvin
    Message was edited by:
            patvin

    Hi Patvin,
    You can try using T.code Co04 and after giving parameter got to Print and do print setting.
    If it solve reward and close this issue
    Thanks
    Bala

  • Ageing for the raw materials.

    Hi All,
    Based on the movement, raw material needs to be analysed for ageing. Reports need to be generated as 30 days, 60 and 90 days period.
    After the good receipt against the purchase order in the store for the Raw materials, we need to take the report for the materials that be in the inventory without any consumption for 30 , 60 , 90.
    do any std report is there in sap
    Thanks
    VRaj

    The below 2 Tcode will help you
    1.MC50 - Dead Stock
    2.MC46 - Slow-Moving Items
    kindly let know if you need more info

  • Is it wise to keep the Nikon camera files "DSC's"  after downloading them and converting to DNG files via Adobe converter for lightroom use. In other words do the DNG files have all the raw data I would ever need in processing or should I save the camera'

    Is it wise to keep the Nikon camera files "DSC's"  after downloading them and converting to DNG files via Adobe converter for lightroom use. In other words do the DNG files have all the raw data I would ever need in processing or should I save the camera's DSC files?

    DNG files do not contain some metadata supplied by the camera, which can be used by the manufacturer's software. Thus, if you don't keep the original Raw photo, you will lose this information.
    If your 1000% sure you're never going to use the manufacturer's software, then this isn't a problem. But who can be sure what software you will be using 10 years from now?

  • Discontinuity and Follow-up Materials for Finish Goods

    Dear all,
    We have used for a long time the Discontinuity functionality and Follow-up Materials for Raw and Packaging materials (components in BOMs).
    We would like to use the same functionalities for Finish Goods, but after setting fields in MRP4 View, it seems not to work as it did for components.
    Is it possible to reproduce the same effect in Finish Goods as we had with components, i.e., use some kind of Discontinuity and Follow-up materials for Finish Goods?
    We currently work with R/3 V.4.7.
    Thank you all in advance for any support.
    Best Regards,
    Alberto

    Dear Alberto,
    If my understanding is correct then this discontinued material concept works only for the components and not for the finished
    product during MRP.
    Discontinuation Data Use
    In MRP, the discontinuation functionality is used to transfer dependent requirements of a component to one or several follow-up
    materials, if the requirements are no longer covered by stock. You can also define a follow-up material in the bill of material.
    Check this link to explore more.
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/b1/c044d1439a11d189410000e829fbbd/frameset.htm
    Regards
    Mangalraj.S

  • Raw material & its finished product link

    Dear All,
    How to get the raw material and its corresponding finished product link from SAP.Can you please provide the T code (if it is there) otherwise please provide the logic.
    Thanks in advance
    Regards,
    Rubin Luke.

    Hi
    You can verify any material at plant level from SAP standard table MARC using SE16N Tcode.
    else use MM03 display material - before entering the material press F4 and choose plant material selection and enter your plant you can see all the materials for that plant. then you can choose your required material
    then using the transaction CS15 - material where used list
    youu can find the FG materials for which thise material is used as component.
    in CS15 enter the material, flag Direct and flag Material BOM
    Hope this helps
    BR
    SK

  • Upload update for Warehouse for finished product in BOM

    Hi everyone,
    Is there a way to update the warehouse for the finished product in BOM using DTW? I can only update the warehouse for the raw materials / components through DTW but not the warehouse for the finished goods, except by doing it manually one BOM after another.
    Thanks and regards,
    Derrick

    Hi Rakesh N,
    I changed the default warehouse then I noticed that only the newly added/uploaded BOM took the default warehouse are the warehouse for the finished goods. The earlier BOMs were not affected by the change in the default warehouse - the warehouse remain as they were when initially uploaded. Is there a way to update the warehouse for the earlier added BOM. we have quite a huge number of BOM and updating them one by one will take too long to complete.
    Thanks,
    Eric

  • What r all the tables used for this report. please reply

    hai,
    what r all the tables used for this report.
    report :
    <b>
    •     Report to display all finished goods that go out-of-stock. Developed a drill down report for materials details (totals and subtotals for material stock values by material group and material type).</b>
    thanks in advance

    hi Ashok,
    Check this out
    http://www.allsaplinks.com/tables.html
    http://www.sapgenie.com/abap/tables.htm
    Regards,
    Santosh

  • Daily Automatic delivery creation for Finished Products

    Dear All,
    As per my client requirement, they need automatic delivery creation when ever the finished products posted(Reached) in to the Finished Products Storage location with out time specification.
    Scenario is like this.
    1.Scheduling agreement will be created for one month or one year for the specific customer with specific products.
    2.After producing the material, from the production line finished products will taken in to the Finished product Storage location with some acknowledgement.
    3.When ever the acknowledgement happen(stock get added) automatic delivery need to be created for that acknowledged quantity with reference the scheduling agreement.
    4.There is no time specification When ever the finished products stock acknowledgement happen automatic delivery need to be created.
    5.There is no quantity specification also what is the quantity at finished products Storage location acknowledged for that quantity automatic delivery need to be created .
    6.If there is no production-->There is finished products -->No delivery should trigger.
    This will be applicable to specific customer and specific material only.
    Please give your valuable inputs as early as possible.
    Regards,
    Murali.

    Dear Rohit,
    1) Who creates the acknowledgement..
    -->Finished Products Storage location people will run this entry when they recieve the finished product from the production line.
    2) How frequently is this acknowledgement created..
    -->When ever receives the finished products from the production line,
    3) Is this acknowledgement a print out or a documetn type.
    -->It is not a print or document type, it is just an Transfer posting entry to add the Finished products qty to the existing stock at that particular storage location.
    4) If it is document type does it appear in document flow.
    -->No it will not come in the document flow.
    I hope it will clear for you,
    Regards,
    Murali.

Maybe you are looking for

  • Vanishing message lists, stalls, and a whole mess of trouble!

    Out of all my apps, MAIL was the most reliable & stable of the lot. Then two days ago, it began behaving el'stupido! This is going to be somewhat thorough, so please bear with me: 1 ''Get Mail'' was taking forever to complete its first retrieval. So

  • Dynamic menus are overlapping. Help needed.

    Hi guys, please help, otherwise I'm going to hammer my head. Dynamic menus are overlapping under in the Main menu > Pearl Academy (here is the site: http://lopearls.businesscatalyst.com/ ) I really don't know how to fix it. Please help.

  • Dought

    what is  the diff bt infopackage  group and process chain

  • Video Flashing while watching

    Whenever I watch a youtube video, it tends to flash/blink while playing the video, I notice it does this in other videos too such as MLB.com. What could this be? Brand New Macbook Pro, literally had this for less than a week. All help is greatly appr

  • Simple SQl statement help needed!!!

    New to SQL..Please can you advice where is the problem.. select file_id, a.file_name, a.sum(bytes/1024/1024) Used_space, b.sum(bytes/1024 /1024) Free_space from dba_data_files a, dba_free_space b where tablespace_name ='DATA_TS' OR tablespace_name='I