Assigning contract to bom item

Hi,
              We are creating contract with BOM sub item pricing Item category (TAP)and assigning manual condition type to sub item TAN.
And creating order with Same BOM materials sub item pricing and trying to assign contract at header item with item category TAP.
What is the problem here is that Pricing is not carrying out from Contract to Sales order ,when contract been assigned at header item category TAP and expecting price will be changed in sub item with item category TAN where manual condition type set up.
Can any body please help me out what can be done for the price change in sub item when contract getting assigned at header level item TAP.
Regards,
Pavan.

Hi JP,
            I have tried with item category TAE as Main item and TAN as sub item Still contract new pricing is not carrying to Order.
What i am thinking is tht can copying controls will make any difference in this.
Can you give any more options ,which will help me in this.
Thanks & Regards
Pavan

Similar Messages

  • Assign documentation as BOM item in a BOM of Raw material

    Hi Everyone,
    My customer used to assign documentation as BOM item... even for raw material in their old ERP system, that means for raw material, they will also have BOM, the BOM item will be documentation.
    For SAP, normally we assign the documetation to the material master data. If we also assign the documetation as BOM item for raw material BOM... will there be any impact for the other business process?
    Thanks,
    Bin

    Hy,
    Documents are not play any crucial parts in PP Scenarios.I think it is good practice to assign Document to the Materials or BOM.Its provides one type of physical proof/Identity to the Material and Explains the BOM details.
    You can assign Documents to the Raw material as below.
    - Create BOM of Raw material through CS01 and assign Documents over there (Document screen - Item category D).Then assign Raw material to the BOM of Product.You will find Assembly tick for that material in BOM which represent the Documents attached to that Material.
    Regards,
    Dhaval

  • Function module to update operation assignment for a BOM Item

    Hi Group,
    we have a requirement as under:
    Goto BOM Change using CS02->select any BOM item and click the Menu path->Extras->Operation Assignment; and check one or more Operations and then save the transaction.
    The above functionality has to be achieved through an Upload program(using Excel) with a Function module/BAPI to serve our purpose. we already did the functionality upto creation of BOM but could not proceed further on this current requirement.
    Kindly let me know your inputs if you have already worked in such type of requirement.
    thanks in advance for your inputs and let me know if any further info is needed.
    Regards,
    Vishnu

    Hi,
    Check the Bapis for BOM
    BAPI_MATERIAL_BOM_GROUP_CREATE
    CSAP_MAT_BOM_MAINTAIN
    I hope second BAPI will be more usefull for your requirement.
    Regards,
    Goutam Kolluru.

  • Bom item data - Document assignment not getting saved in table STPO

    Dear All,
                  As per out customer requirement, they want to display assigned drawing documents of Bom items in CS11. But it is not reflecting in cs11 eventhough we have assigned documents in Bom item detail overview Document assignment tab page. Moreover this is not getting saved in table STPO.
                   Waiting for solutions
    Thanks & Regards
    Dhananjay Kulkarni

    Please understand my customers requirement,
                               Presently they are assigning drawing document of each mat in material master. And if they want to see the drawing of each component of bom through Bom maintenance then they double click on component in bom, goes to mat master then additional data then document data and then drawing. In this way they need to open minimim 5 windows, which they want to make minimum 2 windows.
              In bom they are having more than 300 components. This is not possible to define document as component with item category D of so many components. One more idea I given to them is to club all drawings in one document and define that document as component with item category D, but in this way they can't identify  the individual drawing with part name.
              One more idea I given to them is to assign drawing document of individual component in item overview - Document assignment tab page from where they can open the drawing but it needs to open minimum 3 windows. So they are ready to assign drawing document in item overview - Document assignment tab page but they want, it should reflect in CS11 document column, from where they can easily open the drawing document.
              One more thing I observed that, assigned document to item overview - Document assignment tab page is not getting saved in Table STPO. I can't see this field content in STPO, which may be the reason that it is not reflecting in CS11.
             Is anything missing from Document management system?
    Please think and reply friends it's Urgent.
    Thanks & Warm Regards
    Dhananjay Kulkarni

  • Batch classification for BOM items

    Hi ,
    I am developing a conversion program to upload the class and characteristics to a BOM item . The class type is a custom class which needs to be assigned to the BOM item along with the class and characteristics value . Is there any FM/Bapi which can create the classtype for the BOM item and assign the class and values . I have tried with the FM 'BAPI_OBJCL_CREATE' but was not successful. Any help would be highly appreciated .
    Sanjeev

    this program can create bom succcess.but add stpu(subitem) ,have some problem.
    REPORT ZPDM_CREATEBOM .
    DATA: i_stko like STKO_API01.
    data: T_STPO like table of STPO_API01 WITH HEADER LINE.
    data: T_STPU like table of STPU_API01 WITH HEADER LINE.
    data: BOM_HEADER like BICSK.
    DATA: return TYPE char100,
    return2 TYPE char100.
    i_stko-BASE_QUAN = 1.
    T_STPO-ITEM_CATEG = 'L'.
    T_STPO-ITEM_NO = '0010'.
    T_STPO-COMPONENT = '52008022702'.
    T_STPO-COMP_QTY = '10'.
    APPEND T_STPO.
    T_STPO-ITEM_CATEG = 'L'.
    T_STPO-ITEM_NO = '0020'.
    T_STPO-COMPONENT = '52008022701'.
    T_STPO-COMP_QTY = '20'.
    APPEND T_STPO.
    T_STPU-POINTER = 20.
    T_STPU-UPOSZ = '0001'.
    T_STPU-EBORT = 'A1'.
    T_STPU-UPMNG = '10'.
    APPEND T_STPU.
    T_STPU-POINTER = 20.
    T_STPU-UPOSZ = '0002'.
    T_STPU-EBORT = 'A2'.
    T_STPU-UPMNG = '10'.
    APPEND T_STPU.*
    CALL FUNCTION 'CSAP_MAT_BOM_CREATE'
    EXPORTING
    material = 'FERT005'
    PLANT = '1000'
    bom_usage = '1'
    VALID_FROM =
    CHANGE_NO = 'ECO200909096'
    REVISION_LEVEL =
    i_stko = i_stko
    FL_NO_CHANGE_DOC = ' '
    FL_COMMIT_AND_WAIT = ' '
    FL_CAD = ' '
    FL_DEFAULT_VALUES = 'X'
    IMPORTING
    FL_WARNING =
    BOM_NO =
    TABLES
    T_STPO = T_STPO
    T_DEP_DATA =
    T_DEP_DESCR =
    T_DEP_ORDER =
    T_DEP_SOURCE =
    T_DEP_DOC =
    T_LTX_LINE =
    T_STPU = T_STPU
    EXCEPTIONS
    ERROR = 1
    OTHERS = 2

  • Problems in assignment of a contract with several Items to orders.

    Hi everyone,
    I have a problem in SD Sales Document Processing :
    I have a contract that contains 2 Items (with the same Material Number)
    I want to assign this contract to multiple Orders by using the transaction 'VA02' :
    Code :
    CALL TRANSACTION 'VA02' USING bdcdata MODE 'N' UPDATE 'S'  MESSAGE INTO wt_mess.
    However, no allocation has taken place !
    Table 'wt_mess' contains no error message !
    It seems that assignment a contract to orders does not work if the contract contains several Items !
    Does someone had the same problem ?
    Thanks & Regards
    Hassan Mounim

    Hi,
        I think u have activated the withholding tax for the whole contract. this can be done at the condition type level also in REFX. use the terms tab in the condition tab in the contract for the same. this should work.
    Regards,
    Deepak

  • No specification is assigned to the material in the BOM item

    hello
    when I want to create or modify certains BOM (cs02), i have this error message.
    It is a warning, but nothing is done in the BOM.
    Where does this error come from ?
    And how to solve it ?
    Thans

    see below the error message :
    Item material 421Z2811-2001 is not assigned to a specification
        Message no. CM_BOMBOS052
    Diagnosis
        No specification is assigned to the material in the BOM item
        00125813-0240.
    System Response
        The system cannot create a composition for the bill of material since
        there is no material-specification assignment.
    Procedure
        Ensure that the items in the bill of material are assigned to one
        specification in each case before the composition is generated.
        Otherwise errors occur during generation and you have to repeat the
        process.
    I Don't know, what is a spécification in a BOM ? Never we have used a "spécification"
    @+

  • Assignment of BOM items to operations in CS01 / CS02

    Hello Sirs,
    How can we assign the BOM items to operations in  transaction codes CS01 / CS02 through path Extras --- Operations assignment.  Currently the option cannot be selected.  Please let me know the solution for it.

    Hi,
    Select the component
    Menu > Extras --Operation assignment
    Select the operation and save.
    This will assign the component to opeartion.
    Option 2.
    Ca02
    Here select the operation and click Compalloc in the menu.
    Now here also you can assign
    Regards,
    Vishal

  • Cost Estimate using Commercial Price 3 of BOM item

    Dear Experts,
    I am trying to create a cost estimate for certain materials using ABC costing variant. The objective is that the cost estimate should pick up Commercial price 3 from the material masters of the BOM item and then calculate cost estimate for the main product (The costing variant has been customized this way). However, for certain main products, the system is picking up the standard price of the BOM item and in some main products it it correctly picking up the Commercial price.
    The BOM items used in the different products are different.
    I am unable to understand this behaviour. If anyone has come across any such problem before, please help.
    Regards,
    Aditya

    hi,
    Check the Valuation variant and the strategy sequence whether you have selected the Commercial price 3 as the first priority and the Standard price as the next priority. If u don’t want the standard price to be picked u remove this in the strategy sequence.
    Further where the system is picking the standard price, possibly the commercial price 3 has not been defined in the material master. Possibly , the system is unable to find the commercial Price 3 and it is fetching the next Price as defined in the valuation variant which is the standard Price.
    assign points if useful.
    regards,

  • Revenue Recognition based on User Status of assigned Sales Order line item

    Dear Community members,
    We have requirement to recognize / de-recognize revenue posted to WBS for calculation of RA, based on the 'User status' of the assigned Sales Order line item.
    To elaborate requirement further -
    1) WBS Element - XXX - 10 ( with operative indicator - Plan/Bill/Account Assign)
    2) Sales Order(SO) Line Items assigned to the above WBS -
    - SO No -  123 Line Item 10 - Actual Rev - $ 300 - User Status - EXE (Meaning this work is in progress , partial payment received thus actual revenue for RA at WBS is 'Zero'
    - SO No -  124 Line Item 20 - Actual Rev - $ 400 - User Status - COMPL(Meaning this work is Complete , all payment received thus actual revenue for RA at WBS is $400
    - SO No -  125 Line Item 10 - Actual Rev - $ 800 - User Status - EXE (Meaning this work is in progress , partial payment received thus actual revenue for RA at WBS is 'Zero'
    As per WBS reports Actual Revenue posted to WBS XXX-10 is $ 1500 ( $300$400$800) , however since two SO line items ( SO 123 /line item 10 and SO 125 / line Item 10 ) are NOT having User status 'COMPLETE', the actual revenue posted by those line items $ 1100/- ($300 + 800)  should not be included as Actual Revenue for RA at WBS level.
    Thus Actual Revenue for RA at WBS XXX-10 should be $ 400 /- ( the revenue posted by SO 124/line item 20 which has user status as 'COMPLETE')
    How do above can be achieved?? Is there any standard solution for this?? Is any SAP Note available for this (I too am looking for one but not found any ) ?? do we need any enhancement , Customer exit etc
    Thanks in advance
    with regards

    Hi,
    Thanks. You are right that the 'Completed Contract Method' would defer revenue recognition. However, the status checked would be of the RA object (WBS Element in this case, as RA key is on WBS and RA is being calculated on the WBS).
    However, our requirement is to check the user status of the Sales Order Line items assigned to the WBS element and filter the revenues posted based on the active user status of individual Sales Order Line item.
    Please give you inputs.
    Thanks in advance
    With regards

  • How to restrict other plant material assigned to SA BOM explosion

    Dear Experts
    One of our client havea issue of assigning wrong material to the scheduling agreement BOM explosion.
    Actually there are two different plant code one for manufacturing plant and another one trading.Subcontractor activity will be carried out in trading plant , but users assigning the BOM components from manufacturing plant material.
    So they are sending material to vendor from manufacturing plant and receiving material to trading plant.But finance guy don't want do like that.
    How to restrict other material (material not part of SA plant)assignment to SA BOM explosion
    Thanks in advance
    Regards
    SS

    Thanks for your reply.
    In BOM creation CS01 , if plant is differ from header to line item system will give error message M3 351
    "Material &&&&&& not maintained in plant &&&&".
    Like that i want to make it in ME38 BOM explosion also.If plant is differ from scheduling agreement line item to BOM line item system should give error message.
    For the above scenario I need the solution
    SS

  • You should run a new contract selection for item 0000000010

    Hello Friends
    i am trying to create a service request from WEB IC by confirming Account and Ibase and able to create without error.
    if i end session and open the service request in change mode and if delete the ibase and save, then appeas the below message
    "You should run a new contract selection for item 0000000010", going through OSS notes, but found nothing.
    Transaction type ZXXX : we set
    Contract Determination is set to 'E' : Assign at Item leve : Assign immediately if unique for .
    if i open the service ticket in CRMD_ORDER and go in change mode if i click process action button next to error, this will disappear. but it comes when i assing a ibase to the request, so its working only when i first create without errors.
    users do not use crmd_order to process error and WEB CI does not have process action feature.
    any sort of help will be appreciated.
    Thanks
    Gopi

    Hi Gopi,
    Which release are you using ?
    This message appears when you change any field in the service ticket which has an influence on contract determination, such as ibase, ibase component, line item, ...
    As of CRM2007 we have enabled a hyperlink for this message. Clicking the hyperlink will re-execute the contract selection.
    Regards
    Gert

  • Assign contract in BAPI_SALESORDER_CHANGE

    Dear Gurus,
               I'm working on changing the sales order through 'BAPI_SALESORDER_CHANGE', my requirement is to assign the contract item pricing to specific item in sales order.
              Assign contract is possible when you go thru va42  transaction  but I'm not really aware what parameters to be passed into 'BAPI_SALESORDER_CHANGE' to meet my requirement.
              Pls help me.
    Regards,
    Suresh Deshpande.

    Hi
    You should transfer the same data you use in VA42:
    so:
    SALESDOCUMENT:   order number
    ORDER_HEADER_IN: the header data you need to change
    ORDER_HEADER_INX: here set the flag of the field you need to change.
    For example you need to change purchase order date:
    ORDER_HEADER_IN-PURCH_DATE = <new date>.
    ORDER_HEADER_INX-PURCH_DATE = 'X'.
    You have to do the same for the item data (tables ORDER_ITEM_IN and ORDER_ITEM_INX) and the other data.
    Anyway this fm uses fm SD_SALESDOCUMENT_CHANGE using business object BUS2032.
    Check if your document type belongs to this object:
    use fm SD_OBJECT_TYPE_DETERMINE.
    If your type order doesn't belong to this object yuo can try to use directly fm  SD_SALESDOCUMENT_CHANGE.
    Max

  • Central Contract Distribution - line items creates many contract in the BE

    Hi SRM Gurus,
    We are in SRM 7 ECC 6 Ehp 4 PPS.  Ext Classic.
    First of all, CCTR - Central Contract can't be distributed as per SAP for PPS impl. 
    But we have a workaround. 
    We made snote 1354971 read with 1423994 implemented. Made the process work.
    Means Assign distribution on the item level was enabled and Distribution reached BE.
    But when we have multiple line items in the Central Contract, and we assign distribution, it creates one contract per line item in the Backend which is really absurd.  Which means if you have 100 line items, its creating 100 contracts.  When we do the call-off against this central contract, we have multiple contracts.
    Gurus, Can you guys throw some light on this entire issue.
    with regards,
    Freemind

    We are having nearly exactly your scenario and CCTR works fine with 1 distributed contract containing multiple items. Check if all the items are distributed to the same purchasing org and location. If all is the same, debug BBP_PD_CTR_TRANSFER with your SRM contract GUID to see when and how multiple contracts get created in ECC.

  • Sub-contract without BOM

    Hi
    How to create sub-contract without BOM..We want to create a subcontract for a customer return finished product .Even this Product have bom.We don’t want to send any components with the FP.We want to send some service materials with this FM.How to do this in SAP?
    Thanks
    Nick

    hi Nick,
    have not tried in one company code, any way you can try this with creating another plant as subcontracting vendor & process in the same way how you process for sub contracting.
    1) Create plant as sub-contracting vendor
    2) create po with item category L
    3) send components
    4) receive materials.
    but since it is within a company code check for legality involved with FI, you can customize special transaction key for this may be with movement types since it is within a company code, that is the reason i asked you is it within a co.code
    Regards
    Ranjit

Maybe you are looking for

  • Getting error while starting the weblogic sewrver

    starting weblogic with Java version: java version "1.6.0_29" Java(TM) SE Runtime Environment (build 1.6.0_29-b11) Java HotSpot(TM) Client VM (build 20.4-b02, mixed mode) Starting WLS with line: /u03/disc/Oracle/Middleware/jdk160_29/bin/java -client -

  • When trying to send a message an error says phone not registered in imessage.

    When trying to send a message from my ipad some numbers say not registered with imessage. How do I register a number?

  • I need urgent help! IPOD nano...

    Hello people. Let me start off by explaining the condition of my IPOD nano. It's already been a year since I cracked its screen and 80% of it is now black and the remaining, sadly, only shows the white areas of the screen. So basically, with the scre

  • Marketing attributes creation/update from ELM

    Hi Experts. A small question regarding the external list management. I have created a mapping format with some marketing attributes I want to create/update for a certain business partner. This works fine in the sense that the system is fully capable

  • Changing account name affects Time Machine?

    Hi, I would like to change the account name of the main user (it currently has the generic name "admin") according to Apple's instructions. I was wondering though if and how this will affect Time Machine. The full name (editable via the user & login