How to connect CRM 7 to Java Backend? Test?

Hi All:
How do I connect the CRM ABAP stack to an installed standalone (as per install guide) stack? I have followed the install manual but I still do not see how the connection is made!
How do I test this connection to know whether it is working or not? (ABAP CRM calling something in Java CRM component)
Also how do I attach my installed TREX?
Thanks
Tony.
PS: I have already followed the respective install guides as well as post install section of the guides.

Hello ,
Please check the guide from the link http://service.sap.com/instguides
Installation Guide
SAP CRM 7.0 Java on Windows: Oracle
Based on SAP NetWeaver 7.0 including Enhancement Package 1
PUBLIC Document version: 1.1 ‒ 02/05/2009
Section:  Page 98
5.20 Checking the Availability of Back-End Systems for CRM Java Components
After the installation, you have to check the availability of back-end systems as follows:
1. To test the connection to the ABAP back-end system, you create a back-end user [page 99].
2. Depending on various business processes, you check the following back-end systems:
ABAP system [page 100]
TREX Server [page 102]
http access to eBay (selling via eBay processes only) [page 102].

Similar Messages

  • How 2 connect webdynpro for java to R/3 system

    could any one tell me . how 2 connect web Dyn pro for java to connect to R/3 system????

    Hi,
    Pls check threads like
    Read R/3 table in Webdynpro
    Changing R/3 data in webdynpro
    or go via Jco
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/1bd5c6a85b11d6b28500508b5d5211/frameset.htm
    JCO
    Eddy
    PS. Reward useful answers and earn points yourself

  • How to connect OpenLDAP WAS Java, EP?

    Hello experts,
    did anyone succed to connect an OpenLDAP to WAS Java?
    I think a OpenLDAP libary need to be installed/configured in order to use it for the user management in the EP.
    I would appreciate to get information how to realize the connection?
    Where I can get the libary?
    Is there any step-by-step-guide?
    Thanks in advance.
    Thomas

    Thank you for your reply.
    I would like to connect an OpenLDAP to our EP7.0 with Web Application Server Java.
    However all experts just inform me that it is possible to use LDAP as a datasource. I know this already and I know where to find general information about using LDAP for identity management.
    But I need information how to connect especially an OpenLDAP to EP7.0 with WAS Java, Win2k3 64bit; Connection should be writeable and in a Flathierachy.
    I think I just have to adjust one of the LDAP-configuration XML-files to the OpenLDAP requirements.
    In the standard delivery there are already Configuration-XML-Files for Microsoft AD, Novell, Sun etc.
    Is there already an Configuration-XML-File which I can use for OpenLDAP?
    If not how I can use and adjust the exisiting files to make the OpenLDAP connection work (Access writeable, Flathierachy)?
    Thanks in advance for your help.
    Thomas

  • How to connect network with java?

    If I have already configured the network connection, my java application can work through it. But if I don't configure the network connection, how can my java application connect the nwtwork automatically? For example, popup a dialup dialog.
    Please tell me how to solve it if you know, thanks a million.

    I believe you will have to resort to native (C) code and JNI...
    Chuck

  • How to connect obiee using java?

    please any one help to my request.
    -GB

    please review my java code....
    String s_userName = "Administrator";
              String s_password = "Administrator";
              String s_olapSvrName = "10.112.176.53";
              String s_provider = "http://10.112.176.53:13080/aps/JAPI";      //what purpose this line and what type of service provider required here     
              try
              IEssbase ess = IEssbase.Home.create(IEssbase.JAPI_VERSION);
    System.out.println("STEP1..........");
              //IEssDomain dom = ess.signOn(s_userName, s_password, false, null, s_provider);
    IEssDomain dom = ess.signOn(s_userName, s_password, false, null, s_provider);
              System.out.println("STEP2..........");
              IEssOlapServer olapSvr = (IEssOlapServer)dom.getOlapServer(s_olapSvrName);
              System.out.println("STEP3..........");
              olapSvr.connect();
              System.out.println("STEP4..........");
    catch(Exception e) {
    e.getMessage();
    i am getting error
    ERROR: Cannot connect to Provider Server.Make sure the signon parameters are correct and the Provider Server is running.
    1. where we can find the provider service in obiee?
    2. how to configure this service?
    3. which port this service is running?
    thanks in advance
    -GB

  • How to connect to a Java WSDL in Flash Builder 4 ?

    Hi everybody!
    I have a Java project made with Hibernate + JPA.
    There is the code of the Java Class:
    package com.scop.acesso;
    import java.io.Serializable;
    import java.util.List;
    import com.scop.dao.DisciplinaDAO;
    import com.scop.dao.ProfessorDAO;
    import com.scop.dao.ProvaDAO;
    import com.scop.dao.TurmaDAO;
    import com.scop.entity.Disciplina;
    import com.scop.entity.Professor;
    import com.scop.entity.Prova;
    import com.scop.entity.Questoes;
    import com.scop.entity.Turma;
    public class CadastrodeProva implements Serializable{
         private static final long serialVersionUID = 1L;
         public Turma[] ListTurma()
              try{
                   TurmaDAO turmadao = new TurmaDAO();
                   List<Turma> list = turmadao.listarTurma();
                   Turma[] turmas = new Turma[list.size()];
                   for(int i = 0; i< list.size(); i++)
                        turmas[i] = list.get(i);
                   return turmas;
              }catch(Exception e){
                   e.printStackTrace();
              return null;
         public Disciplina[] ListDisciplina()
              try{
                   DisciplinaDAO disciplinadao = new DisciplinaDAO();
                   List<Disciplina> list = disciplinadao.listarDisciplina();
                   Disciplina[] disciplinas = new Disciplina[list.size()];
                   for(int i = 0; i< list.size(); i++)
                        disciplinas[i] = list.get(i);
                   return disciplinas;
              }catch(Exception e){
                   System.out.println("Erro: " + e.getMessage());
              return null;
         public Professor[] ListProfessor()
              try{
                   ProfessorDAO disciplinadao = new ProfessorDAO();
                   List<Professor> list = disciplinadao.listarProfessor();
                   Professor[] professores = new Professor[list.size()];
                   for(int i = 0; i< list.size(); i++)
                        professores[i] = list.get(i);
                   return professores;
              }catch(Exception e){
                   e.printStackTrace();
              return null;
         public void cadastraProva(Turma codigoturma, Disciplina codigodisciplina, Professor codigoprofessor, String dataprova, int qtdquestoes, List<Questoes> questoesList, double valorprova)
              Prova prova = new Prova();
              ProvaDAO provadao = new ProvaDAO();
              prova.setCodigoturma(codigoturma);
              prova.setCodigodisciplina(codigodisciplina);
              prova.setCodigoprofessor(codigoprofessor);
              prova.setDataprova(dataprova);
              prova.setQtdquestoes(qtdquestoes);
              prova.setQuestoesList(questoesList);
              prova.setValorprova(valorprova);
              provadao.inserirProva(prova);
    When i generate WSDL automatically in Eclipse i receive this message:
    "IWAB0489E Error when deploying Web Service to Axis runtime"
    My questions are...
    The Java Class is wrong?
    I have to follow any model in Java for FB4 recognize the WSDL?
    I made some tests with simples Java Classes like this:
    package com.calculo.vo;
    public class CalculoVO {
         public int soma(int a, int b) {
               return a + b;
    and this
    package classes;
    public class NoticiaEsporteVO {
         public String noticia;
         public String data;
         public String getNoticia() {
              return noticia;
         public void setNoticia(String noticia) {
              this.noticia = noticia;
         public String getData() {
              return data;
         public void setData(String data) {
              this.data = data;
    With that classes i generate WSDL normally and FB4 revognize them.
    Someone can help me? PLEASE!!!
    obs: IM BAGGIN xD

    it may be the issue that i had
    add a reference nulling out w3.org
    otherwise it would be a real problem with your service
    can you provide a url link to your wsdl for a sanity check ?

  • How can I pass the java certification tests?

    hello!
    I'm not sure I'm in the right forum, but I would like to know if there are sun's exams that I can take in order to get the sun's java certification.
    if enyone knows, please tell me how.
    meir.

    http://suned.sun.com/US/certification/java/certification_details.html

  • CRM (Abap + Java) connect with WAS (Abap + Java)

    Hello collegues,
    i have installed Netweaver 7.0 with Enterprise Portal.
    Now i must connect
    WAS with CRM system, but i do not what i have to connect ABAP - ABAP parts (RFC connection type TCP) or Java - Java parts (in visual admin in JCo) or ABAP - Java ( no idea how)? Which users are using for?
    The second task -
    i have tryed to create some user in portal but got message "error in persistence"?
    In useradmin in EP i saw that standart users from R/3 Abap are there. May be i fogot to set something after installation?
    Thank you very much for any idea.
    Julia

    Hi Julia,
    for CRM you don't need to "connect" the Portal (Java) with the CRM (ABAP) system.
    It is "just":
    - import of the CRM Business Package
    - definition of a system in the portal pointing to the CRM
    - setup of SSO (if you want SSO)
    The error with the persistance:
    You already have connected the Java UME to the ABAP system. In the ABAP you have a user called "SAPJSF" - this user has only read permission on the users. You have to assign another role to that user: SAP_BC_JSF_COMMUNICATION instead of SAP_BC_JSF_COMMUNICATION_RO
    Hth,
    Michael

  • How to connect Oracle 9i / 10g to a Java ( JDK 1.4 / J++) Program?

    Hello,
    I have written a java program in JDK 1.4 ( Which I have compiled in J++).
    I am dont know how to connect oracle ( 9i / 10g) as Backend to my java program.
    Please send the code / instructions to connect my backend.
    my program includes oracle tables..
    Please help me..
    thank you
    Jayanth

    Use JDBC, but who the hell uses J++ anymore?

  • How many connection opened for webdynpro java

    Hi,
        I have 2 webdynpro java application.The applications sharing  the same backend function module.Could anyone tell me
      How many connection will be established when the same user wants to open 2 different application but these 2 application shares the same function module.
    Thanks
    Kanai

    Hi,
    In webdybnpro ,each Model in an Application utilizes a seperate Connection.If u create JCO connection pool for the User then while connecting to backend
    1)The JCO connection pool Manager will open a new connection pool and opens the first connection.
    The next available connection from the pool is allocated to the model object.
    2)The model object is now able to invoke the required functionality in the ABAP system.
    3) When the connection is no longer required by the application, it is returned to the pool.
    4) The connection remains logged on to the backend system until either the next application
    request is received, or the connection timeout is reached.
    5) If no application requests arrive before the timeout is reached, the connection is flagged
    for closure.
    Note:-If an Application contains 2 models which are connecting to same ABAP system then second Model can be told to share the same JCo connection used by First model This is done by calling its setConnectionProvider() method.
    Regards,
    Sunaina Reddy T

  • How to connect to Pgsql on server through jdbc with java on local machine

    I am developing an application in which I have to connect to my database that is in Pgsql and Pgsql is installed on Linux server. I am going to access that from my java program and the java is here on my local computer(in Linux). All the intranet connections are there. How can I get accees to that database? I have heard of java SSL tunnel. Is this the only solution or there is something else that I can use more easily. Also if I use java installed on th same server as Pgsql then what I will have to do to call the java methods using AMI. Will the java at server be able to make connection to Pgsql more easily? Please tell me about it if you know.
    Thanks

    The closer java and pgsql, the easier it is of course to connect. So the easiest way is to have everything on the same machine. If you are in the same network you will need an IP based network, which is pretty much standard these days. In this case you need to modify the pg_hba.conf file to allow connections from other machines. In both cases you have to start the postmaster with the -i option to enable enable TCP/IP connections.
    Having java and pgsql connected through the internet is a different story, I do not have any experience with that. But you can use ssh to build a tunnel and connect to a local ip address / port from java which is then forwared securely via the internet to the server.
    In all cases you will need the postgres jdbc driver in your classpath. You can find information about postgres and jdbc on the postgres web site.
    good luck

  • How to connect to multiple backend systems to IMS

    Hi,
    I want to connect multiple backend system to SRM IMS.How to connect multiple backend system.
    Thanks in advance
    Regards
    Nitin Amritkar

    Hi
    see page 63. it is possible.
    define backend systems in spro and record all your ecc systems and create a distribution model fpr bbpiv message in srm and distibute to all backend systems.
    http://www.portal.state.pa.us/portal/server.pt/gateway/PTARGS_0_160867_305341_0_0_18/2006_05_26_srm_007.pdf
    br
    muthu

  • How to connect WDJ to 3rd Party Backend Systems(Oracle).

    Hi Friends,
    How to connect WDJ to 3rd Party Backend Systems(Oracle).
    Please give Step-by-Step Explanation. This is first time I am connect  to Oracle System. Can you give Step-by-Step Explanation.
    Regards
    Vijay Kalluri

    I recommend that you perform the access to Oracle through an EJB and consume this EJB in WebDynpro.
    http://wiki.sdn.sap.com/wiki/display/WDJava/OracleConnectivitywithEJBusingWebDynproApplication
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/70d2638c-4b04-2d10-d2a3-992fdf1e3d55
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/70929198-0d36-2b10-04b8-84d90fa3df9c
    regards,
    Angelo
    Edited by: Angelo Antonello Borges on Jun 16, 2010 10:52 AM

  • How can I get the Java EE 5 Compatibility Test Suite?

    How can I get the Java EE 5 Compatibility Test Suite?
    which department should I contact with in oracle company in china ?
    Who can tell me?
    thanks.

    The title of this forum is...
    Community Feedback and Suggestions (Do Not Post Product-Related Questions Here)
    And you thought this was the appropriate place to post this question ?:|

  • How to connect Java and Microsoft SQL Server 2000

    hi,
    could anyone please teach me how to connect Java and SQL Sever 2000?? if possible could you guys provide me with an example??? i could hardly find any relevant resources about it...
    Thanks ~!

    thanks for the information...
    by the way hv any working module on it?? i'm new to
    both Java and Microsoft SQL Server... Thanks againFirst things first... you should read this:
    http://java.sun.com/docs/books/tutorial/jdbc/
    This is microsofts official JDBC Driver: http://www.microsoft.com/sql/downloads/jdbcregister.asp
    Install it and the documentation has some usage examples

Maybe you are looking for