Mapping table for contact person download from ECC and Groupware

There are 3 connected system in our landscape:
- CRM
- Groupware (connected to CRM)
- ECC
We have a requirement that the Contact Person can be created in any of the above 3 system and should flow to the other. So, the below scenarios are valid in our case:
1.  Contact created in Groupware, flows to CRM ->ECC
2.  Contact created in ECC flows to CRM-> Groupware
3.  Contact created in CRM flows to Groupware and ECC
Our flow system works fine and the contacts created in one system, flows to the other 3 and any changes also flow.
The problem is that for the contacts created in ECC, the communication data (phone, email etc) flow in CRM and get updated in the "Work Address" section in the Contact display screen in Web UI and the updates from Groupware for communication data gets updated in "Main Address" section.
Can anyone please advise what are the mapping tables for the address update when the contact is created in :
- Groupware/CRM
- ECC
Regards

Hi Christophe,
Thanks for the response.
I checked for the notes you suggested, but having read it it doesnt appear to address my problem. Did you get this from SAP as fix to solve' specify the name of contact person' error in SMW01 ? Unfortunately even SAP isnt replying to me on this.
I am also not getting any dump, all my queues are getting cleared in ECC and CRM. My error remains 'specify the name of contact person'. Interestingly when i tried to push the contact person directly as bupa_main..it too failed with the same error..more interestingly whenver my contact person tried to get replicated as bupa_rel..ecc does eat up a number assignment..but no record is created for it in ecc...the smw01 says partiaslly send ..receivers has error..
Edited by: Hamed Kazi on Apr 19, 2011 2:33 AM

Similar Messages

  • How to Read the internal table for the data download from the spool

    HI all,
    I have one issue regarding the spool ,we are getting the correct output as per requirement of  user but when we send the same to the user in pdf format they did notget the same.
    they are telling that the due date is missing from the pdf.
    Please advice me how to track the internal  table for the spool data converted intopdf in a readable format.
    the FM used for the above task is : 
    call function 'CONVERT_OTFSPOOLJOB_2_PDF'
    Please reply if any one worked on the same.
    Thanks in advance.
    Gaurav,

    Hi Wang,
    Please let me know how you solved your question.
    Points will be rewarded.
    Thanks,
    Arun.

  • 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

  • Campaign execution not send emails for contact persons

    Hi All!
    I'm facing a problem with Campaigns (communication medium - E-mail): Those are the steps i'm following:
    1.Start the campaign, and on the "campaign: Schedule job" screen, i choose  "immediately". If i look at the campaign details after scheduled the job, the status is now "job started".
    2. To check wich mails were sent, I also had a look at the business partner account that belongs to the target group used. On the "Interaction History" block, there is a line: "Outgoing Email" - on the details of this outgoing email I can see the "To" (Receivers). And here, I have emails from the business Partner contact persons and from the business partner itself (the email that is on the header level of the business partner account, on the "main address and communication data" area). So far so good. That's exactly what i need but,
    3. If i go to the tcode, i only have a send request for the business partner itself and none for his contact persons (although those emails are on the "To" line for the interaction history).
    I'm working on the Webclient UI, of the CRM 7.0
    Does someone knows why the emails are not being sent also for the contact persons?
    Thanks in advance.
    Inê

    I have achieved this by implementing the BADI : CRM_MKT_ADR_SEARCH
    In this BADI's method : CHANGE_SEARCH_RESULTS you can modify the data which is being sent back to system for campaign execution.
    NOTE: I am using Address Independent Communication Data of Business Partner
    Below is my sample code for contact person email :
      data: wa_bp_cp_channel type crmt_bp_cp_channel.
      field-symbols: <fs_bp_cp_channel> type crmt_bp_cp_channel.
      types: begin of ty_cp,
              partner type but000-partner,
              address type but000-addrcomm,
             end of ty_cp,
             begin of ty_bpcp,
               partner1 type but051-partner1,
               partner2 type but051-partner2,
             end of ty_bpcp.
      data: it_cp type table of ty_cp,
            wa_cp type ty_cp.
      data: it_bpcp type table of ty_bpcp,
            wa_bpcp type ty_bpcp.
      data: it_bp type table of ty_cp,
            wa_bp type ty_cp.
      read table ct_bp_cp_channel into wa_bp_cp_channel with key com_channel = '03'.
      if sy-subrc = 0.
        select partner addrcomm
          from but000
            into table it_cp
              for all entries in ct_bp_cp_channel
                where
                  partner = ct_bp_cp_channel-cp_number.
        select partner1 partner2
          from but051
            into table it_bpcp
              for all entries in ct_bp_cp_channel
                where
                  partner1 = ct_bp_cp_channel-bp_number.
        if it_bpcp[] is not initial.
          select partner addrcomm
            from but000
              into table it_bp
                for all entries in it_bpcp
                  where
                    partner = it_bpcp-partner2.
        endif.
        sort it_cp by partner.
        sort it_bp by partner.
        sort it_bpcp by partner1.
        loop at ct_bp_cp_channel assigning <fs_bp_cp_channel> where com_channel = '03'.
          read table it_cp into wa_cp with key partner = <fs_bp_cp_channel>-cp_number binary search.
          if sy-subrc = 0.
            <fs_bp_cp_channel>-addrnumber = wa_cp-address.
            clear <fs_bp_cp_channel>-bp_number.
            clear <fs_bp_cp_channel>-bp_guid.
          else.
            read table it_bpcp into wa_bpcp with key partner1 = <fs_bp_cp_channel>-bp_number binary search.
            if sy-subrc = 0.
              read table it_bp into wa_bp with key partner = wa_bpcp-partner2 binary search.
              if sy-subrc = 0.
                <fs_bp_cp_channel>-addrnumber = wa_bp-address.
                clear <fs_bp_cp_channel>-bp_number.
                clear <fs_bp_cp_channel>-bp_guid.
              endif.
            endif.
          endif.
        endloop.
      endif.

  • Payment methods download from ECC to CRM

    Hi Masters,
    Due to some requirement, new Payment methods customised in ECC so have to download from ECC to CRM. How it download through delta download. Existing payment methods data updated with adapter object name # CUST_TSP_WRITE and table name # CRMC_BUAG_PAYM in crm. iam new to crm plz Could anyone tell me step by steps.
    its urgent.......... plz........
    thanks in advance.
    Regards
    Sri

    Hi Sri,
    Payment methods maintained in ECC can be replicated to CRM via CRM download object DNL_CUST_PAYM in transaction R3AS in CRM. This updates the associated CRM table CRMC_BUAG_PAYM and CRMC_BUAG_PAYM_T.
    If you wish to create payment methods directly in CRM, then you can do so via customizing in CRM through transaction SPRO >
    Customer Relationship Management   > Master Data   > Business Partner > Business Agreement   >Define parameters for Business Agreement > Define Payment Methods.
    I hope this helps.
    Best Regards
    Gavin

  • Number Range for Contact persons in SAP CRM

    Hi Experts,
    Can anyone brief me about the contact persons concept in CRM and ERP?
    How and where the the no. ranges are maintained , config settings, link between ERP and CRM?
    Standard Account group for contact persons in ERP and CRM?
    I would appreciate and points would be awarded .
    Best Regards
    Suchhi

    Contact persons can be maintained on both sides. In our case, we mantain contact persons mainly for needs of sales department, so we set master on CRM.
    How and where the the no. ranges are maintained , config settings, link between ERP and CRM?
    To define number ranges on crm side go to IMG>Cross-Application Components>SAP Business Partner>Business Partner> Basic Settings>Number Ranges and Groupings>Define Number Ranges
    For number range created you have to create grouping. This grouping has to be assigned manually or automatically when creating a business partner. The business partner gets a number from the number range that is assigned to the grouping.
    This can be defined under IMG>Cross-Application Components>SAP Business Partner >Business Partner>Basic Settings> Number Ranges and Groupings>Define Grouping and Assign Number Ranges
    For number range created inCRM system you have to define a corresponding number range in the ERP. This is necessary to ensure that business partners created in CRM system get the same ID when they are replicated to ERP.
    Go to IMG>Logistics>General >Business Partner>Customers>Control>Define and Assign Customer Number Ranges
    Next define account groups under IMG>Logistics>General>Business Partner>Customers>Control>Define Account Groups and Field Selection for Customer
    For each of CRM business partner classifications you have to define a mapping to an ERP account group. Run transaction code PIDE and do the mapping.
    And of course your middleware settings must also be in order.
    Standard Account group for contact persons in ERP and CRM?
    There are no predelivered account groups for contact persons.
    Regards.

  • Modifying Hierarchy Node name in Query or during download from ECC

    We have some hierarchies that we download from ECC into BI and use them in query to display as report for Income statement or Balance Sheet statements. The issue we want to resolve is when we download the hierarchy from ECC into the intermediate download process tags hierarchy name as prefix for the node name. So for example if the hierarchy in ECC is as below
    ABC (name)
      1000 (node name)
      2000 (node name)
    When its downloaded in BW it looks as below
    ABC
      ABC1000
      ABC2000
    We want to see hierarchy in BW same as ECC. I tried removing the prefix in the query with no success.
    Since the table RSTHIERNODE has the prefixed also as node name so that's how it will be displayed.
    I thought I will modify the download process (datasource) to remove the prefix but the delivered user exit EXIT_SAPLRSAP_004 get executed prior to select of the data.
    Has anyone got any other suggestions?
    Thanks for your time.
    Edited by: SK on Oct 28, 2008 2:19 PM

    Ravi,
    Just checking. Did you create a authorization variable and added it in the query for that characteristic?
    Gova

  • Issue with customer download from ECC 5.0 to CRM 5.0

    Dear CRM gurus,
    We are facing very strange problem regarding sales area and sales office in CRM 5.0 test system
    During the download of an ECC 5.0 customer into CRM the BDOC is giving the following error - 'Sales office O 50000617 is not available' and 'Sales office O 50000617 sales group not maintained for sales area O 50000608     10 10'and Validation error occurred: Module CRM_BUPA_MAIN_VAL, BDoc type BUPA_MAIN.
    I just select the BDOC and reprocess it immediately. Now the customer is downloaded into CRM and BDOC turns into green. I am also able to see the sales office and sales area in the downloaded CRM BP.
    The sales office 50000617 is very much there in CRM and is properly assigned to sales area 50000608     10 10. That's why, I should be able to reprocess the struct BDOC successfully.
    But for some reason the sales office is not getting determined first time during the download. This issue is driving me crazy. This only happens with the customers with sales office. If there is no sales office in ECC customer (i.e. the field is empty) then there is no issue. This customer will get downloaded without any error.
    Also the downloaded material doesn't have the sales area data. 
    This issue doesn't happen in our development system. The only difference is, sales org structure in development system is manually created and it is downloaded from ECC in test system.
    Can you please advice me on how to solve this issue?. It is a bit urgent.
    All valuable inputs must be rewarded,
    Regards,
    Raj

    Hi Gun,
    You are the only one responded to my issue. I have allocated some points.
    Yes. I have checked the assignment in CRM organizational model.
    I did download the org. structure from ECC 5.0
    All objects including sales offices are activated for determination and I have verified with green light
    As per your suggestion if the sales area data is not matched between the two systems, then how come the error will not reappear during the bdoc reprocess?
    What is missing during the first time bdoc process? Looks something is missing for validation module?
    Any inputs?
    Thanks,
    Raj

  • How can I get "library components" for Encore? download from Adobe site is corrupted/missing files

    How can I get "library components" for Encore? download from Adobe site is corrupted/missing files.  I have tried 3 times to d/l and each time problems.  HELP please!
    I just want the DVD templates and buttons that would come with actual purchase of Encore.  Having creative cloud subscription should not limit this for me, right?
    BTW I have CC subscription, Windows 7,

    Thanks very much I have contacted them via this. Just hope they respond quickly- rather annoing! Greatly appreciated though

  • Equipment Download from ECC 6.0 to CRM 5.0

    Hi,
    I have made equipment in ECC 6.0 using the Transaction code IE01.
    While trying to download it into CRM, the BDoc shows a validation error
    I have activated the adapter objects EQUI_CONFIG and EQUIPMENT.
    I will be obliged If somebody can give me the step by step process to download the equipment from ECC to CRM and the customizations to be done as a prerequisite.
    Thank You
    Rekha

    Hello Everyone,
    Iam trying to Download Equipments from ECC 5.0 to CRM 5.0.
    Iam getting a Validation Error in the Bdoc CRM_EQ_DMBDOC.
    The Error Message is <b>Assign a Base Category to the Product.</b>
    I have the Base Hierarchy R3PRODSTYP Assigned to the Application
    Product.
    And i cannot edit the Hierarchy or Categories since they are Downloaded
    from ECC.
    Please let me know how to Specify a Base Hierarchy/Category for the
    Equipments to get Downloaded as Individual Objects.
    Thanks & Regards
    Kumar

  • Url mapping table for webdispatcher

    I want to use a URL mapping table for the webdispatcher. I found that the paramater wdisp/url_map_location can be used to point at a file://<path>.
    But I donot find any information about the layout of this file.

    Hi Geert,
    As far as i read,
    URL mapping table
    Mapping of the path part that is specified in the browser to the information about the server (groups).
    You can determine, for example, that all requests that contain the path prefix /sap/bc are only processed by the servers that process logon group GROUP_1.
    text quoted from SAP Library.
    As far as i know you can achieve the mapping you mentioned above using DNS
    Regards
    Juan
    Please reward with points if helpful

  • Deactivate few Communication methods for Contact persons

    Hi Forum,
    I have a requirement wherein I will have to hide few commincation methods in Contact persons(BP category-Person).The communication methods as <b>Standard Comm.Method</b> for contact person viz.,RML(Remote Mail), SSF(Secure store & Forw.) etc need to hidden. I found no place where these values for communication methods are maintained in SPRO. Please guide how I can achieve this.
    Will Reward points for helpful answers
    Regards
    Shridhar

    Hi Forum,
    I could hide the field in sm30 in the table TSAC.Uncheck the field you dont want to be displayed in the column
    <b>Flag:Use</b>
    Regards
    Shridhar

  • Re-assign a contact person BP from one bidder org BP to another

    Hi forum members,
    We have a situattion where we would like the ability to transfer a bidder contact person BP from one bidder org BP to another by means of an ABAP program.
    This will prevent us having to block the old contact person and create the same one on a new bidder org.
    Has anyone tried this successfully?
    Thanks,
    Nick

    Pradhip:
    I am not sure about that line - but contact persons are replicable with the correct middleware configuration. 
    regards,
    bill.

  • 'No data found for contact person 00764' error on Cart

    Hiya.
    I am getting a message that pertains to 'No data found for contact person 00764' error on Cart. 00764 is the BP number.
    In SRM Org plan, the user check is fine.
    Please can you suggest.
    Thank you.
    Pooja Kaur
    p&g, India.

    Hi
    When are yo geting this error mesage ?
    Is he (BP) is a requestor or vendor? Give some more details on that BP since you said attributes are ok.
    regards
    Muthu

  • No data found for contact person '2000000243'. Inform system administration

    Hi expert,
    i found error 'No data found for contact person '2000000243'. Inform system administration'.
    When check in program: HRALXSYNC, no error found.
    Thanks and Regards,
    Fariz

    Hi,
    You have to maintain contact person for the supplier, as an SRM admin the list of suppliers dispalyed select the vendor against which you want to create the contact and click on "Create Contact Person with reference" maintian all the required entires and you will be able to see this contact details in you RFx while selecting the bidders for RFx.
    with regards
    Manjunath

Maybe you are looking for

  • What is my best package please

    I will be working in France & want to make & receive calls on my Blackberry which has skype too & from UK at the best price. I can't work out the best package on skype to achieve this & there seems to be no Support phone numbers.

  • HR report/tranzaction on current and past org unit, position, job

    Hi, Does anyone know the code of the standard report / tranzaction to show the current and the past org unit, position and job for an employee? Thank you Adriana

  • Trying to update OBP getting unrecognized magic number in media label

    Two questions both relating to my trying to update my OBP: 1. when I typebanner I get ... AXi (UltraSPARC-IIi), PS/2 keyboard OpenBoot 3.10.12 SME... but when I type .version I get OBP 3.10.12 My question is which OBP update to use, AXi OBP 3.10.13 o

  • Video Transistions causing DVD playback to freeze

    Has anybody had a problem with video transitions? I put two video transition in my file, a page turn and a cross wipe. After burning the fie, with chapter markers, in iDVD the DVD freezes video if I try to change chapters to any point past the video

  • Importance of LUT Bit Size

    My apologies if my question is a bit off-track. However, I suspect that the most reliable source of information will lie with Mac users. I plan to purchase an external display for post processing & print matching. The contenders are: Dell U2410 (12 b