ABAP Sneak Preview SP11 - NWDS:SAP Enterprise Connector error

Hello
I have installed the ABAP 6.4 Sneak Preview SP11 (It works fine with the SAP GUI). I am trying to call Bapis from Java with the help of the proxies generated by "SAP Enterprise Connector". But the problem is that the "SAP Connection Wizard" does not progress any further after providing the R/3 system details(like hostname, sys number, client) and username/pasword. When I click the "Next Button" after providing the correct connection parameters it just stays there.
-->Would the license be a problem. I did not apply for the 90 day license yet, I wanted to do that once everything is working fine.
--> Should I do any additional configuration on the R/3 side.
--> Should I add any extra setting to the environment variable path.
Your help will be greatly apprecaited!!!
Thanks
Yasu

Hello some more information....
I have installed the ABAP 6.4 Sneak Preview SP11 (It works fine with the SAP GUI). I am trying to call Bapis from Java with the help of the proxies generated by "SAP Enterprise Connector". But the problem is that the "SAP Connection Wizard" does not progress any further after providing the R/3 system details(like hostname, sys number, client) and username/pasword. When I click the "Next Button" after providing the correct connection parameters it just stays there.
-->Would the license be a problem. I did not apply for the 90 day license yet, I wanted to do that once everything is working fine.
--> Should I do any additional configuration on the R/3 side.
--> Should I add any extra setting to the environment variable path.
Your help will be greatly apprecaited!!!
Thanks
Yasu

Similar Messages

  • Online license procedure for NW ABAP Sneak Preview and Mini SAP works again

    The online license procedure for the NetWeaver ABAP Sneak Preview and Mini SAP systems at www.sap.com/minisap
    works again.
    Sorry for the inconvenience.
    Dirk

    I finally resolved my problem yesterday. That is the answer. I did exactly what you mention now: to try and try. I don't know what happened, but when I insisted it worked !
    Anyway, Thanks a lot to all
    Investiga

  • NW ABAP Sneak Preview and Mini SAP online license works again

    The online license procedure for the NetWeaver ABAP Sneak Preview and Mini SAP systems at www.sap.com/minisap
    works again.
    Sorry for the inconvenience.
    Dirk

    I finally resolved my problem yesterday. That is the answer. I did exactly what you mention now: to try and try. I don't know what happened, but when I insisted it worked !
    Anyway, Thanks a lot to all
    Investiga

  • SAP Enterprise Connector Error - NWDS

    Hello I have the following issue, I found the same problem in the eariler forums(no solution though) and pasting it here...
    the content is copied from /thread/9971 [original link is broken]
    Hi
    I've installed the sneak edition of the NDS which is a part of the WAS 6.40 sneak preview. Everything seams to work just fine except for the proxy generation in a portal application using the SAP Enterprise Connector tool.(choose new>other>SAP connectivity-->SAP Enterprise Connector) I get to the point where I have to enter connection information's for a single server like Host name, system nr, client, etc...However when everything i filled out and I push next nothing happens. The process line in the bottom shortly fills but the same screen is shown.
    Have anyone run into the same problem?
    Best Regards
    Ole Mose Nielsen
    the problem I have is exactly the same. But say if I change the system number to '04' than I get an error - "connect to sap gateway failed".
    Thanks,
    Yasu

    Hello some more information....
    I have installed the ABAP 6.4 Sneak Preview SP11 (It works fine with the SAP GUI). I am trying to call Bapis from Java with the help of the proxies generated by "SAP Enterprise Connector". But the problem is that the "SAP Connection Wizard" does not progress any further after providing the R/3 system details(like hostname, sys number, client) and username/pasword. When I click the "Next Button" after providing the correct connection parameters it just stays there.
    -->Would the license be a problem. I did not apply for the 90 day license yet, I wanted to do that once everything is working fine.
    --> Should I do any additional configuration on the R/3 side.
    --> Should I add any extra setting to the environment variable path.
    Your help will be greatly apprecaited!!!
    Thanks
    Yasu

  • Error Installing Sneak Preview SP11 on Windows XP

    Hi,
    I am getting the following errors while installing the NWDS Sneak Preview SP11 on Windows XP.
    ERROR 2006-02-10 12:23:37
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (266), with parameter (SAPJ2E_01).
    ERROR 2006-02-10 12:23:37
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (266), with parameter (SAPJ2E_01).
    ERROR 2006-02-10 12:23:37
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (266), with parameter (SAPJ2E_00).
    Kindly guide,
    Thanks,
    Prasita.

    hi Parista,
    i ran a check on your error and i seem to have found a SAP note talking about it. <b>Note 682069</b>
    (if my previous post didn't help u much)try this, your error seems to be a windows error message.
    Regards
    Arun
    Message was edited by: Arunkumar

  • Runtime error while using SAP Enterprise Connector in a J2EE Web Servlet

    Hello,
    I'm facing problems while trying to do a RFC call out of a Servlet.
    I'm using Development Components (DCs) and my project setup is as follows:
    Firstly I've created a DC of type J2EE/Web Module. This DC implements an absolutly simple servlet which has to do the RFC-Call.
    The relevant code is:
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
       JCO.Client jcoclient = JCO.createClient("010", "DV*****", "***", "DE", "ovd***", "01");
       jcoclient.connect();
       Bapi_Flight_Getlist_Input input = new Bapi_Flight_Getlist_Input();
       input.setAirline("LH");
       SAPProxies_PortType myproxy = new SAPProxies_PortType();
       myproxy.messageSpecifier.setJcoClient(jcoclient);
       try {
          Bapi_Flight_Getlist_Output output = myproxy.bapi_Flight_Getlist(input);
          BapisfldatType_List list = output.get_as_listFlight_List();
          int listsize = list.size();
          for (int i = 0; i < listsize; i++) {
             BapisfldatType elem = list.getBapisfldatType(i);
             response.getWriter().print("Date: " + elem.getArrdate() + '\t' + "Arrive: " + elem.getArrtime());
       } catch (Exception e) {
          response.getWriter().print(e.toString());
       jcoclient.disconnect();
    The proxy for the RFC Module "BAPI_FLIGHT_GETLIST" - in this case the classes around "SAPProxies_PortType" were generated by NWDS ("SAP Enterprise Connector" Wizard).
    I had to manually add following DCs as "Used DCs" to get my DC built:
    com.sap.aii.proxy.framework (default)
    com.sap.aii.util.misc (default)
    com.sap.mw.jco (default)
    So far, so good...
    As a J2EE/Web module DC can't be deployed I've created a second DC of type J2EE/Enterprise Application and referenced the first DC. This DC is also built fine and can be deployed.
    But... When I call my servlet I get following Error Message on the web browser:
    The request cannot be processed.
      Details:      
      com.sap.engine.services.servlets_jsp.server.exceptions.ServletNotFoundException: Cannot load the requested servlet [LocalDevelopmentservletxxx.com/servlet/TestServlet].
    Exception id: [000C295D60FB006F0000003600000EA8000461A05860B4BA]
    I also had a look in the trace files:
    Vollstu00E4ndiger Nachrichtentext
    application [LocalDevelopmentservletxxx.com] Processing HTTP request to servlet [TestServlet] finished with error. The error is: com.sap.engine.services.servlets_jsp.server.exceptions.ServletNotFoundException: Cannot load the requested servlet [LocalDevelopmentservletxxx.com/servlet/TestServlet].
    at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.getServlet(WebComponents.java:330)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:354)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: java.lang.NoClassDefFoundError: com/sap/aii/proxy/framework/core/AbstractType
    Loader Info -
    ClassLoader name: [xxx.com/testear]
    Parent loader name: [Frame ClassLoader]
    References:
       common:service:http;service:servlet_jsp
       service:ejb
       common:service:iiop;service:naming;service:p4;service:ts
       service:jmsconnector
       library:jsse
       library:servlet
       common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl
       library:ejb20
       library:j2eeca
       library:jms
       library:opensql
       common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore
       interface:resourcecontext_api
       interface:webservices
       interface:cross
       interface:ejbserialization
    Resources:
       C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\ibm.com\testear\servlet_jsp\LocalDevelopmentservletxxx.com\work
       C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\ibm.com\testear\servlet_jsp\LocalDevelopmentservletxxx.com\root\WEB-INF\classes
       C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\ibm.com\testear\src.zip
    Loading model: {parent,references,local}
    The error occurred while trying to load "com.xxx.test.sap.connector.Bapi_Flight_Getlist_Output".
    at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:401)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618)
    at java.lang.Class.getConstructor0(Class.java:1930)
    at java.lang.Class.newInstance0(Class.java:278)
    at java.lang.Class.newInstance(Class.java:261)
    at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.getServlet(WebComponents.java:319)
    ... 14 more
    I think it has something to do with the used DCs... but I don't know why the classes are not found after deployment. I also tried
    to package the relevant jar-files from the used DCs into the EAR-File - but the I faced problems with the JCo
    Thank you for any help.
    Osman

    Hi,
    One thing that can be helpful is to add the references of the JAR files that you are adding as Used DC in the EAR.
    This can be done by adding Library type References in the application-j2ee-engine.xml Deployment descriptor in the EAR project.
    Following link will be helpful: http://help.sap.com/saphelp_nw70/helpdata/EN/83/82814282cfc153e10000000a1550b0/content.htm
    Regards,
    Alka.

  • Not able to access remotely to sap was abap sneak preview (trial version)

    hi all
    i have recently installed sap netweaver 2004s was abap sneak preview which is downloaded from sdn.sap.com. but the problem is i am able to access layout tab from server machine only, not from any other client machine. the layout tab shows that "page can't be displayed" mode of internet explorer. i am using explorer 6.0.
    are there any security settings needed in either of the machines?
    thanks in advance
    shabbir khan

    first of all thanks abhimanyu
    i have one doubt. r u accessing from client machune , or that trial version is installed on ur system it self.
    if ur accessinf from client machine .. u need to do some settings in ur client machine so that it should not hit ur local browser .. where as it has to hit ur servers browser. in my problem.. my client machines are hitting my their own systems browsers . . plz let me know what that setting is
    thanks in advance .. its urgent

  • Problem in Uninstalling SAP ABAP sneak preview 2004

    Hello ,I am trying to uninstall the SAP ABAP sneak preview 2004.but the main problem is that i have forgot the DB manager (DBM operator) and CONTROL passwords. is there any chance to uninstall with out giving passwords or to retreive the passwords ?
    Regards,
    Gopi

    If you installed it on an XP machine, restore the system back to the date and delete all related folders.

  • Need help with the SAP Enterprise connector wizard at the NWDS

    Hello,
    I am trying to create new proxy using the SAP Enterprise connector at the Netweaver Developer Studio.
    The problem is that at the 2nd stage I am unable to connect to the server. Can someone please explain me in details:
    1. Which tab should I chose there: Load balancing server or single server?
    2. Which parameters should I enter there and from where can I take them (uch as System number...)
    I tried to enter my server's parameters but I couldn't connect.

    Hi Roy,
         It depends on what type of R/3 server you are connecting. Usually development & Quality assurance systems for R/3 are not load balanced. You can find it out from your Basis people that server you are connecting is load balanced.
    If it is not load balanced  then the select the single server and enter the following parameters.
    1. Host Name: Server Name (or ip address)
    2. System Number: (00)
    If it is load balanced then fill out all the information on load balancing tab.
    You only need to fill one of the tabs. thank you.

  • Sneak preview sp11 java edition install hangs

    I posted this in the NetWeaver forum originally but now realize this might be a more appropriate forum.
    I am trying to install the sneak preview sp11 java edition to a brand new box. The installation hangs on the "Load Java Database Content" step. The last thing in the jload.log is:
    08.11.05 00:24 com.sap.inst.jload.Jload dbImport
    INFO: table J2EE_CONFIGENTRY created
    It's been running for 24 hours now and has not moved off that step. The java.exe process is using 50% cpu so it apparently thinks it's doing something. I've seen the posts regarding errors with the install and the Timezone change fix, but I'm already in a timezone that has DST.
    Any ideas?

    I had the same problem. I tried reinstalling a couple of times, but the same thing happened - the installation was just hanging and using 100% cpu time.
    As the installation had not been tested with JDK 5.0 I had installed the newest version of 1.4.2, namely 1.4.2_10.
    Then, just for kicks, I uninstalled 1.4.2_10 and installed 1.4.2_08 - 40 minutes later I got the "Successful install" screen.
    I hope this helps.
    ps: it should be noted that I installed on a freshly installed Windows XP (and later on a freshly installed Windows 2003 Server - also without problems) with German regional settings, just to make sure - I have later reverted the regional settings to my locale.
    Message was edited by: Rune Jeppesen

  • SAP Enterprise Connector and service....

    Hi everyone,
    After creating, via the plugin "SAP Enterprise Connector", a proxy pointing on a BAPI, how can I create a service for this (and a web service).
    I know that you can create a web service directly using ABAP transaction se37. But our SAP version is quite old and we haven't this option.
    Thanks for the help.
    Message was edited by: David Fryda

    HI Jerin,
    Can be please little bit elaborate ur scenario.Because Enterprise Connector is deprecated in NWCE 7.1 onwards...

  • Is it possible to apply service packs to NW04s ABAP Sneak Preview?

    Service Pack 7 to NW04s contains the DEMO_REGEX_TOY, which I'd like to install in my ABAP sneak preview system.  I have some questions about that:
    1.  Is it possible to apply maintenance to the Sneak Preview?
    2.  What service packages need to be isntalled to upgrade the sneak preview rel/level from 7/5 to 7/7: 6 and then 7, or just 7?  That is, are those service packs cumulative?
    3.  I am unable to download the service packs from https://service.sap.com using the download manager.  I get an error in the trace output that says, "Unable to Find Certification Path."  I have no idea what that means, or how to circumvent that problem.  Is there an alternative way to get the Service Packs?
    Thanks for any help/guidance you all can provide!

    Thanks.
    I did manage to download the packs.  For others who may have similar difficulties, the solution to my download problem was to specify (in IE) http://service.sap.com as a trusted site.  That allowed Download Manager to get the files.
    I'll also add that I successfully applied packs 6 & 7, as well as SP 70020 (required to update SPAM before applying pack 7) and am now in business!
    (Not sure I have the correct terminology for those - here's the file names I applied: KB70006.CAR, KB70007.CAR, KD70020.CAR)

  • Java Add-in for ABAP Sneak preview

    Hi Experts,
    Would it be possible to install the Java Add-in for the ABAP Sneak preview?
    Cheers,
    James

    hello,
    my system is:
    OS Windows 2003 server R2
    DB MaxDB
    SAP ECC 6.0
    the log file (java.exe.log) show:
    ConfigMainExt state200
    TYPE=A
    STATE=
    INFO_SHORT=java.lang.NullPointerException: java.lang.NullPointerException
    at com.sap.ctc.util.UserConfig.addUserToGroup(UserConfig.java:266)
    at com.sap.ctc.util.UserConfig.performFunction(UserConfig.java:71)
    at com.sap.ctc.util.ConfigServlet.doGet(ConfigServlet.java:74)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    CONFIGURATION=
    Thanks,
    Hernando
    Edited by: Hernando Polanía C on Aug 5, 2011 4:14 PM

  • ABAP sneak preview - BW: what is missing ?

    Hi all,
    Despite little documentation, I finally managed to get BW working in the ABAP sneak preview (thanks to Re: ABAP Preview and BW).
    According to the SDN download page, the announced full edition (J2EE+ABAP) will also include "SAP BW Java Components". Can anyone tell me what these components are and what functionality I am missing with just the ABAP engine installed ? Specifically I'd like to try out the BI SDK. Are these "SAP BW Java Components" required for the BI SDK ?
    Thanks,
    Cheers,
    Heiko

    Hi Raja,
    please have a look at Topic: BW Standalone Version.
    Regards
    Gregor

  • Where can I find an Access key for the user with "AS ABAP sneak preview" ?

    Hi all,
    I have installed AS ABAP sneak preview on my laptop.
    I use username "bcuser" and password "minisap". when I try to create some objects like, i.e. Function Group for Function Module, then it ask for an access key.
    Where can I find an access key for this ABAP SNEAK PREVIEW for user "bcuser"?
    I have gone thru some documents, I know we need to register user in OSS and need to get an access key from the marketplace but can I register this user "bcuser" or it's already register? I need some more specific information to resolve this issue.
    Please advise me on above question.
    Thanks,
    Haresh Solanki

    Hi Rich,
    I have entered ZH_XYZ as a Function Group name to create a new function group. While I am creating it, it asks for the Access Key. I tries to enter an Access Key here for the first time and it says wrong entry for access key.
    Also if I try to create new Function Module, it ask me to select the Function Group. As I couldn't create a new Function Group, I tried to select from existing(from SAP System's FG), still it asks for an access key, I enter the an Access Key here, then also it says wrong entry.
    I really got confused with this Access Key thing, can you provide me some insights?
    Thanks,
    Haresh Solanki

Maybe you are looking for

  • BAPI_GOODSMVT_CREATE - Still to be Delivered Quanity

    Hi All, In the transaction Me23n, I can display my Purchase Order Number. In the Header Data, Under the Status tab, I can see the Quantities as below: Ordered: 400 Delivered: 300 Still to be delivered: 100 Now I run the BAPI_GOODSMVT_CREATE with the

  • SSRS 2008: connection failure, timeout or low disk condition within the database. (rsReportServerDatabaseError)

    Hi, I have started getting this error since a week now when I try to schedule a report or change a schedule of a report.  An error occurred within the report server database. This may be due to a connection failure, timeout or low disk condition with

  • RE-FX: Dev with selection list

    Dear all, We have in the RE-FX module a development which creates a printout using a smartform. We first had the development without the selection list: you enter a range of invoices & every invoice gets printed. We added the selection list functiona

  • How can I remove the repetitive multiple daily updates from Mozilla

    Hello How can I remove the repetitive multiple daily updates from Mozilla? Within a day, each day I get prompts as: Mozilla Firefox Update is ready to install at your computer.........then I do install and update it.......then after few minutes again

  • [Slow NAL startup] How to speed up?

    We are a school with about 600 pc's running Windows XP + Novell Client 4.91 sp2. And one of the servers is running Netware 5.1 sp6, Zenworks for Desktops 4 and Zenworks for servers 3. We have 482 application objects in our tree. The problem is that a