CRM 5.0 & IS-U EHP4 Replication Problem

Hi all,
in the context of an upgrade of our IS-U (ECC 6.0) to EhP4 we experience an issue during the replication of contracts (Object SI_CONTRACT) from IS-U into CRM (CRM 5.0). As we didn't find any trace of a similar issue somewhere (Google, SAP Notes) I'll breifly describe the issues as well as our solution blow.
After the upgrade the contract BDocs sent from IS-U to CRM (e.g. after performing a move out for a BP) would appear to be processed successfully (green icon in SMW01). However when analysing the BDocs in detail we noticed that they contained no data. Strangely enough, request load for contracts from CRM still worked seamlessly. After some debugging we identified that the issue was that the BDocs (more precisely the BAPIMTCS structure) sent from IS-U contained structure names that where not expected from the mapping module in CRM. The underlying reason was that in table TBE31 the entry for the event IBSSICON had been changed from EECRM_CONTRACT_COLLECT_DATA to ECRM_CONTRACT_COLLECT_DATA.
This table is read in the function module EECRM_DELTA_DOWNLOAD_IBSSICONT. The entry for the event IBSSICON determines which function modules are used to collect the contract data in IS-U and also which function modules are used to preform the mapping to the BAPIMTCS structures.
Changing the entry back to the initial contents solved our problem. After the change the BDocs where filled and processed correctly. This fix seems to be necessary for all CRM version < 5.2.
Christian
Edited by: Christian Drumm on Sep 29, 2010 9:00 AM
Included information on CRM 5.2

Hi Gobi,
Thank you for advice. But:
I've created fields not by using AET - I used documentation that Nicolas suggested me above.
I've enhanced tables and structures that were mentioned there with my z-fields for both sides (CRM and ERP).
Also I looked CRMC_BUT_CALL_FU for CRM Inbound BUAG_MAIN - corresponding standard FMs are marked for call.
Any ideas?
Thanks in advance.
BR,
Evgenia

Similar Messages

  • CRM BP-R/3 ROLES SYNC ,REPLICATION PROBLEM

    You create a business partner in the role 'general business partner' in the
    R/3. The BP is synchronized correctly with the CRM.
    Afterwards, you add the role 'media customer', 'sales customer' or
    'retailer' to the R/3
    . The corresponding BP is not updated in the CRM,
    that is, the BP is not created in the role 'customer', 'interested party',
    'consumer' or 'competitor' and the sales data is not synchronized to the
    CRM.
    DOES ANY ONE HAVE SOLUTION TO THIS PROBLEM.

    Hi Prathiba,
    The Issue is because of the note  :1163979
    The Note : 1243180 will provide you a right fix for your problem.
    Best Regards,
    Vignesh Ravikumar

  • How can i solve this replication problem between TT and ORACLE

    Hi
    I have an application that using AWT cashgroup implement the replication between TT (7.0.6.7) and ORACLE(10g);
    but i encounter this problem:
    16:16:50.01 Err : REP: 2302682: ABM_BAL_WH:meta.c(4588): TT5259: Failed to store Awt runtime information for datastore /abm_wh/abm_bal_ttdata/abm_bal_wh on Oracle.
    16:16:50.02 Err : REP: 2302682: ABM_BAL_WH:meta.c(4588): TT5107: TT5107: Oracle(OCI) error in OCIStmtExecute(): ORA-08177: can't serialize access for this transaction rc = -1 -- file "bdbStmt.c", lineno 3726, procedure "ttBDbStmtExecute()"
    16:16:50.02 Err : REP: 2302682: ABM_BAL_WH:receiver.c(5612): TT16187: Transaction 1316077016/357692526; Error: transient 0, permanent 1
    the isolation level of my date store is read-committed ,and the sys.ODBC.INI file is also set Isolation=1(readcommitted mode)
    so ,I still wonder how the error ORA-08177!
    how can i solve this replication problem?
    thank you.

    I suspect this is failing on an UPDATE to the tt_03_reppeers table on Oracle. I would guess the TT repagent has to temporarily use serializable isolation when updating this table. Do you have any other datastores with AWT cachegroups propagating into the same Oracle database? Or can you identify if some other process is preventing the repagent from using serializable isolation? If you google ORA-08177 there seem to be ways out there to narrow down what's causing the contention.

  • Session in-memory replication problem

    Hi,
              I am running into some cluster HttpSession replication problems. Here is
              the scenario where replication fails (all servers mentioned here are a
              part of a cluster).
              1a - 2 Weblogic servers (A&B) are running - no users logged in,
              2a - user logs in and a new session in server A is created.
              3a - after several interactions, server A is killed.
              4a - after user makes susequent request, Weblogic correctly fails over
              to server B
              Problem: Not entire session data is replicated. The authentication info
              seems to
              be replicated correctly but there are some collections in the session of
              server A
              that did not make it to the session in server B.
              The interesting part is this: If there is only one server A running to
              begin with and a user
              interacts with it for a while and only then server B is started, when
              after server B starts up
              server A dies - the entire session (which is exactly the same as in the
              failing scenario) is
              corretly replicated in B, including collections that were missing in the
              failing scenario.
              How can this be possible ????
              Thanks for any info on this one - it really puzzles me.
              Andrew
              

    Yes, you are on the right track. Everytime you modify the object you should call
              putValue. We will make it more clear in the docs.
              - Prasad
              Andrzej Porebski wrote:
              > Everything is Serilizable. I get no exceptions. I did however read some old
              > posts regarding
              > session replication and I hope I found an answer. It basically seems to boil
              > down to what
              > triggers session sync-up between servers. In my case , I store an object into
              > session and
              > later on manipulate that object directly wihotu session involvment and the
              > results of those manipulations
              > are not replicated - no wonder if HttpSession's putValue method is the only
              > trigger.
              > Am i on the right track here?
              >
              > -Andrew
              >
              > Prasad Peddada wrote:
              >
              > > Do you have non serializable data by any chance?
              > >
              > > - Prasad
              > >
              > > Andrzej Porebski wrote:
              > >
              > > > Hi,
              > > > I am running into some cluster HttpSession replication problems. Here is
              > > > the scenario where replication fails (all servers mentioned here are a
              > > > part of a cluster).
              > > > 1a - 2 Weblogic servers (A&B) are running - no users logged in,
              > > > 2a - user logs in and a new session in server A is created.
              > > > 3a - after several interactions, server A is killed.
              > > > 4a - after user makes susequent request, Weblogic correctly fails over
              > > > to server B
              > > >
              > > > Problem: Not entire session data is replicated. The authentication info
              > > > seems to
              > > > be replicated correctly but there are some collections in the session of
              > > > server A
              > > > that did not make it to the session in server B.
              > > >
              > > > The interesting part is this: If there is only one server A running to
              > > > begin with and a user
              > > > interacts with it for a while and only then server B is started, when
              > > > after server B starts up
              > > > server A dies - the entire session (which is exactly the same as in the
              > > > failing scenario) is
              > > > corretly replicated in B, including collections that were missing in the
              > > > failing scenario.
              > > >
              > > > How can this be possible ????
              > > >
              > > > Thanks for any info on this one - it really puzzles me.
              > > >
              > > > Andrew
              > >
              > > --
              > > Cheers
              > >
              > > - Prasad
              >
              > --
              > -------------------------------------------------------------
              > Andrzej Porebski
              > Sailfish Systems, Ltd. Phone 1 + (212) 607-3061
              > 44 Wall Street, 17th floor Fax: 1 + (212) 607-3075
              > New York, NY 10005
              > -------------------------------------------------------------
              

  • DFS Replication Problem

    Hi Friends,
    I have windows server 2003 domain at two location before somw month back its replication data
    and its working fine but now i unable to see replicate data i mean i thing having replication problem
    i gotted some evint id error on server
    Event id error :- 5002  , 4202  , 1925 ,13568
    Please help me .
    Thanks,
    Madhukar

    The 4202 is staging quota size is too small.  
    Run these 2 Power Shell commands to determine the correct Staging Quota size:
    $big32 = Get-ChildItem DriveLetter:\FolderName -recurse | Sort-Object length -descending | select-object -first 32 | measure-object -property length –sum
    $big32.sum /1gb
    Take that resulting number, round it up to the nearest whole integer, mulitply that times 1024 and enter that number on the Staging tab of the Properties of a replicated folder in DFS Mgt.
    More info here:
    http://blogs.technet.com/b/askds/archive/2007/10/05/top-10-common-causes-of-slow-replication-with-dfsr.aspx
    Run this command to tell you the status of Replication:
    wmic /namespace:\\root\microsoftdfs path DfsrReplicatedFolderInfo get replicatedFolderName, State
    0: Uninitialized
    1: Initialized
    2: Initial Sync
    3: Auto Recovery
    4: Normal
    5: In Error
    Let us know how that goes.

  • CRM-BW replication problem.

    Hi friends,
    I have edited existing Standard CRM extractor with all requried steps in CRM Dev system
    Later i have activated in RSA6 in CRM Dev system and pressed Data source Transport button and further saved in CRM Dev system.
    Later in BW Dev system i have created new Infosource relevent to this extractor, but It is showing old CRM extratcor without any changes.
    Please let me know how can we make all new changes replication to BW Dev system.
    I have also, performed replication in BW  using RSA1 and also using a programe but No use.
    Is i am missing any step after RSA6 in CRM?
    Plz suggest.
    Thanks.

    HI,
       Symptom
    Inconsistency in the assignment of the info-object for the Territory extraction in One order datasources
    If the one order Infosources are activated then the mapping of the Datasource fields TERR_GUID and PATH_GUID are assigned to the same infoobject 0CRM_TR. Therefore, activation of the infosource causes an error.
    Other terms
    Sales Analytics, Service Analytics, One order data Extraction, Territory extraction
    Reason and Prerequisites
    PATH_GUID field of the Datasource is not marked as field hidden in BW
    Solution
    Please note that this correction is available from the following CRM Releases
    CRM 4.0 SP08
    The correction is relevant for the following datasources
    0CRM_LEAD_H
    0CRM_LEAD_I
    0CRM_OPPT_ATTR
    0CRM_OPPT_H
    0CRM_OPPT_I
    0CRM_QUOTATION_I
    <b>0CRM_QUOTA_ORDER_I</b>
    0CRM_SALES_CONTR_I
    0CRM_SALES_ORDER_I
    0CRM_SRV_CONFIRM_H
    0CRM_SRV_CONFIRM_I
    0CRM_SRV_CONTRACT_H
    0CRM_SRV_PROCESS_H
    0CRM_SRV_PROCESS_I
    In order to have this functionality available, please re-activate the datasource in the OLTP (CRM system) and replicate the datasource in the BW systems
    The correction is the following:
    The Datasource had the fields Territory Guid and Path Guid. The path guid should be marked as Field hidden in BW.
    Or in other words in the datasource maintenance in the transaction BWA1, for the extract structure tab, the field PATH_GUID should have the value for Selection as 'A'.
    If you still have any problems, do let me know.
    regards,
    ravi

  • BP Replication Problem v2  (CRM 5 - ECC 6)

    Hi¡¡¡¡
    I’m trying to replicate BP between CRM 5 ->> ECC 6, but not successful. I just get replicating BP’s but is not  creating a customer in the ECC system.
    I have maintained all steps mentioned in building block - C03 (CRM Master and Transaction Data Replication). I have maintained separate account group approach.I have defined an account group Z001 for customers that are created in the CRM system and have to be replicated to the ECC system (external number assignment in the receiving system).I made sure that number ranges are in sync in both the systems. Particularly in PIDE, mapping classification Customer 'B'  and Consumer “E” to 'Z001'.
    In the SMW01, the BDoc is green.
    Please help me to resolve this problem. I am in real urgency.
    Thank’s
    Jose Alvarez
    [email protected]
    Santiago, Chile

    Laercio,
    Your business partner grouping in CRM is setup wrong.  The ZLEV that corresponds to the R/3 CLEV should actually be setup as an external number range in CRM.
    The way this working is the following:
    If the number originates in R/3 then CRM must use an external number range
    If the number originates in CRM then R/3 must use an external number range.
    So your CLEV account group should map to a CLEV partner grouping in CRM and the ZLEV must map to ZLEV grouping in R/3.
    The CLEV in R/3 will be internal numbering
    The ZLEV in R/3 will be external numbering
    The CLEV in CRM will be external numbering
    The ZLEV in R/3 will be external numbering.
    I believe if you do this, then it should allow you to keep the numbers the same for those two account groups.
    For issue two:  You need to make sure that all your sales areas are setup and the tuples are defined per sales area.  Once the tuples have been defined and attributes setup on the organizational units, then you can do another initial load and the sales area should come over again.
    Good luck,
    Stephen

  • Customer Replication problem from R/3 to CRM

    The scenario is: We have upgraded R/3 to 4.7 and the logical system names have changed. CRM is still the same one ( 4.0 ).
    Everything works fine. If I create an order it goes to R/3 and If I change an existing customer in CRM or R/3 it get replicated into the other system.
    But if I create a new customer in R/3, it does not go to CRM.
    All the tables are ok with the correct logical name and RFCs are working fine. Serial numbers are ok too and Delta download is active. I do not know what else I can check.
    Did you have any similar situation? Any ideas of what I could check?
    Any input is highly appreciated.
    Thanks!

    Hi Ankur & Michael
    your points did help me to rectify the problem. here was another solution i did try and it worked out.My problem was in table CRMPAROLTP, in the field CONSUMER. It seems that 4.7 does not need to have this field filled. So I remove the entry and the information flows.
    PS. I had awarded the points for both of you.
    Thanks
    SP

  • ATP check for CRM Orders using ECC is creating a replication problem

    Hi Guys,
    I have created an order in CRM and it replicated to ECC,however the issue is I'm unable to change the order any more in CRM, message "Document is being distributed". I'm getting this issue after activating ATP check for CRM -ATP check is working perfectly.
    Before this ATP check, the Order replication was working perfectly and i can do the changes to order in both systems.
    In advance many thanks for your your help.
    Thanks and Regards
    SRIM

    hI,
    Thanks for your response,
    There are no messages in the middleware (smq2 - q1), but this error only started occurring after I activated the ATP check.
    I have also checked the incompletion log at ECC - document is completed.
    Before this ATP check activation the order replication was working correct/y and i can do changes at both ECC and CRM. But now even if i change the order in ECC those changes are not getting replicated infact  queue is not getting generated.
    BDOC is showing sent to receivers (not all confirmed)  BUS_TRANS_MSG.
    Thanks and Regards
    srikanth

  • R/3 to CRM product replication Problem

    Hello Experts,
    I am facing middleware issue.
    We have sap CRM and R/3 systems are there.
    I could replicate all the products from R/3 to CRM system except one product.
    I checked that product in R/3 there that is available but it is not available in CRM system.
    Please let me know hoe to replicate only that particular product from R/3 to CRM system.
    Thanks

    HI
    Things you need to do
    i. See if there are any BDocs stuck in the SMWO1 for the product in question. if none then do the below
    i. Create an explicit download request for this product. Go to TCODE R3AR2. Give a name starting with Z ; Adapter object would be MATERIAL. Then click on request detail and enter the following
    Table name : MARA
    Field name : MATNR
    incl/exl - INclusive deined set/array
    option - Equality (=Low)
    Low = Enter your product number that you want to download from R/3.
    SAVE
    ii. Go to tcode R3AR4 and enter the object created in previous step. Enter source site and target site.
    SELECT EXECUTE.
    Now see if the product is downloaded or not. If not, check BDocs and queues.
    please award if it helps.
    Sandy

  • Material Replication problem from SAP ECC to CRM 2007

    I am trying to load material data from SAP to CRM.  Materials are in general coming across however i have a lot of errors visible in smw01 with the following entries:
    @0A@     BDoc validation error     PRODUCT_MAT     mBDoc Validate     06/04/2010     14:20:05     QAS100     R3AI_MATERIAL     MW_RFC_USER     DF6FDBE147AC2EF1B467002264F6091A
    On closer examination i can see that the specific issue relates to teh following:
    A key was used twice for multirow set type CRMM_PR_TAX
        Message no. COM_PRODUCT512                        
    I can see on closer examination of the individual entries why the issue is occuring when i show the Bdoc message extra data I can see that there are multiple entries for CRMM_PR_TAX
    CLI PRODUCT_GUID                     TAX TAX TAX_ TAX_GROUP            TAX_TARIFF_CODE  T C VALID_FROM          VALID_TO            UPNAME       H LOGSYS                                                                               
    400 00000000000000000000000000000000 IE      MWST NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    I also note that the PRODUCT_GUID is blank 00000000000000000000000000000000 whic shouldn't be the case.
    It's just not clear to me what i need to do to resolve the issue
    Any help would be greatly appreciated
    Regards
    Eddie

    I am trying to load material data from SAP to CRM.  Materials are in general coming across however i have a lot of errors visible in smw01 with the following entries:
    @0A@     BDoc validation error     PRODUCT_MAT     mBDoc Validate     06/04/2010     14:20:05     QAS100     R3AI_MATERIAL     MW_RFC_USER     DF6FDBE147AC2EF1B467002264F6091A
    On closer examination i can see that the specific issue relates to teh following:
    A key was used twice for multirow set type CRMM_PR_TAX
        Message no. COM_PRODUCT512                        
    I can see on closer examination of the individual entries why the issue is occuring when i show the Bdoc message extra data I can see that there are multiple entries for CRMM_PR_TAX
    CLI PRODUCT_GUID                     TAX TAX TAX_ TAX_GROUP            TAX_TARIFF_CODE  T C VALID_FROM          VALID_TO            UPNAME       H LOGSYS                                                                               
    400 00000000000000000000000000000000 IE      MWST NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    I also note that the PRODUCT_GUID is blank 00000000000000000000000000000000 whic shouldn't be the case.
    It's just not clear to me what i need to do to resolve the issue
    Any help would be greatly appreciated
    Regards
    Eddie

  • HR link replication problems (ALE)

    Dear experts:
    We are facing a problem with HR to CRM Employee replication.
    The replication of some links is not working.
    We detected that the links replication (HRP1001) CP-OS are not working for those employees which are replicated in CRM with an alias (relation 207, u201CIs identical tou201D) with different number from HR personal number.
    I give some examples to illustrate the problem:
    One employee replication which is working well shows in HRP1001 this:
    OTYPE OBJID      PLVAR RSIGN RELAT ISTAT   .....  SCLAS SOBID
    CP    00000477   01    B     207   1         ...   BP    0000000477
    Note that SOBID number and OBJID are the same
    One employee replication which is not working well shows in HRP1001 this:
    OTYPE OBJID      PLVAR RSIGN RELAT ISTAT   .....  SCLAS SOBID
    CP    50000112   01    B     207   1              BP    0000001524
    Note that SOBID number and OBJID are not the same.
    Since the OBJID number 50000112 seems an internally generated number, I looked at number ranges, and I realized that for some reason, the system is giving internal numbers to some employees, taken from the number Object  RP_PLAN, Subobject is 01$$.
    The replication of the links related to the Employees with an alias with internal number is not working, the others are working well.
    Has anyone some idea of how to face this problem?
    Thank you in advance.
    Jordi

    A CAS and eight primaries: just being curious: how many clients are you managing in total?
    See
    http://blogs.technet.com/b/umairkhan/archive/2014/02/18/configmgr-2012-data-replication-service-drs-unleashed.aspx and
    http://blogs.technet.com/b/umairkhan/archive/2014/03/25/configmgr-2012-drs-troubleshooting-faqs.aspx for troubleshooting.
    Torsten Meringer | http://www.mssccmfaq.de

  • Changing CRM BUPA Address in BDOC before Replication to ERP

    Hi Guys,
      I have a problem where we are only replicating the BUPA's standard address (home) to ERP. 
      What we need to do is at the point of replication check if the BUPA has a delivery address. 
      If so then change the BDOC address details ( or whatever ) to this delivery address - essentially overwriting the standard home address in ERP.
      Anybody know the BADI's involved?
    cheers,
    Todd

    Not sure what version of CRM you are currently in.
    However please check if the following OSS note is of any help.
    OSS Note 908157 - Error R11 123 during BP data exchange in the CRM system
    also try to bump up the trace levels to "detailed" and figure out if you get some additional error description.

  • CRM 7.0 EHP3 Installation Export CD problem

    Dear all,
    we are installing SAP CRM 7.0 EHP3 on MSSQL 2012.
    We do encounter a problem with the installation Export CD.
    SWPM is SWPM10SP05_2-20009707.SAR - SP5 PL 2, Kernel is 741 (Material Number: 51048107_8).
    Installation Export Material Number are respectively 51047869_2 and 51047869_3.
    When asked for Installation Export CD, we input the right path, but SWPM tells us that he is expecting another CD:
    You entered: E:\CD SAP\EXPORT\DATA_UNITS\EXP1 Found the label SAP:CRM:SR170EHP3:EXPORT(1/4):SAP CRM 700 EHP 3 SR1 Installation Export CD 1/4:CDxxxxxxx_1 but need the label SAP:CRM:70EHP3:EXPORT(1/4):*:*
    It seems that he asks for an older version of the Export CD.
    Has anyone already had this issue and can advice how to solve it?
    Thanks in advance.
    Kind regards,
    Andrea Visentin

    Dear all,
    ok, I'll answer myself:
    as per note 1998693 - Sapinst Error: Found the label SAP:UT:SR1740:SP05:*:* but need the label SAP:UT:740 for a similar "issue" we had installing Process Integration today, we have just realized that there is a specific section in SWPM for SR1:
    sorry for having bothered you with such a silly question :-)
    Kind regards,
    PS: changing LABEL.ASC CD-Label to non-SR1 package, works.
    Andrea Visentin

  • In memory replication problems when I bring up a new server

              I've got in memory replication set up for 6.1. It works fine if I have 2 servers
              up and 1 goes down.
              However, if I have 1 server up and a bring a second server up, the sessions blow
              out.
              E.g. I've got server A and server B.
              Both are up, both have sessions. As new sessions come in, they are replicated over
              to the other server.
              now I bring server B down. All sessions on B fail over to A.
              so far so good.
              However when I bring server A back up some of the sessions fail as soon as the server
              is back up.
              Is this a configuration issue, is this a know problem?
              This worked fine in weblogic 5.1. In 5.1 when I brought an instance back up, everything
              worked fine.
              

              It turns out the problem was caused by using an old version of the Apache Plugin.
              This problem occurred while using the 5.1 apache plugin with WLS 6.1.
              Once we realized we were using the wrong plugin and swithced to the 6.1 plugin, the
              problem went away.
              

Maybe you are looking for

  • HT4108 how can i setup video out on iphone 4

    how to setup video out on iphone 4 to be able to connect it to the tv?

  • Audio CD doesn't show up in Finder, desktop or iTunes

    Before I upgraded to Snow Leopard, I had no problems playing my audio CDs and importing them to iTunes. After I upgraded, 1 out of 5 times an audio CD won't be recognized by the OS and thus doesn't show up on the Finder, Desktop (as an icon), or in i

  • Embedded .wmv in adobe air = webkit

    Hi everbody from Adobe Air team I would like know if i can embedded .wmv file in my application in adobe Air and how do? I visited site www.webkit.org but i dont see answer. I have app air that have many video in wmv and .fla, but i can see only .fla

  • ELearning Suite 2.5 or Camtasia

    Hello- Previously on my technical site I used camtasia 6.1 software.  ITs ok to do what I do, record my computerscreen as I talk over.  Later I go back and add 10 seconds of music at the beginning and end with a powerpoint slide. Then I produce it in

  • Management points

    My organization has SCCM 2012 R2 up and running with one primary and 2 secondary servers. All 3 servers are management points.   The servers are geographically separated by between 30 and 60 miles.   Currently half the computers at location 1 are con