Quantity dependency in BOMs

Hi there,
I'm trying to solve an issue about a BOM. When i enter a sales order for a material with an assigned BOM, all the subitems from the BOM is shown in the sales order. I save the sales order and makes a delivery.
When someone does the picking, they enter 0 for the header item as no materials are on stock. The rest of the materials on the BOM should change to 0 as well. This doesn't happen and i can't seem to figure out if there is a standard functionality to make this dependency.
This means that that the customer gets an invoice containing the subitems but not header items.
I hope someone is able to help me.
Regards Jakob

I had to make a delivery group for the BOM, and this helped with the dependency.

Similar Messages

  • Why CK11N consider Scrap even if activity formula isn't quantity dependent?

    Dear guru ,
    i have a finished material that have a component in the bill of material with a component scrap. This component is a semi-finished material that have an operation in the routing with a work center with a formula key for the calculation of costs of the work center’s activity type not dependent of quantity , it’s only dependent of time machine.
    If I run CK11N for this finished material and I see the Material Cost Estimate with Quantity Structure View , for the resources involved the system consider the quantity and value added of component scrap in percent.
    But the formula key for the calculation of costs of the work center’s activity type not depend of quantity , why CK11N consider the component scrap even if activity formula is not quantity dependent ?
    Thanks for your help

    Hi ,
    System will include the cost Component scrap while doing cost estimate.
    Since u have assigned  component scrap % at BOM, u are declaring , that much amount of extra components are  need to produce FG & cost of same will be included in production also.
    Without qty dependent , how system will calculate the Total time for the operation.
    For Ex,
    Operation qty = 10 nos
    Process time = 1 hr / Nos
    Activity cost for process = 100 USD/ Hr.
    Total activity cost for that operation is = 1 * 10* 1000 = 10000 USD.
    Letus know the costing  formula u have  assigned for Activity type at workcenter.
    Pradeep

  • OSS notes for MB1B in checking Amount and Quantity depending on the mat. #

    Dear All:
    Where can i download OSS notes in MB1B for  checking the amount and quantity depending on the material number?
    Thanks,
    CHOCO

    Hi ,
    We are not getting what you mean to say.
    But as far my understanding of your query I am giving the reply.
    OSS notes can be download at the tcode SNOTE.
    Pls go to the tcode SNOTE-> GOTO ->DOWNLOAD SAP NOTE.
    here you need to give the sap note number.
    To get this number you first need to search in service.sap.com and find the relevant note that is useful for ur scenario.
    And after finding that note and we need to give this number in SNOTE tcode and we need to download.
    Pls tell me your requirement clearly so that i will try to find a oss note for you.
    Pls get back to us for further assistance . Happy to help you.
    Regards,
    Viveks

  • Quantity mismatch in BOM

    Hi Guys,
    I have Configured a BOM as pricing on main item(Erla).
    But when i am trying to change the quantity in delivery the sub item Quantity doesnt changes.
    For eg: If in order i have ordered 5 quantity, So the bom is getting exploded with a right quatity according to the main items.
    But in delivery when i change the quantity of main item due to any reason, but the subitem quatity doesnt changes with the change quantity in the main item.
    Will Appreciate your inputs
    Regards
    Vivek Pareek

    But when i am trying to change the quantity in delivery the sub item Quantity doesnt changes.
    Hello Vivek
    First of all in BOM, in case of ERLA the Item category is TAQ and TAE and in case of LUMF they are TAP and TAN from main item to sub item respectively.
    In VOV7 the structure scop is A means explode single leve BOM and if you require you can also choose for multi level BOM.
    The one thing you might have missed is ticking the "Manual Alternatives" and I think by doing this you would probably be able to change.
    In VOV6  CP  for TAQ and CT for TAE can you see tick mark for "Item relvent for delivery".
    If you still have difficulty, please revert back to me.
    Regards,
    Sridhar.

  • Calculation of scrap quantity in multilevel BOM

    Hi Gurus,
    Can some one explain me how the system calculates the Scrap quantity in multilevel BOM.
    Thanks in advance.

    Answered.

  • Deletion of Object Dependency in BOM

    Hi All,
    I am trying to delete the Object dependency from a BOM using the Function Module "CUKD_API_ALLOCATIONS_MAINTAIN". After executing it, the Object is getting deleted but the Bulb like symbol for Obj(Object Dependency) in Transaction CEWB is not disabling. Please help me in this.
    Thanks
    Vinay

    Solved

  • Error in component quantity while exploding BOM

    Hi
    We are facing error while exploding BOM
    i.e. the component quantity is 11.111 YD  in cs03
    but while exploring in CS13 we are getting component qty as 12 YD
    Note : there is no rounding value maintained in the material master 
    waiting for your valuable response
    Regards
    Barla

    Hi Barla
    Check the field "Roundoff" in transaction OS29, and maintainted it  "1"
    Regards

  • Fixed material code and quantity in every BOM

    Hi All,
    I have a requirment of adding a fixed material code to every BOM. This means that whenever the user creates a BOM, that fixed material comes by default with fixed quantity and the user will not be able to modify or delete that material.
    Is there any way in to do this. Please advise
    Thanks & Regards
    SAPXPT

    Hi,
    i think sap standared not provide the same u need to do some exit .
    Contact Abaper.

  • What will happen if I enter 1.5 PC quantity when creating BOM

    for business purpose my quantity can have decimal conditions
    if I created one BOM using CS01 and put 1.5 in quantity field, unit I put PC it will give warning but still I can save it.
    will this affect in later process like production purchasing and accounting.

    Dear,
    System is displaying a warning message since the units "piece" and "EA" cannot have decimels in real world.These UOM should be a whole number.
    May be we can adopt other UOM which is apt.
    Regards,
    Joseph Charles Vaikathussery

  • Decimal places in quantity depending on currency

    hi
    i m doing an alv list display in which i need to display a quantity field with 3 decimal places for some currencies, but for one particular currency such as 'AED'
    that field should display only 2 decimal places in the output.
    regards
    Zarina

    Hi Zarina,
    Populate decimals_out with 2 for this field while building the fieldcatalog.
      g_t_fieldcat-decimals_out = 2.
    Note: don't declare the field as currency which will overwrite above setting.
    i.e., don't use g_t_fieldcat-cfieldname in this case.
    ==============================================
      g_t_fieldcat-seltext_s =  'USD Equi'.
      g_t_fieldcat-seltext_m =  'USD Equi'.
      g_t_fieldcat-seltext_l =  'USD Equivalent'.
    g_t_fieldcat-cfieldname = ' '.
      <b>g_t_fieldcat-decimals_out = 2.</b>
      g_t_fieldcat-just      =  'R'.
      modify g_t_fieldcat index zindx.
    ==============================================
    Hope this helps you.
    Regards,
    Vicky
    PS: Award points if helpful

  • Select quantity depending on style # choosen

    HI,
    I have a drop down menu with 2 style numbers: 2602 and 2622
    If the client choose 2602, then the number 20 gets written in the next field.
    If the client choose 2622, then the number 40 gets written in the next field.
    I assume the field that has the quantity (20 or 40) would have to be read only so nobody can change them.
    What would be the script for that (and where should I put it)?
    Thanks.

    George_Johnson wrote:
    You could use a custom calculate script for the text field. It would get the value of the combo box and set the value of the field (event.value) based on which item was selected.
    Thanks George, but I wish I could write a script like that.
    By that I mean that I don't know what the script should be.

  • Quantity needed in bom

    hi pp gurus
    I hav one semifinsh mat. core for this I required sand as 0.0998
    so how cai i maintain
    regards
    Dev

    Hi Dev,
    you can create bom for CORE with sand as its component.
    while doing that maintain the base Qty of CORE in BOM header.
    and component Qty in ITEM OVERVIEW screen.
    if you ratio is for 1core you req. .0998 Sand
    the base Qty of Core will be 1 and component qty will be 0.0998
    take care of units in this mainain converion formula IN SYSTEM if UOM is different for both...
    Regards
    Hemant

  • Dicount condition multiplies with quantity in sales bom(quotation)

    hi,
        i am trying to create a quotation for a sales bom(va21) while i give condition type rb00(discount value) as a header condition (eg.rs 50) it multiplies with no of line items(eg. 10 line items) in the sales bom and gives and shows my discount as rs 500 rather whereas its only rs.50 for the entire document, and also for regular materials if i have 2 different line items. need help .
    regards
    leo

    Hi Cond type:RB00 is header/item conditon
    means, it can be entered manually at the header level & this amount will be copied to each line item.
    if you want Rs.50 is for entire doc-
    then use the group condition/header cond. - Cond type:HB00
    this will solve your prob-
    RB00 acting properly as desired.

  • Select quantity depending on style # choosen – Part 2

    HI,
    I have a drop down menu with 2 style numbers: 2602 and 2622
    If the client choose 2602, then the number 20 gets written in the next field.
    If the client choose 2622, then the number 40 gets written in the next field.
    What would be the script for that (and where should I put it)?
    Thanks.

    OK, now there is a problem.
    When I hit the button to clear all fields, the combo box and the related text field don't clear.
    My script to clear the form is: 
    if (app.alert("Do you really want to clear all fields of this form?", 2, 1) == 1)
      this.resetForm();
    I've got another combo box in that Form and it clear fine (that one has no Export value attached to it).

  • Need FM to bring BOM explosion and quantity

    Hi,
    I'm using FM CS_BOM_EXPL_MAT_V2 to bring BOM explosion, but this function doesn't return the correct quantity like VA01 when I enter the main material and its order quantity.
    Does someone know any other function to explode BOM material and return each quantity, depending the main material order quantity entered?
    My codes are:
        CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
          EXPORTING
            capid                 = 'SD01'
            datuv                 = sy-datum
            emeng                 = w_qtd
            mtnrv                 = material-matnr
            werks                 = material-werks
          TABLES
            stb                   = gt_stb
          EXCEPTIONS
            alt_not_found         = 1
            call_invalid          = 2
            material_not_found    = 3
            missing_authorization = 4
            no_bom_found          = 5
            no_plant_data         = 6
            no_suitable_bom_found = 7
            conversion_error      = 8
            OTHERS                = 9.
    Thank you.
    Chang

    Hi a®s,
    The only difference in putting MEHRS ='X'. is the function returns multilevel of part list. The function still doesn't return the quantity based on main material order quantity like VA01 (salesorder create) does.
    Thank you anyway.
    Chang

Maybe you are looking for

  • Final cut pro not exporting to youtube?

    Final cut pro isnt exporting to youtube? why is this and what can i do to fix it? Also says keyword: too_long ?

  • Ask about import and instruction which i don't understand.

    Hi, I am very new to java. please help.. I want to run some example in some sites i found. but some time i found that the sample requires or need me to download the included library in order to run the code successfully while i don't know what, how a

  • Not able to connect to oracle database 11g from application server10g

    Hello, I have installed oracle database 11g. We are using forms and report services through application server 10g. I have add required entries in tnsnames.ora file. But I am not able to connect to database. I am getting following error: ORA-12514-TN

  • CJI3 missing Personnel Number

    Hi Friends, Whenever we run CJI3, we get the Personnel Number, but for the last 1 month, we could not see this field any more in CJI3. Do you know what should be wrong? FYI.... I've brought all fields in using 'change layout' icon, but still could no

  • Com.sap.isa.businessobject.BORuntimeException: No entry for User Business O

    Hi all, Kindly be informed that I get the following error while logging on to the B2B webshop from the B2B portal. Your thoughts on this would be greatly appreciated. com.sap.isa.businessobject.BORuntimeException: No entry for User Business Object fo