Change Customer on existing Contract

Hi Guys
Brief question
Does any1 know a way to change the customer on a contract that already has follow up documents as invoices etc. While the payer is open the customer in our case it is already greyed out.
I guess it is not recommended as invoices will have a different customer from the contract, but if I am not mistaken you could change cusotmer in R/3, SD... so perhaps there is a way in CRM aswell?
Thanks for any input on this topic.
/Sven

Hi Sven,
You need to check the configuration setting of Partner Determination for that particular Contract transaction type.
Goto to SPRO->CRM->Transactions->Basic Setting->Setting for Transaction Type
After you find which partner profile is used, then go to
SPRO->CRM->Basic Settings-> Partner Processing.
Select that particular partner profile and click Partner Determination in procedure from left navigation tree.
Check specific partner (in your case is Customer, I think what you meant is Sold To) then check the column Changeable.
Save your setting, and re-open the document again to change that Sold To.
But please be noticed that some internal SAP system validation may blocked you to change certain fields for document which has other follow up document link to it.
If this the case, then your setting for changeable Sold To only valid for new document (and you need to check when the system will blocked you to change the field - such as after certain follow up document creation).
Hope this could helps.
Gun.

Similar Messages

  • Change of number with existing contract

    I have been receiving regular texts and calls from unknown numbers for months now and I was wondering it it is possible to change my number even though I am on an existing contract? When I block the callers, more and more numbers begin to text/call and it gets annoying a lot of the time as I can't stop it

    Hi, 
    You need to call EE CS and ask them for a new number. Please ensure you dont end up with a new line just a new phone number. 
    Thanks, 

  • How to change default value in contract by T-code ME32K?

    Dear my freinds,
    If you have one exist contract and then you use ME32K to change it, you will get default value for material group, plant and storage location in contract.
    If you have one materail 1002 at plant AUXX and storage location 0001 in contract already, then you can see these value will be in contract below:
    10     M     1     EA     0.00     1     EA     2B0880700     AUXX     0001                                       
    20     M                                                                                  2B0880700     AUXX     0001                                       
    30     M                                                                                  2B0880700     AUXX     0001                                       
    Our user does not want to display default value for filed material group, plant and storage location in contract by T-code ME32K.
    Could you give me kind idea how to avoid it? which is really appreciated!
    Thanks in advance!

    Hi Nick,
    Thanks for your idea, I agree with you that it may be fixed by user exit and is not worth to do it, but i only want to know how to do it easily, hopefully I can get answer from you...
    Thanks!

  • Creation and change customer master in same LSMW

    Hi Experts,
    I have a created customer master uploading using batch input recording in lsmw.
    Now i have scenario like if the customer already exists i need to change that customer accordingly.
    I hope most of u would have come across such issue,for time being i tried makin 2 recordings for creation(XD01) and change(XD02)
    after assigning 2 structures for each creation and change, but i don know where to check whether the customer already exists and how to skip respective recordings....
    Pl suggest steps after this, if this one correct........
    Or if there any alter method pl do suggest me..
    Pts will rewarded immly.
    Regards,
    Dilip

    Hi,
    In the begin of record, you can check whether a cust already exist in the system. Based upon the result you can change the Tab Name and Tcode.
    Just give this a try.
    Rehards,
    Lalit

  • Changing Customer recon account in Customer Master

    Hello everyone,
    I have come across an issue and I would sincerely appreciate some help. Points available.
    In the Sandbox, under the Customer Master, I have a customer (let's call it Customer # 55). The reconciliation account defined in the Acct Mangement area is 110000 (Trade A/R). This is incorrect. I need to change the recon acct to 150000 just for this customer 55. The rest of the customers all go to the original Trade A/R acct GL 110000. The problem is that the recon acct field is greyed out, so I am unable to change it.
    I have read on this forum that you cannot change it if transaction exist, however, I have not performed any transactions for this particular customer (#55). I have performed transactions for other customers that have posted to the 110000 Trade A/R acct. Since no transactions exist for Customer 55, is there  a way for me to change the recon account?
    I tried changing the settings in OB20, but that did not help. I would appreciate your thoughts.

    In OB20 on change customer account under company data, it the Recon account optional?
    Moreover, Account has been posted to,by changing the reconciliation account in the open item master record,  only , the proportionate values from the items open at the time of change are not posted to the new reconciliation account.
    <b>Which means it still should be possible to change</b>
    The documentation further reads
    "On the balance sheet key date the open items from the old reconciliation account are allocated to the new reconciliation account using adjustment accounts. This allocation is carried out automatically when you create a sorted list of receivables and payables using report SAPF101.
    The postings necessary are only carried out for G/L accounts and are cancelled on the first day of the subsequent month (balance sheet adjustment posting)."

  • Change customer for purchase requisition

    Hi gurus,
    i'm trying to change customer number for purchase requisition.
    i tried to enter this code in badi ME_PROCESS_REQ_CUST~PROCESS_ITEM but KUNNR is not changed:
      DATA : ls_item_data   TYPE mereq_item,
             ls_item_datax  TYPE mereq_itemx,
             lv_obj         TYPE REF TO object,
             lv_attr        TYPE string,
             lv_aktyp       TYPE aktyp,
             lv_kunnr       TYPE ekunnr.
      FIELD-SYMBOLS : <fs_lcl> TYPE any,
                     <fs_source> TYPE any.
      IF im_count EQ 1.  " to avoid infinate Loop"
    Access Attributes value of Local Class
    for getting the transaction mode of Line item
    H-> Create
        lv_obj ?= im_item.
        MOVE 'MY_STATE->AKTYP' TO lv_attr.
        ASSIGN lv_obj->(lv_attr) TO <fs_lcl>.
        lv_aktyp = <fs_lcl>.
        IF lv_aktyp EQ 'H' OR lv_aktyp EQ 'V'.        "While creating line item"
    Extracting existing Item Data and Modify the fields
    Requestor Name (AFNAM) & Source of supply details
          CLEAR : ls_item_data.
          ls_item_data = im_item->get_data( ).
         ls_item_datax = im_item->get_datax( ).
         MOVE ls_item_data-ernam TO ls_item_data-afnam.
          lv_kunnr = '0000100000'.
          ls_item_data-kunnr = lv_kunnr.
             ls_item_datax-kunnr = 'X'.
         im_item->set_datax(
         EXPORTING
         im_datax = ls_item_datax ).
          im_item->set_data(
          EXPORTING
          im_data = ls_item_data ).
        ENDIF.
      ENDIF.
    when trying changing other fields like AFNAM for example, the data is changed.
    the customer number exists in KNA1.
    any ideas?
    Thanks,
    Sagit.

    SEARCH  SEARCH  SEARCH  SEARCH  SEARCH  SEARCH  SEARCH
    Good work

  • Change Process in Provider Contracts

    We are trying to use the change process-Product Change in the  Provider Contracts.
    We have maintained the Up & Down selling by mentioning in COMMPR01 in the UP-Selling tab we have entered the different products B. C that needs to be shown for product A.
    We have also maintained in t-code- CRMD_AR_MAINTAIN.
    When we try to do the execute PRODUCT change process in the pop up the up-selling products that are maintained are not being displayed.
    Thanks,

    Hi Vijay,
    have you tried to maintain the upselling product through the webUI?
    This would always be my first try because COMMPR01 does not necessarily support all new features.
    Settings to check in IMG:
    Have you assigned a method schema to your transaction type for Provider Contracts in:
    SAP Customizing Implementation Guide
    --> Customer Relationship Management
    --> Transactions
    --> Settings for Sales Transactions
    --> Product Proposals in Quotations and Orders
    --> Method Schemas for Product Proposals
    --> Assign Method Schema to Transaction Type
    Use a method schema that is based on SAP standard schema 000018 or at least contains module CRM_MKTPR_PP_US_GL_SC_READ ("Call the Solution Configurator to determine Global Up-Selling Products").
    Place to check in debugger:
    Trace the call to CRM_PRODUCT_PROPOSAL_DETERMINE triggered from CL_PROVDLPR_CHANGEPRODSR_IMPL->DO_PREPARE_OUTPUT()
    Hope this serves as a starting point for your analysis.
    Best regards
    Stefan

  • Change custom duty

    Hi,
    How come system is not allow to change custom duty eventhough GR has been reverse because the field is grey off.
    But able to change if ONLY IR exist.
    Thank you.

    Hi,
    This is the standard process of SAP once you have done with GR you cannot chage the delivery cost. Whether you have delet the GR or not. For your case you need to delet the old line item in the same PO and then create a new line item
    regards
    anamika

  • Block MO changes if PO exists

    Hi,
    My user does not want the MO can be saved for changes if PO exists. I have done it in the PM enhancement -->  IWO10009 PM Order: Customer Check for 'Save' Event. However, I've overlooked some functions such as TECO, BUSINESS COMPLETE should not be affected by this restriction.
    Anyone of you can advise me the complete cycle of a Maintenance Order with PR, what should and should NOT be restricted for MO changes if PO exists ? Thanks in advanced.

    Hi Nies,
    If you are not using the material then you can go for Validation, under Operative Structure> Network> Validation.
    Attach the validation with OPSA click on Automatic.
    In the second scenario if you are using Material Component, as Mr.Muralidharan said OPSG there you can restrict the change by selecting Error Message.
    1. Tcode OPSG in Setting see all the object are selected.
    2. Click on Component tab under change in Purchase Order Exist tab select Error.
    Regards'
    Syed

  • Customer type(existing/new)

    Hi,
    Require to maintain customertype(Existing/New) information in BPC master data. Pls suggest me way.
    Customer type dim: with IDs Existing/New. First time when customer joined into business he became new customer throught that financial year and, after in subsequent year(s) he became exising customer.
    Customer dim: list of customers.
    In reporting requirement, i would like to see revenue from existing vs new customers for each yearwise. In previous year, whoever is new customer became existing customer in present year.
    thanks,
    naresh

    I agree with Sabine Bennett solution. That way you will have status maintained for each customer for every year & Revenue for  years would be same ,when queried in any year . Only one draw back is ,as years passes by dimension file size increases.
    Another alternative could be ,to create an account 'CUSTSTATUS', and maintain 1-NEW and 0-Existing for all customers ,NO_ENTITY,ACTUAL, First month of every year . To generate reports on NEW/Existing customers , you can have a hidden sheet where in EXISTING/NEW customers list can be pulled with EVLST or EVDRE . Point to this list from  Main EVDRE report . In this approach , expansion should be done two times when year changes .  Its just an alternative solution . Some clients might not accept to expand a report  2 times.
    Hope this helps.

  • Change vendor in SRM contract.

    Dear All,
         I have a general query related to SRM contracts.  Once the SRM contract is created and released.  Will I be now able
    to change the vendor if so what is the impact.  When I go into the contract in change mode it anyway do not let us change the vendor.  So what is the best followed practice is such a case.  Or is it better just to delete the contract and create a new contract with the required vendor ?
    Thanks in Advance.

    yes. Jay i s correct .best is to create  a new CONTRACT.
    Jay suggested is good. CLOSE the existing GOA and create a New contract .
    fyi ..
    but one concept is available in SRM. Changing Suppliers in Central Contracts
    NOVATIONYou can transfer some or all central contracts and purchase orders from one supplier to another in the case of a merger or buyout. This is known as novation. In addition to changing the number of a supplier in a contract, you can define a new validity period for the contract. The system recalculates the validity period for the old supplier.
    Note
    You can also use this function to search for central contracts with a particular supplier.
    End of the note.
    Prerequisites
    You are assigned to one of the roles in the following table:
    Roles Role Name
    Portal Role
    SAP SRM Server Role
    Operational Purchaser
    com.sap.pct.srm.ro_operationalpurchaser
    SAP_EC_BBP_OP_PURCHASER
    Strategic Purchaser
    com.sap.pct.srm.ro_strategicpurchaser
    SAP_EC_BBP_ST_PURCHASER
    SAP SRM Administrator
    com.sap.pct.srm.ro_srmadministrator
    SAP_EC_BBP_ADMINISTRATOR
    Activities
    In the SAP Supplier Relationship Management (SAP SRM) system, choose  Central Contract Management  Change Suppliers in Contracts  (transaction BBP_CTR_01).
    Enter the number of the old supplier, the number of the new supplier, and other required data, and choose Execute.
    The system displays all contracts with the number of the old supplier.
    Select the contracts in which you want to replace the number of the old supplier with the number of the new supplier.
    Note
    If you want to simulate the changes, be sure to select Test Run.
    End of the note.
    Choose Carry Out Novation.
    More Information
    About
    See
    Purchase Orders in SAP SRM
    Searching for Purchase Orders With/Without a Central Contract
    Upload and management of central contracts in SAP ERP
    SAP Help Portal under http://help.sap.com  SAP ERP Central Component  Logistics  Materials Management  Purchasing (MM-PUR)  Outline Purchase Agreements with Vendors (MM-PUR-OA)  Contract  Central Contract  SRM Central Contract

  • Modify with custom query in contracts to do list workbench channel is not working

    Hi Experts,
    We have a requirement to change the standard query with custom query under 'Contract To Do List' workbench channel. This requirement is for 'Master Agreements'  and Master Agreements Requiring Attention entries in the channel. I have replaced the standard query with my custom query in Setup --> Query groups select the query group To-Do List Queries (FCI-ToDoListBuyReport) and replace the To-Do Master Agreements query definition with my custom query. Same thing I did for second query also.
    But it is not reflecting in Contract To Do List work bench channel. Please see below screen shot.
    However if I revert to standard query 'Master Agreements'  link is displaying.
    Did any one had this kind of requirement and how did you achieve this if you share some thoughts on this it will really appreciated.
    Regards,
    Lava.

    Hi All,
    Issue resolved.
    Raised OSS for this and SAP suggested that include 'ToDo-CON' word in custom query internal name.
    Regards,
    Lava

  • How to change recon.account directly in Table with out changing customizing

    Hi Gurus,
    I want to change Customer reconciliation account but this is not possible any more due to display option for reconciliation account in customizing.
    I know I can change customizing and then change the reconciliation account, but there is a better way doing this.
    We can change this directly in the table without changing customizing, but I don't know how to do this. Does any one know how to change directly in the table?
    Many thanks in advance

    Hi there,
    The steps that you should take include:
    1. go to SE16
    2. put knb1
    3. on the field selection input the customer you want to edit
    4. Execute
    5. type to the transaction field /h and press Enter
    6. double click to the customer line item you want to change the recon
    7. this will navigate you to the debug environment
    8. on the debug environment press find/search button -or- CTRL+F to find a keyword code
    9. you should see  if code = 'SHOW'.
    10. now please double click on the word "code" to set the Breakpoint
    11. Press F7
    12. you will see the program routine will stop at if code = 'SHOW'.
    13. Double click on the word 'code'
    14. 'code' will appear on the righ hand side with value = 'SHOW'
    15. change the value of 'SHOW' to 'EDIT' by double clicking the Edit icon (pencil) and replacing the value of SHOW to EDIT
    16. press Enter
    17. press F8
    18. you can now change the recon field
    19. Press SAVE button
    20. Double click 2x (or more) on the STOP sign, until your breakpoint is gone
    21. press F8 and you should see the message of "Database Record successfully created"
    Good luck!
    Regards,
    Fausto
    Edited by: Fausto Jahja on Jul 21, 2009 5:26 PM
    Edited by: Fausto Jahja on Jul 21, 2009 5:50 PM

  • Changing customer number in alv top of page for every new customer

    hi experts,
    in alv grid display top-of- page, how to change customer number  customer name for every new customer.
    please help me.
    Regards
    Naveen.

    You may look into this blog
    http://help-abap.blogspot.com/2008/09/salv-model-5-add-header-top-of-page.html
    This is has been contributed by one of the SCN contributor Naimesh Patel.

  • Changing custom Domian characterstics

    Hi All ,
    I am changing Custom domain  characterstics , while activating table there was a error that the table should be converted , Therefore i have adjusted the table in se14 and activated  . it activated fine , My question now is , if I send the request to quality system , will the table get adjusted automatically .
    Thanks
    Vinay Kolla

    it will be taken care.

Maybe you are looking for

  • Find classes in a package

    I'm new to java. What's the best way to find all classes in a standard package (e.g. java.awt). I'm trying to create a list for classes in a package in java. thanks

  • GR based IV is disabled but it got changed

    HI gurus , We are using SRM 5.0 Extended classic scenario, ECC 6.0 In the Purchase Order ,item data-> Follow-on documents -> Confirmation-Related Invoice Verification  is disabled. But somehow the GRIV indicator got changed , I can see the change log

  • Cancellation of mass billing...Urgent

    Hi All, Is there any transaction to cancell mass billing which was created wrongly ? Billing has been created through vf04. Urgent Yusuf

  • Blank page after I log-in to  http:/ host :9001/sia/

    Hi All, I am trying to deploy Oracle WAM 1.9.0.3. WLF_FORMS running, no error found on wls_forms.out. "error" / "issue" comes out when I log in to http:/<host>:9001/sia/ here is my config.properties: root_path=C:/SPL/WAMCCH/synergen/CCHDEVwaminst/sia

  • Transpot error" system error  in lock managment"

    Hi , When Iu2019m transporting  infoobjects from BI DEV to BI Q while importing its showing u201Csystem error in lock managementu201D. When I drill down   the error its showing the following message. Message no. AD025 Diagnosis A system error has occ