Vendor Master REplication from CRM

Hi friends,
I am maintaining Employees from CRM to R/3 and these EMployees exists as Vendors in ECC (Purchasing). So whenever I replicate a document it is giving me error with these Partner functions CSR, Field Sales
The possible reason could be I have no option to map the Vendor Accountgroups to CRM Classification through PIDE(ECC)
Question is
How do you I maintain vedor master mapping to CRM partner functions,
I have already mapped the CRM Partner functions to R/3 Account groups, but i am assuming that I need to maintain the classification in PIDE to replicate.
So please help any suggestions will be greatly rewarded
thanks
Raj

Hi Subramaniyan,
Thanks for the Reply. But this is supposed to happen real time.
Here is the detailed explanation again. I am maintaining the Partners CSR, Field Sales (Internal Employees) in Vendor master and they are coming into CRM as Employees with Mapping Data Transfer. When the same replicates to ECC through a Quote or Order... The problem is these Employees CSR, Field Sales from CRM to ECC are not linked to any of the ECC Classifcations becasue we dont have any option to do so.
Now when i replicate becasue the classifcation is not mentioned, it is popping back to me and giving me as error on just these 2 Employee functions.
To resolve this issue, I have to maintain some kind of mapping structure using a classification Consumer, Competitor, Customer, or Prospect. In a different way, I have to assign the vendor account group to a classification. which is not possible through PIDE, coz PIDE only allows you to map customers not vendors.
My question is how do i handle the incoming vendor partners from CRM into R/3.
thanks a lot

Similar Messages

  • Vendor Master Replication from MM to SUS

    Does any one have experience on Vendor Master Replication from R/3-MM to SUS (scenario without EBP).
    Is this replication made via XI?
    Which are the configuration steps for this scenario?
    Thanks
    antonio

    Hi antonio,
      I hope now you r now transfering vendor to SUS using 
      transaction BD14 with message type Z_CREMAS_SUSMM as  
      SAP suggested.
      Your error due to incorrect mapping in Integration 
      Directory of XI.Kindly check the Interface 
      determination for message type Z_CREMAS_SUSMM.
      If possible send more details for error .Is this at 
      SUS End ?
    Regards
    Sachin S M

  • Vendor Master replication from EBP and MM to SUS

    Hi !
    We would be replicating Vendors from R/3 as well as from EBP to SUS. I believe that there is certain configuration to check duplication of Vendors and also to assign a single business partner ID even if a Vendor is replicated both from EBP as well as from MM. Can anyone thro some light on this & the procedure...
    Thanks

    Hi,
    For the Vedor Maste replication from EBP and MM to SUS,
    U need to maintain the proper RFC conncection between R/3, EBP SUS and XI as a middleware.
    U can transfer the Vendor by using the T.Code -  BBPGETVD.
    U can transfer vendor to SUS using
    transaction BD14 with message type Z_CREMAS_SUSMM as
    SAP suggested.
    Your error due to incorrect mapping in Integration
    Directory of XI.Kindly check the Interface
    determination for message type Z_CREMAS_SUSMM.
    Please award the points for the help.
    BR,
    Vijay Mittal

  • Vendor Master Replication from 2 Backend System

    Hi Experts,
                  I am facing a problem in replicating the vendor masters from two Different Logical ECC systems.
    The vendor master at 1st Backend system
    Vendor Master: 0011000196
    Company Code: C001
    Pur.Organization: P001
    The vendor Master at 2nd Backend system
    Vendor Master: 0011000196
    Company Code: 1000
    Pur.Organization: 1000
    In BBPGETVD, the vendor from 1st backend system is replicated successfully and available in VENMAP table. Again, I entered the same vendor code and change the 2nd Backend destination in BBPGETVD and clicked on start transfer , In SLG1 i could find the error as below
    "Error: The Vendor Number Exists as a Partner Number Vendor: 0011000196”.
    In VENMAP table for the above vendor there is only one entry for the 1st logical system alone.
    Kindly suggest.
    Thanks& Regards,
    Ramprakash N

    If it is the same vendor - it must have the same address in both backends.
    After that you should be able to start BBPGETVD with following checkbox activated.
    Then VENMAP should be extended automatically.
    Regards
    Konstantin

  • BP replication from CRM to R/3 (ECC)

    Hi all,
    I have a question regarding BP replication from CRM to R/3.
    In transaction PIDE I can only set up one combination of classification B (Customer) and account group, e.g. Z001 for Sold to partner.
    What could I do if I need to replicate a Bill-to partner role from CRM to R/3 and the Bill-to partner account group in R/3 is not Z001?
    Thanks a lot!
    BR,
    //Anders

    Hi Anders,
    While transfering business partner from CRM to R/3 the system only looks at classification and identifies the Account Group form PIDE settings.
    For the roles Sold-to, Bill-to, Payer, Ship-to, Classification Customer is Picked Up and hence all of them will be mapped to the same account group.
    May be u can try to change the classification of Bill-to Role to something else, and map that to the other account group.
    OR
    Try to use a middleware exit or BADI which gets called before creation of a customer master in R/3, wherein u can put a code for picking up a different account group.
    Wish this helps.
    Regards,
    Shalini Chauhan

  • User-exit / BADI to control BP replication from CRM into R/3

    Hi,
    I have a scenario where besides the entries maintained in PIDE for replication from CRM into R/3, I need to control the replication or not concerning another field in CRM BP Master data.
    It's something like this:
    I need to replicate CRM prospects to R/3, but not all of them. This should be done only when a specific field from the BP master data is filled.
    I have to set the entry prospect --> ZXXX (account group in R/3) in PIDE transaction. But them I need something more to check the field in BP master data and prevent the "not prepared" prospects to be sent do R/3.
    Do I have any option to filter the replication from CRM into R/3 based in this field?
    Another possible option could be the development of a user exit or BADI that controls the BP replication to R/3. Does anybody knows a user exit where I can do this?
    Thanks a lot!
    Susana Messias

    Let me add my thanks to Sukant as well. My requirement was to exclude certain Business Partner Groupings from being uploaded to R/3. I was hoping that the filters applied in R3AC1 would actually have some effect, but they didn't. I don't understand that part yet. SAP must have had something in mind when they allowed filters for both directions of data transfer in R3AC1.
    Anyway, as Sukant suggested, I created a ZBUPA_MWX_BDOC_CREATE_MAIN function module and simply added the following code snippet:
    * Start of custom code to check whether BP grouping = 0003/0008
      LOOP AT ct_bp_extern into ls_one_bp.
        IF ( ls_one_bp-central_data-common-data-bp_control-grouping NE '0003' ) AND
           ( ls_one_bp-central_data-common-data-bp_control-grouping NE '0008' ).
          DELETE TABLE ct_bp_extern[] FROM ls_one_bp.
        ENDIF.
      ENDLOOP.
    * End of custom code to check whether BP grouping = 0003/0008
    Of course I had to create a copy of the function group, copy the includes and global variable declarations from the main program etc. But I was hoping that SAP would make such a simple filter more configurable rather than require coding, no matter how simple. If someone else with more knowledge comes across this thread in the future, please update it to let us know if we are asking for too much to have the filter option provided in R3AC1 actually work (for CRM --> R/3 data transfer).

  • BP replication from CRM 7.0 to ERP 6.0

    Hello.
    I was made customizing replication BUPA_MAIN object from CRM 7.0 to ERP as of Best Practics.
    When i creating a BP in CRM it's replicating in ERP as Customer only, not as BP.
    What I need to customize that BP is created during replicating from CRM?
    Thanks

    Hi All,
    I am also replicating customer master data from CRM-ECC. I am creating BP as Sold-to-party (STP) role and mapping that to a Z-Acc Group (copy of std. STP in ECC).
    One thing I want to clarify from you all is that in our case,
    In ECC, Recon Acc Field in Co. Code data is mandatory, but in CRM there is no concept of Co. Code.
    How do we handle such a scenario, because in this case there will be error of mandatory fields not matching on both sides.
    Please share your experiences or solutions for such a scenario.
    In addition to this, for tackling this issue,
    We created an enhancement on ECC side, to take care of this but while replicating BP's from CRM to ECC, there was en error "No batch input for screen SAPMF02D 100".
    When we raised this issue to SAP, their reply was as follows:
    1. There are various problems, but the main is probably that we reach the CALL TRANSACTION statement
    with FT[] empty. I have skipped the "ENHANCEMENT 24 ZCRM3" which has been added at the
    end of function module DEBITOR_BDCDATA and then FT[] was populated.
    Then i faced several missing data regarding the mandatory fields;
    first one was missing country in the address.
    ==============
    2. The root cause is in the "ENHANCEMENT 24 ZCRM3" which is at the end of FM DEBITOR_BDCDATA.
    This enhancement is a custom development from your side.
    It first clears IBDCDATA[] and fails to rebuild it because the conditionIF FT-FVAL = '0001'. is NOT fulfilled. (here FT-FVAL = 'Z001') Consequently, the internal table FT[] is later cleared which makes that the call transaction XD01 is executed with no data at all.
    ===============
    If we skip the enhancement, there will always be an error for mandatory fields.
    Please share your experiences on such an issue.
    Thanks and Regards
    Varun Taneja

  • *Journal Entries while uploading the vendor master data from legacy system*

    hi SAP Folks,
    can any one of you tell me the journal entries while uploading the vendor master data from legacy system to SAP system.
    Eg: legacy system is having 10000 vendors list, 1 reconciliation account and $ 1000000. while uploading all these data from legacy system to SAP what are the journal entries we get.
    thanks in advance.
    Edited by: ravindranath manikonda on Nov 24, 2008 1:12 PM

    Hi
    you will be having  only one entry logically
    i.e. Opening Bal. clrng A/c Dr.
           To Vendor A/c Cr.
    regards

  • Error while replicating vendor master data from R3 to SRM

    Hi,
    I am trying to replicate Vendor master data from the R3 system to SRM system(7.0) for the first time and am facing the following error :
    Organizational unit 50000004  does not exist; check entries
    Message no. BBP_BUPA034
    I  have gone through the other posts with similar issues but haven't been able to find a solution.
    Any ideas?
    Thank you.

    hi sahlini
    did you create a vendor organisation structure via PPOCV_BBP ? SINCE YOU REFER THIS NUMBER 50000004 WHAT IS THIS?
    BR
    \MUTHU

  • Restrict Contact Person replication from CRM to ECC based on Partner Funct

    Hi Experts
    We are replicating Contacts from CRM to ECC, by assigning them to Accounts. We have a scenario to restrict Contact Person replication to ECC only for specific Partner functions (we have 5 such partner functions), for remaining partner functions the contact Persons should not be replicated to ECC.
    By Partner function I mean, while making this assignment of Contact to an Account in u201Ccontact Person Relationships datau201D under u201CPartner Function Assignment blocku201D (in web UI) we are adding a Partner function E.g. Author, (same can be seen in GUI, under Usage tab of CP Relationship data).
    However we were able to replicate contacts assigned to accounts to ECC in our 5 partner functions, but even the unwanted contacts assigned to other partner functions in CRM are also getting replicated
    How can I restrict CP replication from CRM to ECC based on Partner Functions assigned to the Contact Person
    Your help is highly appriciated.
    Points guaranteed.
    Regards

    Issue resolved using CRMC_BUT_CALL_FU.
    Posing the table name, just in case it might help others.
    Thanks

  • Transfer of Business Partner Master data from CRM to TIBCO.

    Hi All,
    We intend to integrate CRM4.0 with TIBCO for transfer of Business Partner Master data from CRM to TIBCO.
    Can anyone provide solution for the same. One of the think is through XI.Please correct if it is the right way to do it?.
    Also, would appreciate if someone can provide documentation or links for integration.
    Regards,
    Mehul Shah.

    Hi Rahul,
    Yes you can integrate CRM and TIBCO using XI.
    Check the below links
    transfer the Business Partners from the CRM system to XI and to MDM.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/406efa7e-388a-2910-f9b8-81913b0ca57f
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50260ae5-5589-2910-4791-fc091d9bf797
    any XI content delivered by SAP can be found in the SAP service marketplace which you can enter http://www.sap.com/services/bysubject/servsuptech/index.epx.
    a) After you entered the service marketplace go to Software Download under the header SAP Support Portal.
    b) Next navigate to Download -> Support Packages and Patches -> Entry by Application Group
    c) In the main window select SAP Content and then Process Integration Content (XI Content).
    d) Now you should see a list of XI content packages.
    The package containing XI content for CRM is
    XI CONTENT BBPCRM
    In addition you find some packages that offer mappings from CRM interfaces to industry standards like RosettaNet or STAR standard, like
    XI CONTENT ROSETTANET CRM
    XI CONTENT STAR CRM
    Some of these packages may require a license, therefore I am not sure if they are visible to you.
    As per my knowledge, XI has CRM pre-delivered content and usually it communicates thru Proxies,Http, RFCs..
    And in your scenario , you can always go for Proxy communication
    Have a look into these threads
    CRM and SAP XI
    SAP CRM integration with XI
    How to access the pre-delivered XI Integration Content for APO ,SCM or CRM
    Dont forget to Reward points if this helps
    Regards
    Pragathi.

  • Upload vendor master data from legacy system to internal table tcode xk01

    through batch input program how to upload vendor master data from legacy system to internal table and then to SAP R/3 database(transaction XK01) by using recording method.

    By learning the basics of BDC recording and the use of GUI_UPLOAD

  • Stop sales order replication from CRM to R/3

    Hi friends,
    How can we stop the sales order Replication from CRM to  R/3? Pls Guide me.
    Thanking u in advance.

    Hi Madhu,
    You can do by making distribution lock set in further statuses  of the CRM sales order.
    It will stop replication of CRM sales order to ECC.
    Regards,
    Madhu

  • Modify vendor number when replicating vendor master data from ECC to SRM

    Hi,
    Is there a way  to modify vendor number(manually input vendor number e.g. from a file) when replicating vendor master data from ECC to SRM using the vendor master data user exit (SAPMF02K)?
    Does anyone have documentation on the user exit, how do I use it??
    Thanks and Regards'
    David

    Hi David,
    Please go through the link below:
    [Enhancement SAPMF02K Vendor Master Data  - question about LIFNR;
    Regards
    Anirban

  • Function Module to send Vendor Master Data from SRM to ECC

    Hi Guys
    I heard there is a function module in SRM which can send Vendor Master Data from SRM to ECC please confirm for me if there is such a function Module and what is it called. Thanks

    Hi,
    Vendor Master data is replicated to SRM from ECC. Standard Transactions (BBPGETVD,..) will be used to replicate the data from ECC.
    Vendor Master will exists in ECC, so there is no point in sending the same back from SRM to ECC. If the requirement is the other way around, we can use the transaction BBPGETVD in SRM system.
    Hope this helps.
    Regards,
    Hemanth

Maybe you are looking for

  • Adobe Acrobat X Pro cannot handle claim based authentication

    Hi, The system has licensed 'Adobe Acrobat X Pro' installed successfully. When SharePoint 2010 site collection has NTLM authentication, pdf document can be edited sucessfully using 'Adobe Acrobat X Pro'. Issue arises when the sharepoint 2010 site col

  • Hooking up old Graphite Airport to wired router.

    I had my old Graphite Aiport hooked up to a D-Link wired router which I also used for my iMac and Dell. The Airport was working like a charm until last week when the my D-Link wired router went kaput. I went out and bought a new D-link wired router (

  • Quick question about bug reports

    Hi all, I was just reading the reporting bug guidelines (https://wiki.archlinux.org/index.php/Re - Guidelines) and was wondering about the section "Upstream or Arch?". I'm not an expert on the particular package I want to file a bug against, so I hav

  • Joining/hosting problems with two particular peopl...

    I have a skype issue with just this one particular person, where if I or the particular person try to host a group call, the other person can't join and experience no sound, then get kicked out of the call. Rejoining didn't work, uninstalling didn't

  • Mac Mini Server won't display new web content

    I have my server up and running and my webpage (jacrouch.com) is up and running as well with coldfusion and SQL working. I have had some issues with a specific SWF file containing three links that disappears from several pages, but is working on one