.   Is it possible to create condition record in both CRM as well as in R/3

hi,
.   Is it possible to create condition record in both CRM as well as in R/3?  Explain in more details.
Regards,
babu

Hi Babu,
No. You cannot create condition records in CRM when back end is R/3.
Condition records should be created in R/3 and replicated to CRM.
You cannot extend condition records in CRM.
Reward the Points.
Thanks,
Srini.

Similar Messages

  • Is it possible to create info record without material number

    Hi all,
    Is it possible to create infor record without material master and what is the importance of the field Info update in PO.
    Thank you for the help.

    Hi,
    1.Yes you can create Info record without material no. but you have create it for material group.Go to ME11 and only enter vendor ,Purchasing organization , and Plant don't enter material no.. and again enter maitain material gruop and require data for Material group.
    2.Info Update indicator -
    Info record update
        Determines whether the prices and conditions of this purchase order ite
        are suggested in future PO items.
    Use
        Selecting InfoUpdate causes one of the following situations to occur:
            -   If just one info record (with or without plant) exists, it is
                updated.
            -   If no info record exists and "plant condition requirement" was
                specified in Customizing, an info record with plant is created.
                Otherwise, an info record without plant is created.
            -   If two info records exist (that is, one info record with plant
                and one without plant) the info record with plant is updated.
    reward if helpful,
    Regards,
    Chetan.

  • Error while creating condition record

    Hi
    Am using 4.7 and creating condition record while saving condition record am getting error NO UPDATE SERVER FOUND FOR CONTEXT E, So am stuck up and do not know whom to contact is it error for BASIS? or related with SD kindly help.
    Thanx

    Hi Mukesh
    As you are getting error NO UPDATE SERVER FOUND FOR CONTEXT E,  while saving the condition record, kindly consult your BASIS consultants and ask them to check wheather the pricing related  tables and structures  have been copied and uploaded properly or not.
    Regards
    Srinath

  • FM for creating Condition Records

    Is there FM for creating Condition Records for output type like transaction VV11 (Create Output - Condition Records: Sales)

    Hi there,
    FM for condition records? Why do you want to think of a FM for creating conditon records?
    Condition records is a master data that has to be manually created as per the business requirement.
    But what we can do is that if the data ia existing in an external legacy system, we can migrate that into SAP through a BAPI / BDC or LSMW depending on the volume of data.
    But in other cases condition records are manually created in SAP system.
    If at all you have a function module to create condition records, how would you ensure that it feeds correct data into the condition records? What key combination would the system take & what data would you want the FM to upload?
    How will you monitor what data is uploaded,.
    Regards,
    Sivanand

  • Creating condition records in product

    hi,
    I am trying to create condition records for a product.For a sales order (TA) i create, the pricing procedure determined is RVCXUS. But i dont see any of the condition type which matches condition type for a product (in F4) and condition type maintained in RVCXUS.
    Please let me know where from the condition type(in F4) comes in a product. It will not include all condition type we see in spro?
    Regards,
    Rahul

    Hi Rahul,
    To see a particular codition type in F4 help, you need to assign your "condition type/(s) in pricing procedure" to condition group being used for your application area. try following:
    1. check condition group being used to the application SAP CRM in SPRO > Customer Relationship Management> Master Data>  Products>  Special Settings for Sales Operations-->  Assign Condition Group to Application CRM
    2.Assign the condition types in your pricing procedure to the above condition group by choosing SPRO>Customer Relationship Management> Master Data  --> Conditions and Condition Technique --> Condition Technique: Basics  Create Maintenance Group
    Let me know if this works....!!
    Best Regards,
    VIshant Jain

  • Create condition record with reference to existing condition record

    how to create condition record with reference to existing condition record?

    Hi,
    See this link :
    http://help.sap.com/saphelp_47x200/helpdata/en/de/7a8534c960a134e10000009b38f83b/frameset.htm
    You can create with reference with Tcode : VK14 (or VK34)
    Or in VK12, you can copy condition records with copy rules.
    Regards,
    Lionel

  • BAPI or FM to Create Condition Records (VK11)

    Hi!
    Is there a BAPI or a FM (or something else) to create condition records in the same way as with transaction VK11 (or XK15)?
    I am aware of the LSMW program RV14BTCI (althought never have used it).
    Thanks!
    Kind regards,
    Igor

    Hello Igor,
    It's not trivial, but let's have a try. Use transaction SALE to get into the ALE business. Then option Modeling and implementing Business Processes -> Maintain distribution model.
    Get into change mode and create model view (any name will do). Then selected the newly created node and Add message type. Here you have to enter the sending and receving system and the message type (COND_A).
    Afterwards select the node and then via menu Environment->Generate partner profiles execute the partner profile will be generated automatically.
    Now you are able to send a condition records from system A to B.
    Regards,
    John.

  • Creating condition record by uploading

    Hello all,
    I am using FM BAPI_PRICES_CONDITIONS to create condition record.
    But its creating the record even if i gave the invalid details ( like invalid material number,...).
    Can you please tell me how can i handle the errors using this FM.
    Thanks in advance.
    regards,
    Lokesh

    hi..
    This code snippet inserts a condition record for Pricing condition type Z123 with key sales order
    and line number.
    CONSTANTS: lc_kschl_z123 TYPE kscha VALUE 'Z123'.
    DATA: lv_datum TYPE sydatum,
    lv_count TYPE kopos,
    lv_unit TYPE kpein,
    is_bapicondct TYPE bapicondct,
    is_bapicondhd TYPE bapicondhd,
    is_bapicondit TYPE bapicondit,
    it_bapicondct TYPE STANDARD TABLE OF bapicondct,
    it_bapicondhd TYPE STANDARD TABLE OF bapicondhd,
    it_bapicondit TYPE STANDARD TABLE OF bapicondit,
    it_bapicondqs TYPE STANDARD TABLE OF bapicondqs,
    it_bapicondvs TYPE STANDARD TABLE OF bapicondvs,
    it_bapiret2 TYPE STANDARD TABLE OF bapiret2,
    is_bapiret2 TYPE bapiret2,
    it_bapiknumhs TYPE STANDARD TABLE OF bapiknumhs,
    it_mem_initial TYPE STANDARD TABLE OF cnd_mem_initial.
    lv_datum = sy-datum.
    lv_count = 1.
    LOOP AT gt_vbap INTO wa_vbap.
    * BAPI Structure for Condition Tables
    is_bapicondct-operation = '009'.
    is_bapicondct-table_no = '700'.
    is_bapicondct-applicatio = 'V'.
    is_bapicondct-cond_usage = 'A'.
    is_bapicondct-cond_type = lc_kschl_z123.
    "Set the varkey from A700 table key fields
    CONCATENATE wa_vbap-vbeln wa_vbap-posnr
    INTO is_bapicondct-varkey.
    is_bapicondct-valid_to = '12/31/2009'.
    is_bapicondct-valid_from = lv_datum.
    is_bapicondct-cond_no = '$000000001'.
    **** BAPI Structure of KONH with English Field Names
    is_bapicondhd-operation = '009'.
    is_bapicondhd-cond_no = '$000000001'.
    is_bapicondhd-created_by = sy-uname.
    is_bapicondhd-creat_date = sy-datum.
    is_bapicondhd-cond_usage = 'A'.
    is_bapicondhd-table_no = '700'.
    is_bapicondhd-applicatio = 'V'.
    is_bapicondhd-cond_type = lc_kschl_z123.
    is_bapicondhd-varkey = is_bapicondct-varkey.
    is_bapicondhd-valid_to = '12/31/2009'.
    is_bapicondhd-valid_from = lv_datum.
    *** BAPI Structure of KONP with English Field Names
    CLEAR is_bapicondit.
    is_bapicondit-operation = '009'.
    is_bapicondit-cond_no = '$000000001'.
    is_bapicondit-cond_count = lv_count.
    is_bapicondit-applicatio = 'V'.
    is_bapicondit-cond_type = lc_kschl_z123.
    is_bapicondit-scaletype = 'A'.
    is_bapicondit-scalebasin = 'B'.
    ADD 1 TO is_bapicondit-scale_qty.
    is_bapicondit-calctypcon = 'B'.
    lv_unit = wa_vbap-kwmeng.
    is_bapicondit-cond_p_unt = lv_unit.
    is_bapicondit-cond_value = wa_vbap-value.
    is_bapicondit-condcurr = wa_vbap-waerk.
    APPEND: is_bapicondct TO it_bapicondct,
    is_bapicondhd TO it_bapicondhd,
    is_bapicondit TO it_bapicondit.
    ENDLOOP.
    *** BAPI for pricing Condition Records
    CALL FUNCTION 'BAPI_PRICES_CONDITIONS'
    TABLES
    ti_bapicondct = it_bapicondct
    ti_bapicondhd = it_bapicondhd
    ti_bapicondit = it_bapicondit
    ti_bapicondqs = it_bapicondqs
    ti_bapicondvs = it_bapicondvs
    to_bapiret2 = it_bapiret2
    to_bapiknumhs = it_bapiknumhs
    to_mem_initial = it_mem_initial
    EXCEPTIONS
    update_error = 1
    OTHERS = 2.
    IF sy-subrc EQ 0.
    WRITE: /1 'Return Messages for Condition create'(t03).
    LOOP AT it_bapiret2 INTO is_bapiret2.
    WRITE: /1 is_bapiret2-message.
    ENDLOOP.
    ULINE.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    wait = 'X'
    IMPORTING
    return = is_bapiret2.
    ENDIF.

  • Two valid condition records loaded in CRM

    Hi
    I had created condition records for one of my condition type in SAP R/3 which were loaded into SAP CRM system.  Now when new condition records are created for the same condition type then old condition records in CRM are not terminated. So I have two condition records in R/3 but the old one is no more valid but CRM system has two conditions and both are valid. Now when an order is created in CRM then the condition type has two values summed up.
    How can I resolve this issue so that when a new condition records is created in R/3 then the old conditions in CRM are terminated and the new conditions are only valid?
    Thanks for your help
    Regards
    Javed

    Hi Anji,
    have you checked the condition maintenance groups for your condition type in CRM? In addition to the step you did in MNTNCT you need to assign your condition types in CRM to a condition maintenance group to allow maintaining them in CRM.
    You also need to assign that maintenance group to the context you want the conditions to be maintened in. All that can be found in SPRO in CRM under master data.
    Try if that helps you.
    Best regards,
    Manuel

  • Error while creating condition record in qc15?

    Hi all
    I have  selected QCA1 and selected material and customer and trying assign E22 but then getting an error " No released version found for specified selection E22"
    kindly suggest me the solution on this
    regards,
    sanju

    Hi Yogini,
    I have crated a new profile , an created a condition record also with respect qca1 and assigned this profile.
    how to make use of this profile further?
    regards,
    Sanjana

  • Configure/create condition records to send out copy of PO to vendor

    Hello,
    I am trying to create a condition record / or configure the system with the objective to send out the PO copy automatically, either in pdf or doc format, to the vendor on saving the PO. Please help in the set up of the same with the steps or idea on how to do it.

    hi
    You need to do some configuration for this.
    u2022     Go to NACE.
    u2022     Select EF and click on OUTPUT TYPES.
    u2022     Then select Output Type NEU and click on processing routines .
    u2022     In that you have to add a new entry - medium 5 .
    u2022     Then you need to assign a program, form routine and form.
    u2022     You can use the standard program i.e. SAPFM06P, FORM routine is always ENTRY_NEU and standard MEDRUCK.
    u2022     Then in PARTNER FUNCTION you need to add a new entry : medium - 5 and function - VN .
    u2022     For subject of the mail go to Mail Title and Texts. In title give PO No. &EKKO-EBELN& .
    u2022     Under General data -> Replacement of text symbols give programme as SAPMM06E and Form Routine as TEXT_SYMBOL_REPLACE.
    u2022     Now the subject will be PO No. 1800004202.
    u2022     You need to maintain your email id in tcode SU01 and also the vendor's email id.
    u2022     Now while creating a new purchase order , change the medium to External Send .
    u2022     Then goto Communication Method and select CS01. ALSO make sure that the Cover Page Text has value PO No. &EKKO-EBELN& .
    now in further data select send immidiately
    now save and chck ur output message in transaction SOST
    u2022     Use note no 191470

  • Function Module for creating condition record (XKOMV table record)

    Hi,
    I have a requirement as like below,
    In the repair order i need to sum the GRWR condition type's  conditional values for all the line items (Except deliverable line item) and then i need to create an condition type GRWR under the deliverable line item with the above calculated conditional values,
    the table XKOMV will be having details about all the line item's condition types, in this table i need to add one more new record with the condition type of GRWR and the above calculated conditional values under the deliverable line item.
    for the above logic i am using the user exit
    USEREXIT_SAVE_DOCUMENT_PREPARE
    All the above things need to be done when the user click the save button in the transaction (VA01/VA02).
    Problem here is table XKOMV contains somany fields so manually we can't create xkomv record, is there any Function module to create condition type record?
    Regards,
    Manikumar
    Edited by: Manikumar Shanmugam on Mar 8, 2008 3:53 PM

    Hi,
       You can use Function module PRICING_CHECK to check condition record. Do a where-used list on it to see how to call it.
    Regards
    Kiran Sure

  • Use of Condition update while creating Condition Records

    Hi Experts,
    I have to maintain MRP for a product which will be applicable for only 1 particular order. after which system should pick up old MRP.
    By using CONDITION UPDATE feature , i have tried to do it , but once maintained , its always picking new MRP for every order.
    (If it being a record where only new price to be defaulted in one order and no need to create 2nd order , this is ok ., but not in my case)
    Can any one suggest me how to go with this
    Thanks in advance,
    Jignesh

    Hi,
    This can be done using the CONDITION UPDATE
    In the condition type check the CONDITION UPDATE AND SAVE IT
    While creating the CONDITION RECORDS, maintain the values and click ont he ADDITIONAL DATA (F7) then maintain the value in the field MAXIMUM NUMBER OF ORDERS , PUT The sales order as 1.
    Then try
    Please revert if you need further details
    thanks,
    santosh

  • Bapi to change/create condition record

    hi,
    is there a bapi to change/create a condition record? haven't found anything yet!
    regards jacko

    hi,
    Please find the suggested steps in this....
    BAPI for VK11,VK12,MEK1,MEK2
    Regards,
    Richa

  • Create Condition Record - VK11

    Dear All,
    My Requirement is when we maintain the Condition Record with Validity Dates - From and To .  it should trigger the workflow and once approved then the Condition should be valid.
    is there any way we can achieve it.
    Appreciate your time.
    Thanks and Regards
    Mahesh

    Hi,
    While creating the condition record in VK11,click on Key combination.Identify your condition table/access.
    Goto the path:
    SPRO>Sales and Distribution>Basic Functions>Pricing>Pricing Control-->Define Condition Tables.
    Goto "Display Condition Tables".Press F4 on the table field.
    Identify your table based on the short description.
    Identify the table number.
    Goto the T.Code "SE11/SE16".
    Enter the table name as "A" followed by that number.Suppose the number is 909,identify the table name as A909.
    Execute.
    Get the condition record number.
    If a new number is generated means there is anew record.By using that numebr you can get the details from the table "KONP".
    If there is a new number other than the existing one,for that one all the details should be fetched from "KONP" table and then workflow should be triggered with that specified details from "KONP".
    For this we have write a code.Ask your ABAPer to write the code as per the above logic.
    Regards,
    Krishna.

Maybe you are looking for