Replication of Pricing Conditions between ECC and CRM

Hi All
I have a couple of queries regarding replication of pricing information between ECC_CRM. We maintain the filter settings for Pricing procedures, access sequences and condition types in the object DNL_CUST_CND_PR, and accordingly these are replicated from ECC to CRM. My Questions:
1. If some pricing procedure is created in CRM and this needs to be replicated to ECC, Can we achieve this?
2. Would DELTA be active on these objects, in the sense if some changes are made to a pricing procedure in ECC, would they flow automatically to CRM?
Thanks in advance
Best Regards,
Ram Sushanth

Hi Chandra and Swaroop
Thanks a lot for your response.
From your replies, now, this is my understanding (Pl correct me if am wrong)
1. Replication of Pricing Procedure from CRM to ECC is possible.
It would be of great help if you could elaborate on the procedure to do so or provide pointers for documentation in this regard.
Because, for replication from ECC to CRM, we perform an initial load on the object DNL_CND_CUST_PR or DNL_CUST_CNDALL.What is the object that we need to execute from replication from CRM to ECC?
2. DELTA would be active only on condition records, but not on Condition types and Pricing Procedures and if any pricing procedure is changed in ECC, we would need to perform Initial Load again.
Thanks in advance
Best Regards
Ram Sushanth

Similar Messages

  • Communication between ECC and CRM

    Hello,
    I am in phase of showing communication between SAP CRM 5.0 and ECC 6.0.
    I am struggling with finding some simple transactions which are common in both, with which I can show correct connectivity between ECC and CRM.
       I need to save some data from CRM and access the same via transaction within ECC, save some data via ECC and access it via CRM. I already established RFC link between ECC and CRM.
    Probably communication between SD module of ECC with CRM.
    Can you please help me out with this, a clue/correct direction will be of very helpful. Basically I want to know, what transaction I can use for same.
    Any help is really appreciated.
    Thanks
    -Vishal

    Hi Glenn,
          I followed all steps in document mentioned above. In the end during execution of transaction I selected appropriate source and destination, when I click start transfer objects, it gets stuck in waiting phase.
    Among those steps I was not able to perform step#10. Creating Subscriptions for OLTP. My ERP is not displaying this option under subscription wizard. Should it be reason for not starting transfer ? I also do not see ERP logon screen when I select transfer.
    My another question is when transfer will complete, where I'll be able to see transferred objects within ERP database ?
    Thanks
    -Vishal

  • Optimize the performance of the RFC call between ECC and CRM

    Hi,
    We are planning to extract sales orders, sales activites and service orders to dispaly it on the  PDF factsheet of the account.
    As of now, the PDF factsheet takes a long time to retrieve the data from ECC to CRM. Can you please suggest us on ways to  optimize the performance of the RFC call between ECC and CRM.
    Thanks in advance,
    Vamsi.

    Hello,
    [SAP Note 636906 |https://service.sap.com/sap/support/notes/636906]is quite useful here.
    Many times, the performance is poor due to function module CRM_CCKPT_EXPORTSUMMARY. This function module gets the customer number, the sales organization and the fact sheet view. If in CRM customizing, you use complete view (001), then all the views in ERP including all the info blocks will be retrieved, which will cause performance issue.
    To solve the issue, please use a limited view to retrieve the data from ERP - especially a view, which does not contain info block 013.
    Hope it helps
    Joaquin

  • Need to syncronize the Regions between ERP and CRM

    Hi MW gurus,
    I didn't find a adapter object to synchronize the 'Regions' between ERP and CRM. The regions are stored to the table T005S in ERP and the same table exists in CRM too.
    Will any one of you adivce on how to sync. these two tables using a replication object?
    Thanks,
    Raj

    Dear Friends,
    Start initial load of object "DNL_CUST_BASIS5"
    Refer:
    http://www.scribd.com/doc/33952988/Download-Country-Region-V-T005S-From-R3-to-CRM-2007-06Jun2010
    Thanks & Regards,
    Rajagopal
    Chennai - INDIA

  • Join condition between PO_REQUISITION_HEADERS_ALL and WF_NOTIFICATIONS

    Hi,
    Could anyone tell me what is the join condition between PO_REQUISITION_HEADERS_ALL and WF_NOTIFICATIONS?
    I joined these two tables by WF_NOTIFICATIONS.ITEM_KEY = PO_REQUISITION_HEADERS_ALL .WF_ITEM_KEY.But I cannot found some approved requisitions item key in WF_NOTIFICATIONS table.
    Please help.
    I paste my query below:
    SELECT PRH.ORG_ID ORG_ID,
    WF.ITEM_KEY,
    WF.FROM_ROLE,
    PRH.WF_ITEM_KEY,
    WF.RECIPIENT_ROLE APPROVERS_NAME,
    TRUNC(NVL(PRH.APPROVED_DATE, '')) DATE_APPROVED,
    WF.SUBJECT SUBJECT,
    PRH.DESCRIPTION REQ_DESC,
    PRH.SEGMENT1,
    (SUM(NVL(PRL.AMOUNT, 0)) +
    SUM(NVL(PRL.UNIT_PRICE, 0) * NVL(PRL.QUANTITY, 0))) REQ_AMT,
    GL.SEGMENT1 || '.' || GL.SEGMENT2 || '.' || GL.SEGMENT3 || '.' ||
    GL.SEGMENT4 || '.' || GL.SEGMENT5 || '.' || GL.SEGMENT6 || '.' ||
    GL.SEGMENT7 || '.' || GL.SEGMENT8 CHARGE_ACCT
    FROM APPS.WF_NOTIFICATIONS WF,
    APPS.PO_REQUISITION_HEADERS_ALL PRH,
    APPS.PO_REQUISITION_LINES_ALL PRL,
    APPS.PO_REQ_DISTRIBUTIONS_ALL PRD,
    APPS.GL_CODE_COMBINATIONS GL
    WHERE WF.FROM_ROLE IN ('GHAWKINS', 'GHALVERSON', 'NCERNOTTA', 'DCOLLOPY', 'RHAY')
    AND BEGIN_DATE > SYSDATE - 60
    AND WF.MESSAGE_TYPE = 'REQAPPRV'
    AND WF.ITEM_KEY = PRH.WF_ITEM_KEY --added
    AND PRH.AUTHORIZATION_STATUS = 'APPROVED'
    AND PRL.REQUISITION_HEADER_ID = PRH.REQUISITION_HEADER_ID
    AND PRD.REQUISITION_LINE_ID = PRL.REQUISITION_LINE_ID
    AND PRD.CODE_COMBINATION_ID = GL.CODE_COMBINATION_ID
    GROUP BY PRH.ORG_ID,
    WF.ITEM_KEY,
    WF.FROM_ROLE,
    PRH.WF_ITEM_KEY,
    WF.BEGIN_DATE,
    WF.SUBJECT,
    WF.RECIPIENT_ROLE,
    PRH.APPROVED_DATE,
    PRH.DESCRIPTION,
    PRH.SEGMENT1,
    PRL.REQUISITION_HEADER_ID,
    GL.SEGMENT1 || '.' || GL.SEGMENT2 || '.' || GL.SEGMENT3 || '.' ||
    GL.SEGMENT4 || '.' || GL.SEGMENT5 || '.' || GL.SEGMENT6 || '.' ||
    GL.SEGMENT7 || '.' || GL.SEGMENT8

    Pl see if these MOS Docs can help -
    603232.1 - How to Diagnose Purchasing Document Approval Routing
    579522.1 - Forward Document Form FAQ
    431767.1 - How To View Requisition From The Email Notifications For Which Workflow Data Is Purged
    HTH
    Srini

  • Communication between ECC and SCM via XI

    I am trying to set up the scenario 'Purchase_Order_Processing' between
    ECC and SCM using XI. The SCM content for XI has been loaded into XI
    and this scenario is included in the content.
    We are running the following:
    ECC - Version 5.0 - 640 SP level 12
    XI - Version 3.0 - 640 SP Level 14
    SCM - 4.10 - 640 SP Level 12
    The connectivity between the systems has been set up as described in the configuration guides. On sending an IDOC (basic type ORDERS05) into XI I get the following error message 'Http server code 500 reason Internal Server Errorexplanation Error during parsing of SOAP header'.
    The Error XML is as follows:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!-- Call Adapter
    -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30"
    xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"
    SOAP:mustUnderstand="">
    <SAP:Category>XIAdapter</SAP:Category>
    <SAP:Code area="PLAINHTTP_ADAPTER">ATTRIBUTE_SERVER</SAP:Code>
    <SAP:P1>500</SAP:P1>
    <SAP:P2>Internal Server Error</SAP:P2>
    <SAP:P3>Error during parsing of SOAP header</SAP:P3>
    <SAP:P4 />
    <SAP:AdditionalText />
    <SAP:ApplicationFaultMessage namespace="" />
    <SAP:Stack>Http server code 500 reason Internal Server Error
    explanation Error during parsing of SOAP header</SAP:Stack>
    <SAP:Retry>M</SAP:Retry>
    </SAP:Error>
    Any assistance would be much appreciated.

    Sravya,
    Yes this an IDOC to http scenario. There was no dump at the receiver end. I've found out what was causing the problem - I was using an adapter type of HTTP. It should have been of type 'XI'. I've altered this and it works. Hopefully this will resolve your problem Vinod.
    Richard

  • One pricing condition for BOM and other for individual component

    Hello SAP gurus,
    We have two pricing condition types created and assigned in the pricing procedure which has been created with reference to PR00 and condition records are maintained for both the condition types.
    But, we want only one pricing condition type to be triggered in the sales order depending on the usage of material in the sales order. As we are selling the same material individually and as well as a component in a bundle ( BOM).
    i.e, when one pricing condition for BOM component and other for individual component
    What are the configuration steps to be taken care to get this scenario?
    Thanks in advance.
    Regards,
    KB
    Edited by: K.byla on Jan 21, 2010 1:20 PM

    Hi Sagar,
    Thanks for your response.
    Yes, we are maintaining only one material. The same material is used to sell individually and also in a BOM.
    As i have mentioned earlier, whenever the material is sold individually it should pick condition type say 'YR00' and when the same material is sold as a bundle ( BOM) , it should pick condition type " YR01" in same the pricing procedure.
    For both the condition types, the condition records are maintained.
    To give the scenario details,
    A material "X" is sold individually as a single component and the same material is also used for selling bundled with other material "Y" and the bundled material as "Z"
    means, Z=X+Y
    Pricing procedure used is say ZRA000 which contains currently the price cond type YR00.
    Now for the bundle (BOM) involvement i want to use the same pricing pricing proc. and add the new cond YR01 in it so that the system will pick the cond.type YR00 when the material is sold individually and YR01 is taken as the price when the material is sold as a bundle against the item X.
    Need to know the steps for this scenario and do i need to maintain a specific requirement ? please suggest.
    BR,
    KB

  • What is the Join condition between mtl_system_items_b and mtl_onhand_quantities_detail

    Hi,
    What is the Join condition between mtl_system_items_b and mtl_onhand_quantities_detail?
    Thanks & Regards,
    Hari Babu

    Please see the query in (Consolidate Onhand Quantity /Sum Quantity Zero in MTL_ONHAND_QUANTITIES_DETAIL (MOQD) / Concurrent Program Consolidate Inventory Onhand Quantities / Datafix for 0 Quantity Displayed For Finished Goods (Doc ID 353345.1)), is shows how to join those 2 tables.
    http://etrm.oracle.com
    Thanks,
    Hussein

  • Block Demand Depend Interfaces between ECC and SCM

    Hello All.
    Is there a way to block only interfaces of Dependent Demand between ECC and SCM.
    I need to do this because ECC writes over my plan in SCM.
    Thanks and Best Regards

    Hello PrasunM
    For example:
    When you create an Order on finished material, SCM using PP method "3 - Cover Ind. Requ." creates DepReq on raw material.
    SCM using CIF sends PlOrd, PrdOrd and DepReq to ECC. I want send only PlOrd and PrdOrd, DepReq i only need in SCM side.
    Best Regards.

  • Best communication between ECC and PI

    Hi All
    SAP is planning to adapt Enterprise Service Architecture (ESA) in the journey towards Service Oriented Architecture (SOA).
    We are working on new implementation project. We have many asynchrounous scenarios. We would like to configure acknowledgements and also like to handle errors effectively.
    Could you please suggest which communication between ECC and PI  is preferrable?
    (Webservices, IDoc, BAPI or RFC)
    Thanks
    Sai

    IDoc, BAPI , rfc - all can be used for seamless communication between ECC and PI. It is totallu dependant on the application and way information is exchanged. For master and transactional data idoc are prefered as for the acknowledgements supported by it. Not sure how effeciently we can handle system and appl ack incase of bapi/rfc. but at the same time idoc will be a drawback for sync comunication where rfc/bapi is preferd. It is SOA or ESA the concepts build in SAP are targeted to serve the enterprise needs where idoc,bapi/rfc are used for servicing the business unit objectives

  • IDocs have disappeared between ECC and PI

    Hi All,
    A couple of days ago 3 idocs went missing between ECC and PI.
    That day 293 idocs of the same message type were sent to the same partner through PI. In PI we only found 290. The 3 IDocs were sent in the same second in the early afternoon. All IDocs before and after were processed correctly.
    The IDocs are unknown in IDX5 and in Runtime Workbench on PI.
    The idocs were not in SM58.
    I found them in WE05, with the correct status. The status update from status = 01 to 30 to 03 took place in the same second.
    25 seconds later, new IDocs of the same message type were created and processed successfully by PI.
    At the time the idocs disappeared there were no problems with either ECC or PI, as far as we know.
    The interface is live for more than 2 years. In the meantime no changes have taken place.
    I have read the links below
    Finding missing IDocs
    Interface Troubleshooting Basics
    It's a mystery to me. Where have those idocs gone?
    Anybody any idea?
    Kind Regards
    Edmond Paulussen

    Hi Edmond,
    On the SAP PI system have a look in transaction IDX5. Take the IDoc number that you could not find in PI and search them in IDX5.
    If you cannot find those IDoc in IDX5 then they never reached PI.
    Regards,
    Jannus Botha

  • Data Inconsistency for 0EMPLOYEE between ECC and BI

    Hi,
    We do a full load to 0EMPLOYEE using 0EMPLOYEE_ATTR from ECC. There were records deleted for lot of employees (some action types) in ECC. This has caused data inconsistency for 0EMPLOYEE master data (time-dependent) between ECC and BI. In BI we have more records for these employees (Additional records have time-dependent range that were deleted from ECC but still exist in BI). These employee records are already being used in lot of InfoProviders. Is there an efficient way to fix this issue? One of the solution is to delete data from all InfoProviders and then delete from Master data for 0EMPLOYEE, but the deletion of employee records can happen quite often, so we don't want to take this route. Also, I tried to re-organize master data attributes for 0EMPLOYEE through process chain, but that didn't work either.
    Message was edited by:
            Ripel Desai

    Hi Ripel,
    I share your pain. This is one of the real pains of Time-Dependant master data in BW. I have been in your exact position and the only way round the issue for me was to clear out all the cubes that used 0EMPLOYEE and then delete and re-load 0EMPLOYEE data.
    I know this responce doesn't help you but at least you are not alone.
    Regards,
    Pete
    http://www.teklink.co.uk

  • Withdrawal Qty don't match between ECC and APO

    Hi Experts.
    I am facing a discrepancy for Withdrawal Qty between ECC and APO before delivery/PGI creation.
    In ECC T.code MD63 I am able to see the withdrawal Qty as expected but in APO a duplicated withdrawal Qty is being created. But this is not happening for all materials, only some specifics materials. I did a check in Material Master data and I have no found any difference between a material that is working and one that is not working...
    Can please somebody explain me why APO is dobling the Withdrawal Qty.
    Thanks a Lot
    Daniel Campos.

    Please check wthether you have dp index duplication in this problem.
    Please follow the process.
    For this process , you need to follow these steps .
    1. From the table /SAPAPO/MATKEY , find the product id of the product for which you feel there is problem .
    2. Find the location id from table /SAPAPO/LOC for the location.
    3. Use the above found 'product id' and 'location id' to find the dp index in table "/SAPAPO/DP_HEAD "  .
    Enter the planning version ' 000 ' in this table . If there is some error you will find multiple entries of the 'dp index ' in this table for the ' 000 ' planning version. If error found use below program to delete the dp index .
    4.  Precaution should be taken before we delete the 'Dp Index' as the consumption history is lost due to this .          In the program  'Z_DEL_WITHDRAWL'  there are 2 check boxes " update " and " list ". List will show the DP index and update will delete it. Need to extremely careful in this program as wrong selection will cause problem .

  • Difference Between ECCS and BCS

    Hello Everyone
    Can any one explain briefly the difference between ECCS and BCS.
    Your response will be highly appreciated.
    Regards.
    DC

    Quick answer: EC-CS is on the R/3 platform, while BCS is on the BI platform.
    This topic has been discused numerous times - please search the forum for more details if required.

  • Any defference  display icon between ecc and ecc6

    Hi,
    any defference  between ecc and ecc6  to display ICON
    my problem is i was run the one program in ecc  then output shows with icons.
    same program run in ecc6  output is same but ther is no icons like ecc
    Regards
    naresh

    Hi
    Good
    Yes you could find some new icons in between ECC and ECC 6.0 but I dont think there is lots of difference between these two, though you have not mentioned the program name it is hard to give you the correct reply on that, but yes in some standard program cases you may find this kind of problems.
    Thanks
    mrutyun^

Maybe you are looking for

  • Max number of columns in table for compression

    i was told that 256 columns is the max number in a single table for oracle to do compression on table. Can anyone confirm this ?

  • Info about the pictures

    When I click on the property options for a picture at the end there is a button which says "hidden"i thought it would put those pictures under a password but now I can't find them, did I loose those pictures? Solved! Go to Solution.

  • Creating Audit Data with Triggers

    I want to create an audit table like AuditTable( FieldName Varchar2(40), OldValue Varchar2(100), NewValue Varchar2(100), User varchar2(20), UpdtDate Date) Whenever Table X is updated, then the Trigger should capture the changes and create a row for e

  • Creating Web Galleries in Aperture 3

    Does anyone know of any third party web gallery plug-ins for Aperture? The standard templates are very limiting and I need to add logos and far more information than is currently supported. Currently I am exporting the jpegs from Aperture and importi

  • Adobe reader (acrobat) 与其他阅读器显示的符号大小不同

    用Latex生成的pdf文件. 生产环境如下:用winedt编译器+MikTex系统+Xelatex编译, 正文中加载宏包 \usepackage{fontawesome}. 生成的文档,用SumatraPDF,Foxit等pdf阅读器均显示正常. 但用adobe reader 9 (X) 均不正常. 如图所示: