Issue with HR Distribution Model from ECC to CRM

Hello Gurus,
I am replicating employees from the ECC to CRM. I followed the C05 u201CCRM Organizational Model with ERP HR Integrationu201D Best Practice. Initially employees replicated without any trouble from ECC QAS to CRM DEV. The issue came since we also created a replication model from ECC QAS to CRM QAS.
Even dough each replication model has defined each corresponding receiver system (CRD and CRQ), since we created the new distribution model, employees are now only replicating to CRM QAS which was the last created distribution model.
Since we only have data en ECC QAS we have use this same system for the CRD and CRQ. The question here is: Can we only have one distribution model? Is there any way to achieve employee replication also to CRD?
Extra Information: When using PFAL for replicating, I´m using object P and after executing the systems confirms in green the replication for both systems. But when I a search the HRXX in CRD I didn`t find it I just found it in CRQ.
Thanks for your comments on this.
Points will be reawarded

Dear Kumar,
you should not schedule RBDMIDOC before you have done the initial distribution because the most of the idocs will run into error (if new objects are created in ECC the distribution will create correct data in CRM; changes on existing objects will run into error because the object has not been created by distribution of essential data).
Before scheduling the idoc creation from change pointers you should have done the intitial distribution of organizational data and employees using the procedure described in note 363187.
Regards,
Michael

Similar Messages

  • Issue with Engineer Multidimensional Model from Oracle Model

    Here is the scenario:
    1. Created logical star schema model including a dimension with nested subtypes (SuperTypeEntity1 -> Subtype 1 -> Nested Subtype 2)
    2. Forward engineer to Relational model using Single Table implementation
    3. Create Oracle 11g physical model definitions for the star
    4. Define dimension, levels, and hierarchy in physiclal model
    5. Create new multidimensional model, right click menu and execute "Engineer from Oracle Model"
    Result:
    Model and diagram built with correct dimension, levels, level attributes, hierarchy
    Problem: The entity that the dimension levels are related to is the subtype entity that appears first alphabetically! What it should do is be related to the SuperTypeEntity since I used the Single Table implementation (IMO). I can manually change the property to pick the SuperType but then it loses the assignments for the Level Key and the Descriptive Attributes (which were defined in the physcial miodel) so I have to manually repopulate those properties.
    Associated problem: Since I tend to do things incrementally (define a few dimensions at a time), everytime I re-run the engineering utility, it resets the dimension back to the wrong subtype everytime. (I like the fact that I can rebuild the multidimensional model iteratively to incorporate changes, but in this case it would be nice to "lock in" my manual changes).
    My only work around at this point is to either only run the engineering utility once (which is pretty impractical) or temporarily prefix my super type entity with an "A" so it always comes up first in the list until I am done with all my iterations.

    Hi Kent,
    dimensional model is not well suited to use entity hierarchies.
    I can manually change the property to pick the SuperType but then it loses the assignments for the Level Key and the Descriptive Attributes (which were defined in the physcial miodel) so I have to manually repopulate those properties.It seems all your key and descriptive attributes are in SuperTypeEntity1 (the root of hierarchy). How to proceed if some attributes (key +descriptive) are in subtypes, should SuperType be set as level entity again?
    Philip

  • Issue with Replication of Bank Account Numbers from ECC to CRM.

    Hi,
    I am trying to transfer business partners from ECC to CRM, I see errors in SMW01, stating that Bank Key is not valid for US, I have then performed the Initial load for DNL_CUST_BNKA to tranfer Bank Master Data, but again getting error but this time on BANK ACCOUNT NUMBER.  How do I transfer the BANK ACCOUNT NUMBER of Business Partners from ECC to CRM. Before starting the initial load for BUPA_MAIN do I need to run any other Initial load to move the BANK ACCOUNT NUMBERS to  CRM?
    I have already moved Bank Master data using DNL_CUST_BNKA, but can't able to replicate BANK ACCOUNT NUMBERS, can someone please provide me some steps which I need to perform to tranfer BANK ACCOUNT NUMBER.
    Now when I ran the initial load for BUPA_MAIN , all Business partners which do not have BANK ACCOUNT NUMBERS are replicated successfully but the one which have Bank Details did not got transferred and gave errors for BANK ACCOUNT NUMBER, Please provide some suggestions.
    Thanks.
    Jennifer

    Willie,
    Thanks for the reply:
    Error: BANK ACCOUNT NUMBER    ******8547 is not valid
    Support pack level:
    SAP_ABA  701  0003
    SAP_BASIS 701 0003
    BBPCRM   700  0002
    Thanks.
    Jennifer

  • Issues with Synchronize to and from DB (version 3.3.0.747)

    Having an issue with syncing the model and the data dictionary is a very specific case:
    1. Reverse engineer an existing table (T1)
    2. Copy the table (in data modeler) - T2
    3. Rename the table, make changes (add columns and keys)
    4. Forward engineer the new table (i.e., export and run DD for T2L)
    5. Make additional changes to new table (T2) in data model.
    6. Run sync db with model - the sync routine compares my new table (t2) to the original table (T1) in the database! It cannot "find" my new table (T2) in the database to compare to.
    7. Alternatively try to sync the model with the db - this time it wants to sync the original table (T1) to itself (which has no change) and DROP my new table (T2) from the model.
    It appears that sync is looking at meta data one my new table (T2) that contains the original copied table's name (T1). And in fact if I look at the table Summary properties - the source db object property does list the original table name (T1).
    I also tried to reverse engineer the new table (T2) to the merge with the model, that has the same behavior as the sync.
    Is there a way to fix this short of dropping T1 from the schema?
    Edited by: Kent Graziano on May 20, 2013 2:37 PM

    Hi Kent,
    thanks for reporting the problem. I logged a bug and ER for that.
    Is there a way to fix this short of dropping T1 from the schema?Unnecessary information about source need to be cleared. Here is a script that will help on that:
    //array with 2 elements to illustrate different use cases - the first is used to have exact match on table name
    // the second one ("REGIO") can be used with following check in inList function
    //if(table.getName().startsWith(list)){
    var list = ["Regionsv1","REGIO"];
    function isInList(table){
         for(var i=0;i<list.length;i++){
              // different approaches to match table name can be used
              // be aware of letter case
              //if(table.getName().startsWith(list[i])){
              if(table.getName().equalsIgnoreCase(list[i])){
                   return true;
         return false;
    function clearSourceStampforTable(table){
         clearSourceStamp(table);
         cols = table.getElements();
         for(var i=0;i<cols.length;i++){
              clearSourceStamp(cols[i]);
         keys = table.getKeySet().toArray();
         for(var i=0;i<keys.length;i++){
              clearSourceStamp(keys[i]);
              if(keys[i].isFK()){
                   clearSourceStamp(keys[i].getFKIndexAssociation());
    function clearSourceStamp(object){
         object.setSourceConnName("");
         object.setSourceObjSchema("");
         object.setSourceObjName("");
         object.setSourceDDLFile("");
         object.setDirty(true);
    tables = model.getTableSet().toArray();
    for(var i=0;i<tables.length;i++){
         table = tables[i];
         if(isInList(table)){
              clearSourceStampforTable(table);

  • Copy Distribution model from non changeable client to new system

    Hi EDI-Experts,
    Help me.
    How can I easily copy a distribution model from a nn-changeable client to w new system.
    Example: DEV client 110, Test client 150 (with valid distribution model), new syste, QAE,cleint 200
    How can I transport the distribution model from client 150 of DEV system to 200 of QAE system.
    How does the generation of the partner profiles work then?Anything to consider?
    !! Client 150 of DEV is not changeable !!
    Many thanks
    JW

    Goto Transaction BD64.
    In the Menubar Edit -->Model View --> Distribute
                                                            Transport
    U have the option of distributing ur Model view to another client.
    Hope this helps.
    Regards,
    Mithun
    Edited by: Mithun Shetty on Jul 16, 2008 8:33 PM

  • Issue with Executing OS commands from Stored Procedure

    I am trying to execute the scripts provided at :
    http://github.com/xtender/XT_SHELL
    provided by xtender user.
    As required, I have asked my DBAs to grant privileges by executing the following scripts:
    Begin
      --change to needed permissions and execute
      dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/factiva/ODS/bin/CVIM_Rpt_ExportCSVFile’, 'read,write,execute' );
    end;
    /where CVIM_Rpt_ExportCSVFile is my script residing in the Unix server where my Oracle is installed.
    The error I am facing when I try to execute the following command is:
    select * from table(xt_shell.shell_exec('/var/scripts/CVIM_Rpt_ExportCSVFile',100))
    Exception:the Permission (java.io.FilePermission /var/scripts/CVIM_Rpt_ExportCSVFile execute) has not been granted to ODS. The PL/SQL to grant this is dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/scripts/CVIM_Rpt_ExportCSVFile', 'execute' )I have asked my DBA to also execute the following scripts: - But I still see the same error as above. I am not able to figure out whats going on. Can anyone pls help me out??
    EXEC Dbms_Java.Grant_Permission('ODS', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    EXEC Dbms_Java.Grant_Permission(ODS', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');
    dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/scripts/CVIM_Rpt_ExportCSVFile', 'execute' )

    DUPLICATE
    ===============================================================
    Issue with Executing OS commands from Stored Procedure
    ==============================================================

  • Is there an issue with streaming videos direct from itunes? I

    Is there an issue with streaming videos direct from itunes? I have good wifi but films just buffer , doesn't happen on flixster on netflix , wonder if there is any tweak to watch a film uninterrupted , because it is very frustrating? Thanks

    Apple appears to be having trouble with the iTunes Store servers right now.
    (81070)

  • Issues in employee replication from ECC to CRM through ALE/IDOC

    Hi,
    We are replicating the employees from ECC to CRM through ALE/IDOC.
    Some times for some employees, the Idoc status in CRM is  52(Application document not fully posted) in CRM (WE02 tcode)
    If I see the details its showing as " Identification Category BPCCOD is Not Assigned to Any Identification Type"
    What I need to do now to avoid this.
    Pl suggest
    Regards
    BABU.

    Hi Babu, I'm having the same error when I replicate my employes. I have define  BPCCOD in  spro - Cross-Application Components - SAP Business Partner - Business Partner - Basic Settings - Identification Numbers,  but this configuration does not resolve my problem.
    Could you resolve this problem?.
    Pls. let me know...
    Regards,
    George

  • Business partner(employee) is not replicated from ECC to CRM

    The Business partner Not replicated in CRM.Two Sales organization have been maintained for the employee for the different time lines in ECC.Checked the BDOCs and the validation error occur in FM CRM_BUPA_MAIN_VAL .The BDOCs message was saying the BPGUID was missing .Could anyone please suggest what could be the root cause of the data not replicated from ECC to CRM.

    Hi Pragnya,
    This is the case where at the time of creation of BP there was some issue with replication.
    The BP itself is not there in CRM or only the changes are not reflected?
    In such scenarios, perform following steps for successful replication:
    1. Go to TCode: CRMM_BUPA_MAP
    2. Enter the BP no. {initially it says it does not exist}
    3. Enter ERP customer no. and press enter, the BP GUID gets filled
    4. Click on "Gather Information about customer" [you can see the status of the object]
    5. Now again enter the BP no. -> The customer is available in CRM now.
    Regards,
    Swagi

  • Problem in delta changes from ECC to CRM for Customers created in CRM systm

    Dear all,
    I am replicating customers between CRM and ECC and vice versa. The Delta changes are replicating from CRM to ECC system, but not happening from ECC to CRM system.
    I have created some customers in CRM system and changed some address data, those changes are perfectly updating in back end ECC system.
    But when I make some changes for the same customer from ECC system, those changes are not updating back in the CRM system.
    I could not get the problem where exactly is coming. I request your expertise to help me in resolving this issue. I believe all middleware and pide settings are correct.
    Your suggestions are highly appreciated.
    Best regards
    Raghu ram

    Hi Shanthala,
    Thank you very much for your prompt response, I have checked Customer_main adapter object in R3AC1, no filter has been found there.
    and in R3 table TBE31, I could not find entry for CRS_CUSTOMER_COLLECT_DATA for APPLK = BC-MID.
    As well in CRMRFCPAR table I could see X assigned to field named with 'In Queue Flag', but I could not find DISCARDDAT for CRM (User) settings.
    Kinldy help me to resolve the issue.
    Your suggestions will be highly appreciated.
    Best regards
    Raghu ram

  • Replication of partner function from ECC to CRM

    Hi experts,
    We are working on CRM 5.0 with back end ECC 6.0
    In our scenario we are creating sales orders in ECC and replicating it to CRM.
    Now the problem is we have a partner function created in ECC which is entered manually ( not through partner determination procedure) . We have also created the same partner function in CRM but we are not able to populate that partner function field automatically.
    Is there any way by which we can populate this ?
    Points will be rewarded for suitable solution.
    Regards,
    Madhu

    hi
    just mainatining partner function wont be enough ,you need to do two things
    1. mapping of BP function between CRM and ECC
    2. specify the path from ECC to CRM so that they can be replicated successfully
    so,IMG: Customer Relationship Management -> Basic Functions -> Partner Processing -> Data Transfer -> Distribution of Partner Functions from SAP ECC into CRM
    this is the path where in distribution you need to specify the path
    and maintain there the mapping between the R3 and CRM
    RFC destination should be CRM and source is ECC
    best regards
    ashish

  • Replication of Plant data from ECC to CRM

    Hello Experts,
    Kindly require your assistance in the following requirement:
    I have replicated the quotes from ECC to CRM.  However, the plant information for all the materials are not getting replicated for quotes from ECC to CRM.
    I have followed the Note 493947 but in vain.
    Only respite being, when the quote moves from CRM to ECC, the plant is getting determined. But it is failing when the quotes move from ECC to CRM. There is no plant determination.
    Kindly request your guidance on this.
    Regards,
    Venkat.

    Hi Venkat,
    'Delivery Plant' field doesn't exist in CRM data model. Please refer to note  note 504169 which will give you the reason as to why some KNVV fields in R/3 system don't exist in CRM. Please read the details provided for "Field name: KNVV-VERSG, KNVV-KTGRD, ..." in the note 504169. This will tell you why 'Delivery Plant' (KNVV-VWERK)
    field doesn't exist in CRM.
    Due to different CRM and R/3 data models KNVV-VWERK field is not exchanged with CRM. Now if you want to enable this data exchange then you will have to enhance CRM data model and then with the help of user exits you can enable the data exchange. Please refer to note 513313 which will give you an idea about these data exchange user exits.
    Please be aware that note 513313 is not a direct solution to your problem but this note describes in detail how you can enable data-exchange between R/3 and CRM.
    Best regards
    Christophe

  • Integrating Data From ECC to CRM

    Hi  Experts,
    My requirement is, After Updating the Material master data in ECC , the same updated data is integrated with the corresponding data of the Product Master in CRM.
    Problem: to map the data from ecc to CRM , I am supposed to call this  RFC Fm ( existed in CRM side) from ECC using RFC Destination.
    to map the data to this TABLE parameter , In ECC side I don't have similar strcture that was exist in the SRM side. so could any body help me how can i send the data from ecc to this fm existed in SRM.
    Thanks & Regards.
    Naga Priyanka. T
    Edited by: Priyanka Tubati on Feb 2, 2010 10:35 AM
    Edited by: Priyanka Tubati on Feb 2, 2010 10:38 AM

    Hi Kumar,
    Please select the following parameters when downloading the HR Org from CRM:
    You can do this  in the program RHALEINI (or in the transaction PFAL, which has the same function)
    Tx: SM30--> This scenario is activated in T77S0: ALE REPLI
    Objects:
    1. Plan Version: 01
    2. Object Type:  *
    3. Object Id: Copy the Object Ids which you want to transfer from HR System
    4. Object Status: *
    Reproting Period: All
    Structure Parmaters: Blank
    Transfer Mode:
    Insert: Complete distribution, this will delete the exisiting and recreate it in Target System
    Update: this will update the change records in CRM system
    Message Types: HRMD_ABA
    Also check SAP Note: 119780
    Hope this helps.
    Regards,
    Madde

  • Error in Initial Load of Products from ECC to CRM

    Hi ,
        Im getting below errors In initial load of MATERIAL from ECC to CRM.
    <b>Data cannot be maintained for set type COMM_PR_MAT
    Data cannot be maintained for set type COMM_PR_UNIT
    Data cannot be maintained for set type COMM_PR_SHTEXT</b>
    <b>My Analysis is</b> 
      I found these set types are already assigned in other base category and around 100+ materials are created using this base category.
      After initial load of DNL_CUST_PROD1, i found these set types are not assigned to any of the categories of hierarchy R3PRODSTYP. Since R3PRODSTYP is not having above set types, my initial load is failing.
    <b>Required Solution</b>
      Is there any other way, I can download materials from ECC to CRM, with out deleting the existing materials and Z hierarchy created earlier from CRM.
    Regards,
    Prasad
    Message was edited by:
            SAP CRM

    Hi there,
    Try to attach the Set Types:
    "COMM_PR_MAT", "COMM_PR_UNIT", "COMM_PR_SHTEXT", COMM_PR_BATCH, COMM_PR_LGTEXT, COMM_PR_LGTEXT1,COMM_PR_LGTEXT2,
    to the Category "MAT_" and then run the Initial load again.
    It should work now unless you have some other issues.
    Best regards,
    Pankaj S.

  • How to transfer Material Master data information from ECC to CRM

    Hi ,
      Changes to the Classification data of Material master for the class type-001 and Custom
    ZFIELDS on mara will trigger the Interface functionality. Any changes to the
    custom zfields and  classes or characteristic values on Material Master must transfer the information from ECC to CRM. By using RFC .
    Regards,
    Pavan

    Hi,
    You need to use change pointer to do this. Go to transaction SALE,
    expand MODELLING AND IMPLEMENTING...
    expand MASTER DATA DIST...
    expand REPLICATION OF MODIFIED DATA
    You may need to maintain distribution model in SALE.
    Cheers.
    Reward if useful

Maybe you are looking for

  • My Airport is USELESS with Snow Leopard..What will it be with Lion?

    Mr Jobs, Like you would every get this . I am super annoyed wth Snow Leopard.I ususally wait for the second to last or last version of an OS before I upgrade. The reason is simple, my Apple computer has worked fine, I didn't have any big need to upgr

  • Roles in SUP

    Hello, I have created a user in SCC and want to give some role to approve requests in SAP. So this user is not a SAP user but i want to give role to him to approve some scenerios. Is this possible with SUP Roles. Thanx in Advance

  • HT4061 Just purchasedan ipad 16GB and don,t know how to use it.  Need a turorial

    Just purchased an ipad16GB and don't knoe how to use it.

  • TM Skipping some files during backup

    I've posted this question over on the TC board, because at first I thought it was related to the actual hardware. However, today I did a new back up to an external WD drive via firewire. The back up when fine, as did a few subsequent backups. Then TM

  • Need moD help employee want advice for my aunt

    Hi there In a nut shell mu grandad house has my aunts bungalow in the grounds He has two lines coming in One business set up for him - bb is not abled on this line My aunts line - bb enabled but does not have a router with more than one port has the