SAP CRM Groupware Connector for Exchange on 64 Bit platform

Hi All,
We have successfully installed SAP CRM 5.0 on Windows 2003 x64 Server R2 SP2.
OS, Database and SAP Kernel are all 64 Bit enabled.
Now we are trying to install SAP CRM Groupware Connector on the same server.
But we encounter problems with SAP Groupware Connector 2.1 for MS Exchange installer (setup.exe), which stops with the following error:
Required Software missing:
- MS SOAP Toolkit
Installation cannot be continued !
But SOAP Toolkit 3.0 definitely is installed.
Obviously the Groupware Connector is still 32 Bit.
It is the only available download in SAP Marketplace i could find.
The CD is located in the same area where the CRM installation CDs can be downloaded.
SAP does not differ between 32 Bit and 64 Bit versions.
I'm wondering if it is possible, to run a 32 Bit Groupware Connector in a 64 Bit environment.
Does anybody have experience with such a configuration ?
Or is there a 64 Bit enabled version available for download ? Where can i find this version ?
Thank you in advance.

I got an answer from SAP Support:
SAP still recommends to use 32-bit system OS in order to avoid any future confusions.
So we have to install another 32 Bit Server only for the Groupware Connector.
Thx for your interest.

Similar Messages

  • SAP Groupware Connector for Novell GroupWise

    Hi all,
    I have a task that "investigate SAP CRM and Novell GroupWise integration". I wanna ask you that:
    Can SAP CRM synchronizes with groupwise?
    do we have a SAP Groupware Connector for Novell GroupWise?
    Regards,
    Chuong Hoang

    Hi,
    sorry for my slowly respond.
    according to information shared from help.sap.com. I know that:
    "SAP provides two SAP Groupware Connectors, one for MS Exchange Server and the other for Lotus Domino Server."
    "The SAP Groupware connector consists of:
          _ SAP Groupware connector.
          _ SAP Groupware connector proxy."
    in case that I need a connection between SAP CRM and Novell GroupWise, what will I can do???
         1. Do I need to develop my own SAP Groupware connector, which consists of 2 listed things above?
         2. Is it possible to do that?
    Please help me answer these questions.
    Regards,
    Chuong Hoang

  • Configure send connector for exchange online protection

    Hello Forum members,
    I am trying to configure send and receive connectors for Exchange 2010 to route
    on-premises mailboxes to Exchange OnLine Protection.  The "help" info MS provides
    is for Ex 2013 - and the EAC GUI and config does not lend a close fit to using the 2010
    Exch Management Console.  How can I configure connectors to properly connect to the Exchange Online Protection?
    I have seen where the ip addresses are posted, etc.  I am unclear how to configure the properties on the SBS 2011/EX 2010 server.
    Any tips will help,
    Thanks,
    Eric H.
    Network and Server Installs

    Hello Wesleyhe,
    You cannot use AD anything with EOP - if you mean exchange on-line protection.
    you have to set a smart host on the SBS server to connect to EOP, you may need to add the EOP server ips to your network config
    on the SBS server.  the smart host line (for the send connector on SBS server) is something like: yourdomainname-com.mail.protection.outlook.com.
    Then you need to configure the outside ip for your SBS server access in the EOP admin area.
    Hope this helps.
    eholz
    Network and Server Installs

  • Can't download Oracle 9i Database Server for SUN Solaris 32 bit platform

    I was not able to download Oracle 9.2.0 DB Server for Sun Solaris 32 bit platform from OTN site this morning. Could someone please take a look at it?
    Thanks,
    Wen Davis

    At this time, Oracle is offering only the 64- bit and we do not
    have additional information if in the future 32-bit will be
    offered.
    Best Regards,
    OTN Team

  • SAP CRM Groupware Integration - Create appointments on mobile phone.

    Hi all
    We have implemented the serverside groupware integration with CRM 2007 and Exchange.
    Usually the appointments in Outlook are created with category
    "CRM_ACT_001". Unfortunately some Mobile Phones (like the iPhone) are not
    able to set the category of an appointment.
    Our users usually create their Outlook appointments on their mobile.
    So we had to customize the GWAdapter to let through all activities from
    groupware (without filtering for the category).
    To do so we changed the spro entry "Maintain Groupware Object Selectionand Retrieval":
    - From: ACT Categories CRM_ACT*
    - To: ACT Categories *
    Unfortunately this causes a lot of problems:
    - The category of the activity in CRM got deleted everytime you change the appointment in outlook.
    - When you set a meeting in Outlook to "private" the activities in
    CRM AND Outlook are deleted automatically.
    Does anyone had similar problems? How can you synchronize the calender on the mobile phone with CRM?
    Thanks in advance.
    Marco

    Checked the issue with SAP.
    You cannot synchronize the appointments without giving an category. On iphone and most other smartphones you cannot chose a category.
    Another "contra" of the CRM Groupware Integration....

  • I defaulted input help field (pick list) but SAP CRM still asking for one

    We are running SAP CRM 7.0.
    Some fields as you know are dialog / pick list fields.
    What I mean by this is they are input help fields where you
    can click a little square (in sap crm 7.0) to the right of the text box
    and it brings up a dialog screen of values that you can select from.
    Here is an example screen shot of what I am talking about:
    http://img834.imageshack.us/img834/5676/imageschak.png
    So what I have done is implemented the GETTER function for this input help field so that by default it has a value.
    The code is like so:
    method GET_CURRENCY.
    CALL METHOD SUPER->GET_CURRENCY
      EXPORTING
        ATTRIBUTE_PATH = attribute_path
       ITERATOR       = iterator
      RECEIVING
        VALUE          = value.
          if value eq ''.
            IF sy-langu EQ 'E'.
              VALUE = 'USD'.
            elseif sy-langu EQ 'D'.
              VALUE = 'EUR'.
            ENDIF.
          endif.
    endmethod.
    Here even is a link to this method that I created: Field Currency of Context Node BTADMINH - How to set default
    The method works great it sets the default of the currency to say USD.  When I click the create button to create an opportunity the field currency is set to USD, this is great because it makes my job easier that I dont have to click the input help button and select a currency, it is already there.
    But once I click the "Save" button for an opportunity I get a small error in the error notification box that tells me I need to select a currency!  But why is this happening a currency already exists?  So If I click the input help (the little button) and reselect the currency value USD then save my opportunity this error goes away.
    The question is why does this happen?  I need it so that the default currency value is recognized by the SAP CRM system.  Why do I have to go back in and re-select the currency if it is already set?  Is there some sort of consistency check or something I need to do to eliminate this problem? 
    Here is a screen shot after creating an opportunity with the default Currency set to USD (this means I did not select USD in the dialog input help it was defaulted by the getter method:
    http://img832.imageshack.us/img832/3011/enteracurrency.png
    Only if I go back into edit mode and actually click the little square to bring up the dialog of values and select USD does this error go away.  Why does this happen ?

    I called SET_CURRENCY right after setting my value and the error is now gone. 
      SET_CURRENCY( EXPORTING ATTRIBUTE_PATH = ATTRIBUTE_PATH
                    iterator = iterator
                    value = value ).
    Got the tip from Pieter who has a good blog on SAP CRM: http://sapcrmweblog.blogspot.com/

  • SAP CRM with multiple MS Exchange Servers

    Hi all,
    I would like to use a SAP CRM 7.0 system with multiple MS Exchange servers. It is possible to forward emails from these Exchange servers to the SAP WAS via SMTP, so that SAP ERMS functionalities can be used to process the emails?
    Thank you,
    Till

    The answer is yes.  You need to just setup the exchange servers to route the e-mail to the inbound SMTP port setup on the CRM WAS server.  You will then configure the inbound e-mail address on the WAS to map to the ERMS service.
    CRM does not care how the message got sent to it, it just needs to be dropped off at that location.
    Take care,
    Stephen

  • E-mail destributor and CRM Groupware Connector

    Hello,
    we synchronize our activities and private Contacts with the Groupware Connector. My question is, how is the behavior of the Groupware Connector if an employee changes his email-address in CRM with a e-mail distributor?
    Has this anyone tested?
    Thanks a lot!
    Albert Maas

    Hi Albert,
    Current version of  Groupware Connector does not supported Distributed lists and we don't have any development plans to support it as of now.
    Regards,
    Gokul

  • Free SAP CRM demo trial for ASUG members

    ASUG members can demo SAP CRM 7.0 from RunE2E. Details at ASUG.com and at link below:
    http://finance.yahoo.com/news/Americas-SAP-Users-Group-and-bw-1870983655.html?x=0&.v=1

    No. Not really.
    Even though you can install BPC NW 7.5 on NW 7.0 EHP 2 Trial Version (search for this version) if you have at least some Basis knowledge.

  • SAP Portal JDBC Connector for Oracle

    Hi forum:
       hi need to configure the DATABASE URL for make the connection with JDBC Connector to Oracle.
       Somebody knows this url ?
    thnks
    Joshua

    HI,
    DB URL for oracle
    jdbc:sap:sapdb://localhost/TST?timeout=0
    For DB configuration refer this link
    <a href="http://help.sap.com/saphelp_47x200/helpdata/en/c0/3ad4d5cdc66447a188b582aad537d3/frameset.htm">DB CONFIGURATION</a>

  • SAP CRM Class event for BACK/FORWARD button on WEbUI

    Hi to everyone,
    i would need to know the event triggered when "BACK" or "FORWARD" button is pressed.
    Is there a standard class called from this button?
    Thanks.
    Dario.

    Hi Dario,
    The standard classes and their corresponding methods that would be called are:
    CL_BSP_WD_WINDOW
         IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION ()
         IF_BSP_WD_HISTORY_STATE_DESCR~IS_RESTORABLE ()
         WD_DESTROY ()
         IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION ()
    CL_BSP_WD_CONTEXT
         IF_BSP_WD_HISTORY_STATE~STATE_STORE ()
         IF_BSP_WD_HISTORY_STATE~STATE_RESTORE ()
    These methods could have been redefined in the BSP components.If its redefined, it will call the superclass
    method first in the redefinition. You can place breakpoints in the above class methods and find the callstack.
    Regards
    Leon

  • Error when downloading SAP MaxDB 7.7 for Windows (x86, 64 bit)

    Hi,
    I am receiving the following error when  try to download.
    In IE 7
    " This error (HTTP 400 Bad Request) means that Internet Explorer was able to connect to the web server, but the webpage could not be found because of a problem with the address.
    For more information about HTTP errors, see Help. "
    In Firefox
    "Access Denied
    You don't have permission to access "http://downloads.sdn.sap.com/dl/auth?" on this server.
    Reference #18.47911160.1261723822.7169ec3  "
    Please assist. Been trying to download both the version 7.6 & 7.7 but no luck. . Please also advise if I am looking at a wrong link/wrong forum.
    Please advise
    Appreciate the assistance sincerely.
    Regards
    Easwary
    Edited by: Easwary on Dec 25, 2009 7:50 AM

    HI,
    Yes, I am trying to download the community version.
    Really not sure why I am receiving that error. Any other alternative for me to download the database?
    Really at wits end
    Regards
    Easwary

  • Exchange groupware connector cannot read public folder

    Hi,
    we're installing the Groupware Connector for Exchange (2003) on a Win2003 SP1 server. The installation is simple, but when starting the service, the following error occurs:
    [26/Apr/2006:11:33:52 +0200] WARNING - - - - - "[WRN:1010] Invalid default target folder for contacts: [email protected] does not specify public folder
    . Please verify 'replica.contacts.default-target' option in config.xml." Source: Common\GroupWare.cpp:199
    I tried installing and starting the connector on both the exchange server and a seperate server, but in both a cases the message appears.
    The public folder exists (called "contacts"), has an email address: [email protected] and we can sent emails to it and they arrive in the contacts folder. As far as I know we executed all the steps in the installation guide (permissions etc) but for some reason the connector cannot see the public folder.
    Any ideas?
    I've read the two notes: 908577 and 908571
    Much obliged
    Marcel Rabe

    Hi,
    Once again very sorry for such a delayed reponse ... i don't know how did i missed your response ... anyway
    You can find version of Connector 2.1.053 after you install it on a system and right click on the connectorsvc.exe and go to the version tab, find the version of the GWC.
    What ever versions you have mentioned i.e., 2.1.036 and 2.1.037 are versions of Install package of GWC (which is a common for both exchange gwc and lotus gwc ).
    If you still have some problems with it then revert back to me via e-mail so that i won't miss your response.
    regards,
    Gokul
    [email protected]

  • Groupware Connector 5.0 for Exchange server 2010

    Hello All,
    We are looking for some documentation on CRM groupware integration with Exchange server 2010.
    Groupware Connector 5.0    
    SAP just release note 1595564 to update the groupware connector to work
    with Exchange 2010. Are there updated Groupware Connector Installation
    and Adminisration guides for the new Connector 5.0?
    We would appreciate if someone could add more information on how we can integrate both.
    Thanks in Advance!

    Dear Kiran,
    Check note 1642681  very help full.
    regard ,
    vijay.

  • Can the Groupware connector use XI to communicate with CRM2007 ?

    Hi,
         Can the latest CRM groupware connector be used to connect to SAP CRM2007 using XI
         instead of communicating directly with SAP CRM2007?
         The current system landscape regarding the exchange server and CRM systems is such that
         it would not be feasible to connect the connector directly to the CRM server.
        Any help would be highly appreciated.
    Kind Regards,
    Sunil

    Sunil,
    Well technically if you make XI talk the same language that CRM talks to the groupware connector then your scenario is possible.  Now the problem would be knowing the "format" of the communication that comes out of CRM to the groupware connector.  If you can figure that out, then you could probably custom build the scenario you are talking about.
    I'm just not sure if you will get any type of positive ROI by doing this method.  Personally it just looks like something that would be costly and probably something that you will not get a lot of support.  It might be easier to keep "one" CRM system that talks to groupware.  Then that CRM distributes the data back from the groupware outbound to XI and then in XI you can send back to CRM.  You could do the reverse where your CRM system feeds it to XI and it sends it to the CRM groupware connector system, which then feeds the groupware.
    It involves a few more hops, but elminates the needs to figure out the SOAP protocol building between XI and the connector.  You can then "hop" on the standard middleware adapter to distribute changes outbound using XIF plus XI and evenutally wind up in the groupware.
    The drawback is one of your CRM systems, needs to have at least a global view of all business partners and activities.  Which might not be desired by your business.
    Take care,
    Stephen

Maybe you are looking for