How to integrate CRM server to PORTAL

Hi ,
   Can anyone point me to a document/help where I can get a step by step guide to intergate the CRM server to portal ?
Regards
Deepak Singh

Hi
You can get the exact document in SAP Service Marketplace.
https://websmp101.sap-ag.de/instguides
Follow the below specified path:
Installation and Upgrade Guides -> mySAP Business Suite Solutions -> mySAP CRM -> SAP CRM 4.0 -> People-Centric CRM Inst.a.Config.Guides
You will get a list of guides for installation and confihuration.
Hope this helps.
Regards
Yoga

Similar Messages

  • How  to integrate File Server with Portal??

    Hi all,
    can any one tell me that how interegate the File Server With Portal Server??
    In my portal server under home tab i have sub tab (second level navigation) of File server.Whe i click this tab it throws an syntax error
    ie
    System Error
    An exception occurred during the program execution. Below you will find technical information pertaining to this exception that you might want to forward to your system administrator.
    Exception Class  :: class com.sapportals.wcm.repository.NotSupportedException
    Exception Message  :: Not Implemented
    thease are the steps that i have taken
    >created HTTP System..
    >created WebDAV Repository.
    >Created Cache.
    >Created KM WebDAV System.
    >Created Iview and in iview i have to specify the <b>Path to Initially Displayed Folder</b>
    i have specified the folder of file server that i want to display..
    but i get the same syntax error ..
    infact i dint get that folder in KM.
    But when i specify the folder that is present in KM its Work fine..
    Now the Scnerio According to me is that File server is not integrated properly
    if it would be integrated properly i would be able to see the folder of File server in  KM...
    am i correct ??
    please Guide me to integrated the File Server Properly??
    Points will be given for any help..
    Regards
    Vinit

    Hi Vinit,
    if you want some Windows File Server integrated into Portal, please do not use a WebDAV Repository, but use the File System Repository instead. Therefore you need to configure the according Repository Manager. Please refer to this documentation:
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/frameset.htm">Integrating Documents from a Windows System into KM</a>
    HTH,
    Carsten

  • How to integrate EBS in Oracle Portal?

    How to integrate EBS in Oracle Portal?
    I want to integrate EBS with Oracle Portal.
    How to do SSO?

    Hi
    You shuld take a look to the metalink note Note:233436.1 "Installing Oracle Application Server 10g with Oracle E-Business Suite Release 11i", there you will get info how to SSO them..
    If yuo want to integrate (no SSO) you can use some other solutions like webclipping, iframe, etc...

  • How to configure file server with portal using KM

    Hi
    i have some word documents,excel documents in my computer.i want to integrate these documents into portal using KM.how to do that?can anybody suggest the steps involved or tutorial to do this configuration.thanks for your help in advance
    Prasad

    Hi,
      It´s very simple to do that.
    1.You must create repository. (I gave you this information).
    2.Create portal users. (in portal or read from ldap)
    3.Create KM navigation iview to point folders in your repository.
    4.Create roles.
    5.Assing roles to users.
      For you that is new in this tools, perhaps needs 3 or 4 days.
    Patricio.

  • How to Integrate CRM and R/3

    Hi Folks,
    We have installed SAP R/3 and CRM server for production environment. But what configuration need to do to integrate both servers. And which interface will communicate with both instances. Please help
    Thanks in advance,
    Chimsi

    Chimis,
    You need to decide where you need the integration touuch points between these systems. So, you need identify the business processes where the integration is happening.
    A quick example in CRM - R/3 case could be Quotation to Sales order.
    Regards,
    Ravi
    Note : Please reward points if this helps you.

  • How to integrate wad application in portal

    Hi all,
    How to integrate multiple wad application in portal  instead of integrating  one application with one iview?
    We need to avoid creating  iviews for each wad application  .
    Is there any application like bex analyser  for WAD  applications?
    Regards
    Rajendra

    Hi Rajendra,
    U can create bw report iviews by using bex iview template in content adminstration role.
    Apart from that Upload the role from Bw system to portal in system admin-->role upload .
    Ask BW person to assign the reports to 1 role ,and u can easily upload the role to portal .
    Once u upload the role u can find tthe role in Content admin-->portal content >migrated content>roles--><bw role name>.
    open the role ,if u want to change the name then u can ,give entry point yes and assign the role to user.
    It should works instead of creating n number of Bex iviews.
    Surekha.

  • How to integrate C++ server in weblogic

    I have developed a C++ class implementing a kind of server. It
    receives requests from clients, processes the requests (by
    accessing ODBC databases), and returns the results back to the
    client. Then it remains waiting for the next request, never
    finishes.
    Now I am trying to integrate this server into a Weblogic
    environment to take benefit of scalability, availability,
    performance, ...
    I would like to know what are my choices:
    a) I think that servlets are not suitable as I do not want my
    server to finish execution after serving a request. But what
    about servlets + EJBs. Could my server be implemented with a
    combination of both?
    In that case I suppose that I cannot take advantage of the JDBC
    conection pool from my C++ class, can I? ...
    b) I could make a java wrapper for my C++ functions in order to construct an RMI object. I wonder if this is possible.
    c) I could implement my server as a CORBA object. Then the
    weblogic server would have an active IIOP connection pool for
    say 5 or 10 instances of my CORBA object. Do I really need to
    purchase Weblogic Enterprise? Can I do something else with the
    Weblogic Server?
    In that case the ODBC connections would be established at the
    CORBA startup time.
    c) Other?
    Thanks in advance.

    Comments inline...
    David Ruana wrote:
    Eduardo, does your solution require the Weblogic Enterprise product or just the Weblogic Server?No, WLS will not work with WLE until the next point release of WLE.
    Is a C++ ORB the same as a CORBA object?Yes.
    >
    >
    On the other hand, I have wrapped the C++ class by means of JNI so that I have the corresponding java class available. Then the implementation of a RMI server is quite straightforward. I am just beginning with RMI but it seems far more easy that CORBA, isn't it?Yes, the only trouble is that iff your C++ object is colocated with the WLS server, you could take the whole server down iff the C++ code faults. What would also work, without this side effect, is if you wrapped the C++ code in a WLS client and bound the client side RMI server into the WLS server.
    As I see it, the main advantage of this choice would be that the Weblogic Enterprise product would not be required (since Weblogic Server itself supports calling RMI from servlets, for example).
    Please some further advise on this issue would be appreciated.
    Thanks. David
    Eduardo Ceballos <[email protected]> wrote:
    Host your C++ server on a C++ ORB. BInd a reference to it into the COS Naming/WLS JNDI tree. Delegate calls from (into) the C++ object using WLS support for IIOP. This makes it so that the native code does not take down your server when (if) it goes south.
    David Ruana wrote:
    I have developed a C++ class implementing a kind of server. It
    receives requests from clients, processes the requests (by
    accessing ODBC databases), and returns the results back to the
    client. Then it remains waiting for the next request, never
    finishes.
    Now I am trying to integrate this server into a Weblogic
    environment to take benefit of scalability, availability,
    performance, ...
    I would like to know what are my choices:
    a) I think that servlets are not suitable as I do not want my
    server to finish execution after serving a request. But what
    about servlets + EJBs. Could my server be implemented with a
    combination of both?
    In that case I suppose that I cannot take advantage of the JDBC
    conection pool from my C++ class, can I? ...
    b) I could make a java wrapper for my C++ functions in order to construct an RMI object. I wonder if this is possible.
    c) I could implement my server as a CORBA object. Then the
    weblogic server would have an active IIOP connection pool for
    say 5 or 10 instances of my CORBA object. Do I really need to
    purchase Weblogic Enterprise? Can I do something else with the
    Weblogic Server?
    In that case the ODBC connections would be established at the
    CORBA startup time.
    c) Other?
    Thanks in advance.

  • How to integrate MSSQL server with SAP CRM via XI? Please help!

    Hi Experts,
       I have a requirement where I have to pull the data from MSSQL server and send it to SAP CRM.
       What are the different options avaiable with or without adapter to send data from MSSQL server to XI?
    As per my understanding I have following options:
    1. JDBC driver.
        MSQL ---> JDBC adapter ---> XI
    2. Create webservice for the XI outbound interface (Sender interface) and call it from MSSQL stored procedure.
       MSQL ---> SOAP adapter ---> XI
    2. Create webservice for the XI outbound interface (Sender interface) and call it from a .Net program.
      MSQL ---> DotNet application --> SOAP adapter ---> XI
    Which option is the best?
    Please help.
    Thanks
    Gopal

    Hi,
    Kindly refer:
    xMII 12.0 : Connecting to a Microsoft SQL Server 2000
    /people/ted.teng/blog/2005/12/28/use-sql2005-to-connect-and-present-sap-on-sharepoint-business-scorecard-manager-150-part-i
    Use SQL2005 to Connect and Present SAP on SharePoint / Business Scorecard Manager - Part IV
    Hope this might be of some use to you...........

  • How to integrate P2G with Oracle portal

    Has any one out there successfully integrated P2G with Oracle portal? If so, could you be kind enough to tell me how you did it. I need to do the same thing.
    Thanks.

    Hi
    You shuld take a look to the metalink note Note:233436.1 "Installing Oracle Application Server 10g with Oracle E-Business Suite Release 11i", there you will get info how to SSO them..
    If yuo want to integrate (no SSO) you can use some other solutions like webclipping, iframe, etc...

  • How to integrate Oracle UCM to portal using cis layer

    Hi,
    I am using liferay portal. I want integrate UCM with it. I came to know that cis layer will help to do this. Please let me know how using cis i can integrate a portal with UCM.
    Thanks,
    Kesava

    Hi,
    Can anyone help me on this.
    Thanks,
    Kesava

  • How to integrate Oracle Discoverer to Portal Release 2?

    Hi,
    I've installed the new version of Oracle9iAS Release 2 and I need to
    integrate Oracle Discoverer and Oracle Portal.
    Do you know how to do it?
    Do you have any walktrough?
    Thank you very much,
    Eduardo

    Hi,
    There is no such process of rollback the patchset.
    If you have a backup of the Forms and Reports Release 1 , restore it back.
    Thanks,
    Sharmela
    Note: Please mark the answer as correct or useful if it helped you.

  • How to show CRM documents into Portal KM repository

    Hi all,
    I would like to be able to <b>show CRM documents</b> (for Business Transactions / Business Partners ) <b>into the Portal</b> via WebDAV.
    What configurations do I have to do in :
    1) CRM
    2) Portal
    I've already searched sdn for this topic, but maybe I'm using the wrong keywords, didn't find much ... a manual or how/to, interesting links would be very helpfull !
    Thank you in advance !
    Abjuh

    Hi Abjuh
    I have recently setup the same and the CRM config guide is the most usefull one :
    https://websmp201.sap-ag.de/~sapdownload/011000358700005796662005E/Config_50_EN_SP01A.pdf
    as of page 129 through 146.
    I started with testing on documents for business partners because this is a standard supported flow. Then I extended to non-standard supported business transactions
    In brief, for business partners , in CRM system I
    -Setup the HTTP Service in the Internet Communication Manager
    -Maintaining WebDAV Hierarchies
    and in portal  I :
    --Setup the HTTP Data Source
    -Setup the Memory Cache ( choose existing one )
    -Created WebDAV Repository Manager
    -Created an Index for the CRM Document Repository
    good luck
    The only thing I didn't manage to get to work yet is displaying the source object link in the search results

  • How to integrate sharepoint server with exchange server.

    hi guys,
         I have installed SharePoint 2013 in windows 2012. This is in another domain. And i have installed exchange server in another domain. I need to configure SharePoint server to with communicate with Exchange server. I have configured
    SharePoint server with the help of this link.
    http://blogs.technet.com/b/mspfe/archive/2013/04/04/new-age-collaboration-with-exchange-2013-and-sharepoint-2013-part-2.aspx
    But according to link i would have been asked certificate warning or it would shown OWA link. But when i enter the url nothing displays. Please guide me how to configure for SharePoint server to with communicate with Exchange server.
    Thanks
    Rajendran.

    Hi,
    Did you mean you want to use the Site Mailboxes in SharePoint server 2013?
    If so, you can refer to the following articles, they are about how to configure the site mailboxes in SharePoint server 2013, and some notes.
    http://technet.microsoft.com/en-us/library/jj552524(office.15).aspx
    http://www.scinaptic.com/support/0109.html
    If you mean configuring the incoming/outgoing email for SharePoint server 2013, you can refer to the following technet articles.
    Configure incoming email for a SharePoint 2013 farm
    http://technet.microsoft.com/en-us/library/cc262947.aspx
    Configure outgoing email for a SharePoint 2013 farm
    http://technet.microsoft.com/en-us/library/cc263462.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to integrate to full iAS Portal Installations to syncrhonize users

    I ha ve to full iAS Portal Installation with it's own OID Repository my question is how can I syncrhonize both OID Respository so when I create or modify a user in OID this change is propagate and This will let use a single user definition to access both portals
    Regards
    Anibal

    Hi RM,
    It would require that you setup your Portal in such a way being able to handle Windows Integrated Authentication via Kerberos. This is already very well explained in the following blogs:
    /people/wai-hon.lam/blog/2006/04/20/windows-integrated-authentication-via-kerberos-on-an-ldap-data-source
    http://wiki.sdn.sap.com/wiki/display/EP/SingleSignOntotheJ2EEEnginefromWindows
    After setting up your datasource, in your case the ADS, you will need to run SPNego Wizard in NWA to have it integrated with SSO.
    Best regards,
    Andre

  • How to integrate Lotus Notes and upload Help Docs into SAP Portal

    Hi Experts,
    I got 2 questions with regards to content in portal...
    1) I got nearly 30 to 40 help documents (PDF & WORD) which users may refer when accssing CRM & BW system in portal.
    Currently they are stored in the Local Drive....i am trying to find a way to upload them portal...so the users can always have the docs the require
    and
    2) Can any one please update me in detail ...on how to integrate Lotus Notes into portal and configure Single Sign on  currently my Portal and Lotus Notes user id's are different
    Thanks in advance

    Hi Geethika,
    1. IF documents are on your local computer, Netweaver Portal has a KMC Addon (Knowledge Management and Collaboration). Within KM it is possible to run a Document Management Scenario. You can Create Folders within KM, give Access Rights to Users, Create an Iview to browse KM Folder then add that Iview to a Page or Role so users can access it.
    For this, please chech the online documentation via http://help.sap.com/saphelp_nw04s/helpdata/en/20/b46d42ea0b3654e10000000a155106/content.htm
    2. For Lotus Notes Integration, your Lotus Notes Server must be running on Windows Platform.
    For the rest configuration please check the following:
    Single Sign-On from SAP Enterprise Portal to Lotus Domino
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/94c4e390-0201-0010-09a3-d09e11b80671
    I've the latest version of SAP Ticket Verifier, if you couldn't find it, I can send it to you.
    regards

Maybe you are looking for