Operation Pull supply type at Item/BOM level is defaulted to Assembly Pull in WIP

Hi All,
I have an Item for which supply type is operation pull at item and BOM level, However when I create a WIP job and use this item its supply type is defaulting as Assembly Pull.
Could you please helpe me on this.
Regards,

Sandeep Gandhi, Independent Consultant wrote:
It takes the supply type from the org item record.
Can you double check the supply type on org item?I am also seeing the same behaviour..
I did check at item level too..
Please advise
Thanks
Mahendra

Similar Messages

  • BOM Supply Type - How does it default ?

    Can anyone please tell me how the Supply Type flag under Material Control tab on the BOM form is defaulted ? I have checked the profile BOM: WIP Default component type.
    Scenario:
    1.Created items:
    TEST ATO 1 - Created with template - ATO model, Supply Type=Assembly Pull
    TEST ATO 2 - Created with template - ATO model, Supply Type=Assembly Pull
    2. Created BOM
    TEST ATO 1
    |--- TEST ATO 2
    For TEST ATO 2, the supply type is being defaulted to 'Phantom' and not 'Assembly Pull'
    Suggestions please ?

    Sandeep Gandhi, Independent Consultant wrote:
    It takes the supply type from the org item record.
    Can you double check the supply type on org item?I am also seeing the same behaviour..
    I did check at item level too..
    Please advise
    Thanks
    Mahendra

  • Supply Area-BOM Level by Level

    Hi Folks,
    I am having a problem in fetching the Supply area when a Component is having many sub-assemblies.
    To be in detail,
    I am fetching the  DISTINCT Production Order(AUFNR) from MSEG w.r.t to MBLNR and MJAHR.
    Then w.r.t to this AUFNR I am fetching the BOM category(STLTY) and BOM (STLNR).
    Then w.r.to this STLTY and STLNR I am fetching the Supply area(PRVBE).
    If the supply area is maintained at this level,then fine.If this BOM is having many sub-Assemblies and the supply area is maintained at a different level then we need to explode that BOM step by step and fetch the Supply Area.
    To be precise CS11 gives the Supply Area according to the BOM Level by Level.I just wanna fetch the Supply Area as per that.Do anyone here has an idea about how this functionality can be achieved.
    I am trying to find by debugging CS11,any valuable inputs from experts here will be helpful.
    Thanks,
    K.Kiran.

    Prabhu,
    CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
              EXPORTING
                    CAPID                        = 'PI01'
                    DATUV                       =  v_aufld
                    MKTLS                       = 'X'
                    MEHRS                      = 'X'
                    MTNRV                      = wa_afko-plnbez
                    STLAL                       = wa_afko-stlal
                    STLAN                       = wa_afko-stlan
                    STPST                       =  0
                    SVWVO                     = 'X'
                    WERKS                     = wa_afko-werks
                    VRSVO                      = 'X'
                TABLES
                      stb                           = bom_exp
                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.
    Got it.We missed out DATUV,MEHRS fields while executing.
    Thanks,
    K.Kiran.

  • How to define Shipping Type as Item Level?

    Hello all,
    Currently the Shipping Type field (VBKD-VSART) is defined as Header Level.
    What to do in order to modify Shipping Type as Item Level?
    Many Thanks,
    Barbara

    Hello all,
    I will try to be more clear in my doubt of this tread:
    Current when we create a Sales Order the Shipping Type data (Sls Order/Header/Shipping TAB) is a HEADER LEVEL Data.
    I need to modify that. The Shipping Type data I need to be a ITEM LEVEL Data.
    Reason: In a order with several ITENS. I need to have the possibility of having different types of Shipping Type for each item.
    Shipping Type table/ field name = VBKD-VSART
    Thanks,
    Barbara

  • Does Supplier Capacity Constraint work at Item Category level ?

    Does Supplier Capacity Constraint work at Item Category level (defined in ASL) in ECC plan?

    Raja,
    There is no functionality to support supplier capacity at the "category" level in ASCP. That would be a nice feature, but it does not exist as per 11.5.10 and I've see no enhancements like this for R12 yet.
    You can define supplier capacity only for the specific item-supplier-site relationship via the asl.
    As a workaround, there is a feature to define supplier capacity for an ATO model. This could be a dummy item. Then set each of the items that you want to consume supplier capacity to be an ATO item for that ATO model. This is the only current method to share a given supplier capacity across items in ASCP.
    Kevin

  • Configured Item BOM Structure..

    Dear Techies,
    I am facing a big issue for getting the bom structure for a configured item (configured thr the sales order form)..
    when i use the hierarchial query in this case i get the correct result..
    but my requirement is such that i hve to use the query below..
    however it returns all the options in option class BOM..
    However the ideal thing is that it shld only return the option selected.
    That is i want only the related child items of the configured item (ie the ordered item in our case)
    my query looks as below..
    select a1.a1_item ordered_item, c1.c1_item,c1.c_desc1,c1_type, c2.c2_item,c2.c_desc2,c2.c2_type,c3.c3_item,c3.c_desc3,c3.c3_type
    from
    (select msi.segment1 a1_item,bbom.assembly_item_id a1_asb_id,
    bbom.bill_sequence_id a1_seq_id
    from mtl_system_items_b msi,bom_bill_of_materials bbom
    where bbom.assembly_item_id = msi.inventory_item_id
    and bbom.organization_id = msi.organization_id
    and msi.segment1 like 'XX'
    and msi.ENABLED_FLAG = 'Y'
    and msi.organization_id =123) a1, --returns the configured item details
    (select msi.segment1 c1_item, msi.description c_desc1,msi.item_type c1_type,bic.component_item_id c1_comp_id,
    bic.bill_sequence_id c1_seq_id
    from mtl_system_items_b msi,bom_inventory_components bic
    where bic.component_item_id = msi.inventory_item_id
    and nvl(bic.disable_date,sysdate+1) > sysdate
    and msi.organization_id =123) c1,
    (select msi.segment1 a2_item,bbom.assembly_item_id a2_asb_id,
    bbom.bill_sequence_id a2_seq_id
    from mtl_system_items_b msi,bom_bill_of_materials bbom
    where bbom.assembly_item_id = msi.inventory_item_id
    and bbom.organization_id = msi.organization_id
    and msi.organization_id =123) a2,
    (select msi.segment1 c2_item,msi.description c_desc2,msi.item_type c2_type,bic.component_item_id c2_comp_id, msi.description c2_desc,
    bic.bill_sequence_id c2_seq_id
    from mtl_system_items_b msi,bom_inventory_components bic
    where bic.component_item_id = msi.inventory_item_id
    and nvl(bic.disable_date,sysdate+1) > sysdate
    and msi.organization_id =123) c2, --returns the first level child ie the Option Class BOM
    (select msi.segment1 a3_item,bbom.assembly_item_id a3_asb_id,
    bbom.bill_sequence_id a3_seq_id
    from mtl_system_items_b msi,bom_bill_of_materials bbom
    where bbom.assembly_item_id = msi.inventory_item_id
    and bbom.organization_id = msi.organization_id
    and msi.organization_id =123) a3,
    (select msi.segment1 c3_item,msi.description c_desc3,msi.item_type c3_type,bic.component_item_id c3_comp_id, msi.description c3_desc,
    bic.bill_sequence_id c3_seq_id
    from mtl_system_items_b msi,bom_inventory_components bic
    where bic.component_item_id = msi.inventory_item_id
    and nvl(bic.disable_date,sysdate+1) > sysdate
    and msi.organization_id =123) c3 -- here it returns all the options for bom while it shld return only the related option in respect to the configured item
    where
    a1.a1_seq_id = c1.c1_seq_id(+)
    and c1.c1_comp_id = a2.a2_asb_id(+)
    and a2.a2_seq_id = c2.c2_seq_id(+)
    --and c1.c1_type not like 'ATO'
    --and c2_item not like '%WARRANTY'
    --and c2_type not like 'AOC'
    --and c2_type not like 'PH'
    and c2.c2_comp_id = a3.a3_asb_id(+)
    and a3.a3_seq_id = c3.c3_seq_id(+)
    --and c3_item not like '%WARRANTY')
    --and c3_type not like 'AOC'
    --and c2_type not like 'PH'
    is there any field which can control this unrelated child items to the configured item 'XX'
    Thanks in advance
    Rajesh

    shivjhan,
    You can add sub-ATO to a parent ATO and if the supply type != Phantom, then you can generate indented ATO Item BOM.
    However, the OC does not form a level.
    So if your ATO model is
    Computer ATO
      - Hard Disk OC
          - 250GB
          - 320 GB
    The * BOM looks like this
    Computer ATO*12345
       -- Hard Disk OC
       -- 250GB
    But you can do the following
    Computer ATO
       - Hard Disk ATO
         - Hard Disk OC
             - 250GB
             - 320 GB
    Now the * ATO will look like this
    Computer ATO*12345
    -- Hard Disk ATO*12346
       -- Hard Disk OC
       -- 250GB
      Hope this helps,
    Sandeep Gandhi

  • Configured Item BOM

    Hi guys,
    When Creating Master Item-> BOM Attribute -> Configured Item /BOM
    Can u plz let me know what's difference between following option
    1.> Base on Item Sourcing.
    2.> Routing and BOM are based of Sourcing ?
    3.> Item Based of Model
    4.> BOM Based of Model
    How's its effect to Discrete Mfg / Repetitive Mfg ?
    Thanks in Advance .....

    shivjhan,
    You can add sub-ATO to a parent ATO and if the supply type != Phantom, then you can generate indented ATO Item BOM.
    However, the OC does not form a level.
    So if your ATO model is
    Computer ATO
      - Hard Disk OC
          - 250GB
          - 320 GB
    The * BOM looks like this
    Computer ATO*12345
       -- Hard Disk OC
       -- 250GB
    But you can do the following
    Computer ATO
       - Hard Disk ATO
         - Hard Disk OC
             - 250GB
             - 320 GB
    Now the * ATO will look like this
    Computer ATO*12345
    -- Hard Disk ATO*12346
       -- Hard Disk OC
       -- 250GB
      Hope this helps,
    Sandeep Gandhi

  • Subcontracting multiple BoM levels for Project Stock

    Hi,
    We are an engineer / make-to-order manufacturer, so we use a lot of "individual" type materials (instead of collective).  We are trying to subcontract several BoM levels of work to different vendors, and we are seeing many false requirements.
    So we have something like this (this is all in project / wbs element stock):
    Make hereSubcontract Requisition
    Make hereRaw material
    Subcontract Purchase OrderMake here
    Raw material
    Raw material
    Make hereRaw material
    The subcontracting items are driving additional false MRP requirements (planned orders and purchase requisitions) for all the raw materials under them.
    I figured out how to fix the subcontract on level 3 by transferring the HALB material from project stock to unrestricted stock (411Q), then transferring it to subcontract stock (541) (Is there a better way to do this?  Now I can't see my project-specific stock line for that item).  But, while that purchase order is still open, there's nothing I can transfer to make the extra, false requirements disappear.  Also, I am getting an MRP exception telling me to cancel the PO because it doesn't see the dependent requirement for the subcontract requisition above it.
    Does this question make sense?  How can we fix it?  I need to get that subcontract requisition to see that its material will come from the subcontract purchase order.
    Thanks!
    Timothy

    Hi All,
    Any thoughts or ideas?
    Thanks very much,
    Timothy

  • Contion Type Line Items:EK01

    Dear SAP Guru's,
    What is the Use of Condition type line items in the TC: VoV8
    Sales document : In the billing Tab
    .In the Condition type in V/06 there is no access sequence defined for the same.
    Is it same as the condition type VPRS .
    Assuring for good Points reward,
    regards,
    Amlan Sarkar

    You can carry out costing for a sales document item (item in an inquiry, quotation or an order) to find out the planned costs for this item. This is called sales order costing.
    Sales order costing can be carried out using the following methods:
    Product costing
    Product costing calculates the cost of the sales order item on the basis of the sales order
    BOM. A sales order BOM could be part of a super BOM and the configuration object
    dependencies.
    Unit costing
    Unit costing is used if the system cannot access a sales order BOM. You enter the items to
    be costed manually in unit costing.
    The system determines the prices of the materials and services involved according to the
    valuation variants saved in the costing variant.You can use sales order costing to determine the manufacturing costs and total production costs of a material managed as sales stock. As well as the direct material costs and the direct costs of production, you can also determine material overhead costs, production overhead costs,distribution and administration costs or transportation and insurance costs.
    Sales order costing is controlled mainly via the costing variant. The costing variant is stored in the requirements class as a proposal value. In the requirements class, you also store the costing method and the costing sheet.
    Copying Sales Order Costing to the SD Conditions
    You can copy the results of sales order costing to the SD conditions. Copying can be carried out:as a basis for pricing
    If you want to use sales order costing as a basis for pricing in SD, you can use the
    standard SAP condition type EK01.
    at a statistical level
    You can copy sales order costing at a statistical level, if you do not wish to determine the price on the basis of this costing, but you wish to use the costs determined to calculate the profit margin in SD.
    EK02 is the condition type provided for this in the standard system.You can save the condition type in the sales and distribution document type. If you want to define the condition type with reference to the sales document item, then you can also save the condition type in the requirements class.
    In the requirements class, you can also store a condition type for the transfer of the fixed costs
    proportion of the planned costs. EK03 is the  condition provided for this in the standard system.
    In Pricing, you may want to compare the prices with costs or even implement contribution margin
    accounting.
    To do this, you can use the condition type VPRS as the cost price.
    The condition type VPRS goes into the valuation segment in the material master and determines
    from this the standard price or average price.
    The condition type VPRS is labeled as a statistical condition in the pricing procedure.  Using the condition category G, the condition type VPRS goes into the valuation segment of the material master and determines from here the standard or average price.
    The condition category S always accesses the standard price whereas condition
    category T always accesses the average price.
    The profit margin is determined using the calculation formula 11 assigned in the pricing
    procedure. In this calculation formula the cost price is subtracted from the subtotal of net
    value 2.
    regds
    Jude

  • Order type and Item category group

    Can anyone tell me which is the relation between order type and Item category group from material master ??
    In fact the problem is that I have created a material and when I want to create new sales order it gives me this errror:
    "No item category available (Table T184 ZORDER ZITGR)"
    Is there a tranzaction where I can assign Item category group ZITGR to sale order type ZORDER or something like that??
    What should i do?

    Hi Dan,
    Goto T-Code VOV4 and maintain the table
    Sales Doc type + Item Category Group + Usage + Higher level Item Category = Item Category
    TA + NORM + Nil + Nil = TAN
    If you have Customized your own Document Type and Item Category Group and Item Category then give your
    Sales Doc type (ZORDER)+ Item Category Group (ZITGR)+ Usage + Higher level Item Category = Item Category (ZTAN)
    Reward if helpful
    Regards PAVAN

  • FPINTM1 - Interest calculation on different types of items

    We need to separate or differentiate the interest and posting them using 3 differerent subtransactions as they need to be identified separately. This is because the nature of the items the interest is calculated on are different. So far the system is using the internal transaction of 0040 (Main trans) and 0030 (subtransaction) and we have mapped it to an external transaction. But this appears to be the only option available currently. Is there a way to get the system to differentiate the interest into 3 different subtransactions depending on the nature of the item? Will using different interest key at item level help? Thanks.

    I had a look at the table V_TFKIVV where the internal transactions are stored. So far only the single main transaction 0040 and subtrans 0030 is used for interest calculation in FPI1 and FPINTM1. We need to pay 3 types of interest and indentify them separately depending on the types of items (they have  3 different subtransactions) the interest in calculated on. So far our tests shows that interest on using FPINTM is consolidated under the main trans 0040 and subtrans 0030. Is it possible to split the interest up into 3  the different types or subtrans?
    Eg, we have 3 types of receipts where we have to pay interest on, they are employer contribution, employee contribution and adhoc contribution. We need to calculate interest on these 3 types of contributions. Trans FPINTM1 consolidates interest for these 3 types into main trans 0040 and sub trans 0030 ie, only one type of interest and therefore one GL account. Is it possible to split the interest  into the 3 different types, perhaps into different subtrans to differentiate them? Thanks.

  • Blanket Purchase Order or Contract Purchase Order by item Category level

    Hi
    I have a requirement that Strategic buyers will fill agreement with supplier by item Category level
    Agreement will be on Price level and will have expiration date
    The category level will contain list of items Part numbers which are the same item from technically :
    Our business is on the electronics contract manufacturing and we are producing for Customers from the High Tech industry .In order to keep each customer process and unique
    environment we are coding the item Part # per customer since of that the same electronic component having different part # per customer
    Each night we running MRP run (ASCP) and the Planner release Planned order to request ion
    The requirement is that the purchase requisition will derive the price from the agreement based on assigned Category level and will automatically convert to Purchase order
    Looking for your advise how can this be implemented ?
    Thanks

    When you release the Planned Order for the these buy items the cost coming up in the table PO_REQUISITIONS_INTERFACE_ALL will be the list price for the item from Org level.
    But when you have a BPO created for this item and Sourcing rule is created to have automatic release the releases will have the unit price coming from the BPO.
    Correct me if I understood your question wrongly.
    Karthik.
    Edited by: Karthik Gopaluni on May 21, 2010 11:54 AM

  • Profitability Reporting at Package (BOM) level

    How do other companies address this issue:
    We sell product solutions (packages) consisting of one or more components and for logistics purposes need to process at component level in sales order, delivery, material doc etc.  However from a finance, marketing and customer perspective the product being sold is the sum of the components and so we want to measure profitability at this level.  However costs get posted to FI accounting documents at component level whilst revenue is posted at BOM level.  The package is entered as a BOM in the sales order and are normally fixed components e.g. as below:
                                                       Revenue      Cost
    Package:       DT100                     2000
    Component:     A100                                        100
                            B200                                           50
                            C300                                           50
    Profit= 2000-(1005050) = 1800
    Ideally I need to get a posting that shows the related product package for the component cost otherwise I have to do clever reporting to look back to original sales documents to find related product package to link component costs to.  Does CO-PA assist here or can I just do it in FI accounting in some way.  I also considered using the product hierarchy i.e. the product hierarchy for both component (cost) and product package (revenue) is the product hierarchy for the product package.
    Much appreciate any insights. 
    Happy Xmas and best wishes for New Year

    Have u defined item description in foreign langauge in item master data ?
    Edited by: Jeyakanthan A on Jun 18, 2009 12:50 PM

  • Operation pull material not issued to wip job

    Hi,
    Issue is happening intermittently and not sure of root cause.
    Operation pull components are not issued to wip job when move transactions are performed.
    supply subinventory and locator as in wip job are having sufficient onhand available.
    Can some one please let me know probable causes / setups which I need to verify if some one has faced this kind of issue already.
    Thanks
    Vasudha.

    868134 wrote:
    Hi,
    Issue is happening intermittently and not sure of root cause.
    Operation pull components are not issued to wip job when move transactions are performed.
    supply subinventory and locator as in wip job are having sufficient onhand available.
    Can some one please let me know probable causes / setups which I need to verify if some one has faced this kind of issue already.
    Thanks
    Vasudha.For intermittent issues..i suggest you to log a oracle SR...so that they will enable debug and frd logs..as they are really hard to track and replicate
    HTH
    Mahendra

  • Supplier Invoice with Items without Purchasing

    Hi
    We would like to know if we want to import supplier invoices with items and there is no Purchasing module.
    How items would be validated. Can this be done through item validation org and if yes, what setups are required and in which module.
    Regards,
    Ish

    From above cases, first 3 cases is ok and i know how to process with all CIN related things.But i am little confused in the 4th case.
    Whether we need to mention the tax code in PO?
    1. If no, whether we need to add up the tax amount to the material basic price and then raise the PO?
    2. If yes, how the tax amount postings will be done since we will not be posting the excise invoice in j1iex?
    I think u will require the tax code where the excise duty is captured in inventories like JMIP condition types of excise so that it would get added to stock during GR and during invoice u will pay this tax to the vendor.
    As u donot take credit u don't have to capture the excise invoice as .

Maybe you are looking for