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.

Similar Messages

  • Runtime Error while using Dynamic Selection

    Hi,
      We are getting a runtime error while using a dynamic selection. One of the fields has got an apostrophe in the middle of the text and so the condition is returning an error SAPSQL_WHERE_PARANTHESES.
      Let's say the value in the field is SCV's. So the WHERETAB is filled as 'SCV's' or `SCV's`. An exception is caught in this case as there is no closing apostrophe.
    Let us know if anyone has come across a similar issue and any help is appreciated.
    Regards,
    Sarves

    Hi Sarves,
    as Rob said.
    check also the [ORACLE FAQS|http://www.orafaq.com/faq/how_does_one_escape_special_characters_when_writing_sql_queries] or [SQL SERVER u2013 How to Escape Single Quotes|http://blog.sqlauthority.com/2008/02/17/sql-server-how-to-escape-single-quotes-fix-error-105-unclosed-quotation-mark-after-the-character-string/]
    Honestly: Before posting here and getting a whole lot of more or less useless comments just use your favorite search engine.
    Regards,
    Clemens

  • Got a Portal runtime error while using JSPDynepage

    Hi,
    Please help me out in the this error which I got when I tried to run the component developed based on JSPDynePage. I developed the component in the Developer Studio (version 2.0.4) in my local machine, built the project and deployed in the remote server using the option "Quick PAR Upload".
    It says JSP file could not be found.
    Thanks in advance
    Sushma
    <b>Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Cannot find JSP file: JSPFileInfo :27242692 JSP File : D:\usr\sap\NPL\JC03\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\Bean_Test1\pagelet\BeanJsp.jsp Class Name: sapportalsjspBeanJsp Java File : D:\usr\sap\NPL\JC03\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\Bean_Test1\work\pagelet\_sapportalsjsp_BeanJsp.java Package Name : pagelet Class File : D:\usr\sap\NPL\JC03\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\Bean_Test1\work\pagelet\_sapportalsjsp_BeanJsp.class Is out dated : true.
    Exception id: 01:45_03/11/04_0004_37482850
    See the details for the exception ID in the log file</b>

    Hi,
    I am also facing the same problem.
    1) EP6 SP7
    2) As mentioned in the error message there is no work directory in the mentioned path.
    3) Please find beow portalapp.xml and log file.
    <B>
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="SharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="default">
          <component-config>
            <property name="ClassName" value="Ex1"/>
            <property name="SecurityZone" value="Ex1/low_safety"/>
          </component-config>
          <component-profile>
          <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    </B>
    Exception:
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Resource
    Component : Ex1.default
    Component class : Ex1
    User : Administrator
    at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:444)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:527)
    at com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:89)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:232)
    at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:109)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:627)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:337)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:315)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:815)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:238)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
    at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
    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:94)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:151)
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: Cannot find JSP file: JSPFileInfo :16447115
    JSP File : D:
    usr
    sap
    P66
    JC00
    j2ee
    cluster
    server0
    apps
    sap.com
    irj
    servlet_jsp
    irj
    root
    WEB-INF
    portal
    portalapps
    Ex1
    pagelet
    Ex1.jsp
    Class Name: sapportalsjspEx1
    Java File : D:
    usr
    sap
    P66
    JC00
    j2ee
    cluster
    server0
    apps
    sap.com
    irj
    servlet_jsp
    irj
    root
    WEB-INF
    portal
    portalapps
    Ex1
    work
    pagelet
    _sapportalsjsp_Ex1.java
    Package Name : pagelet
    Class File : D:
    usr
    sap
    P66
    JC00
    j2ee
    cluster
    server0
    apps
    sap.com
    irj
    servlet_jsp
    irj
    root
    WEB-INF
    portal
    portalapps
    Ex1
    work
    pagelet
    _sapportalsjsp_Ex1.class
    Is out dated : true
    at com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:96)
    at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:355)
    at com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:931)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:435)
    ... 38 more
    #1.5#000C76EEC65400440000000F000001E80003E8A8BBC24BD7#1100236331418#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#Administrator#99#####SAPEngine_Application_Thread[impl:3]_26##0#0#Info##Plain###UserAgentHook: component com.sap.portal.runtime.system.hooks.ErrorComponent supports (*, *, *) #
    #1.5#000C76EEC654004400000010000001E80003E8A8BBC250B2#1100236331418#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#Administrator#99#####SAPEngine_Application_Thread[impl:3]_26##0#0#Info##Plain###------PRT AbstractPortalComponent: calling doContent for portal component: com.sap.portal.runtime.system.hooks.ErrorComponent#
    #1.5#000C76EEC654005B00000005000001E80003E8A8BC0E32CF#1100236336397#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#Administrator#96#####SAPEngine_Application_Thread[impl:3]_2##0#0#Info##Plain###UserAgentHook: component com.sap.portal.runtime.admin.logviewer.default supports (*, *, *) #
    #1.5#000C76EEC654004D0000000C000001E80003E8A8C46CFCDD#1100236476698#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#Administrator#96#####SAPEngine_Application_Thread[impl:3]_0##0#0#Info##Plain###UserAgentHook: component com.sap.portal.runtime.admin.logviewer.default supports (*, *, *) #

  • Verify operation failed and Runtime Error While using Adobe Reader 10.1.2

    We have installed Adobe reader 10.1.2 on Windows Servers 2008 and user are accessing its using Citrix.When users open PDF files they are getting message "Verify Operation Failed" and also getting error "Runtime Error"
    even on one server we updated the version to 10.1.3 but still they are getting same error.
    Pdf files open up but after multiple attempt..
    Error are provided below

    Hi, I have been using Citrix on Server 2008 for quite soemtime. And have not seen any such issues with Reader 10.1.2 and 10.1.3
    Can you provide the event viewer log ? Also is the same issue seen while opening PDF in the Citrix Server ? Or it is mainly seen while Citrix Users accessing the published Reader app via Citrix Web URL ?

  • Error while using SAP-XMII 12.1.5 in WINDOWS 7

    Hi All,
    Iam using SAP-XMII 12.1.5 in Windows7 OS.
    Some times I face NULLPOINTER Error in javascript.It was automatically cleared when i restart the system.
    Due to this my MII screens are not working properly.Can any one tell how to clear this Error.

    This error arises in Javascript if any of your variable is not assigned and if we try to access/compare that variable with something.
    If you can share the portion of javascript or the line number which you can see in Window 7 on double clicking at the botton left hand side error icon when u run the application.Than I can tell you the exact solution for it.
    Note : You just need to initial the javascript variable before using it.
    Thanks and Regards,
    Ajit

  • Error while using SAP download manager

    Hi,
    When we try to download patches using SAP download manager to download patches, I get the error below:
    The basket content could not be read. The following exception occured:
    Unable to read data form teh SAP Service Marketplace. Check your settings and try again.
    I have entered all the required information i.e. s-user id, password, proxy details etc in the 'download manager configuration.'
    Kindly let me know how to proceed forward.
    Thanks & Regards,
    Kunal Patel

    Hi Kunal,
    I think, by now your DM must be working, but just for info.
    Please check SAP Service Marketplace Address , it should be , http://service.sap.com/ and not https:.
    574885  Download Manager: Generate trace file for analysis
    401196  Download Manager: Proxy configuration problems.
    The above given SAP notes are very useful , which can be used to analyze the issue and also gives steps to generate the trace of the Download Manager which points to the issue. I resolved my DM issue with the above SAP notes.
    Steps mentioned in the SAP note 401196 - Download Manager: Proxy configuration problems to trace out the issue:
    Open a command prompt.
    CD to the directory where you installed the Download Manager.
    At the prompt, type "java -Djavax.net.debug=all -jar DLManager.jar dlmanager.Application".
    The Download Manager will be started. You are able to see detailed debugging information in the command prompt window. Note that it is also possible to write this output to a file.
    Do let the forum know if your issue is resolved or not.
    Regards,
    Anuj
    Edited by: Anuj Nigam on Oct 25, 2010 1:00 PM

  • Error while returning complex data type in a J2EE web service

    Hello,
    I am implementing J2EE web service which returns array of custom class object.
    I have implemented serializable interface to custom class, and also to session bean.
    But it gives the following error:
    Serializing object [Lcom.ltitl.j2ee.ejb.classes.ProjectDetails;@2a2289 fails. Nested message: XML Serialization Error. Object of Class [com.ltitl.j2ee.ejb.classes.ProjectDetails] does not have property [ObjId] of type [java.lang.Integer]. Check if the right object is passed to the serialization routine..
    As error stated about some property ObjId..I tried including such property in my class. But now it gave exception while deploying stating that ObjId already defined.
    Also I want to return multiple arrays of complex custom classes. i tried using vectors but didnt work. What is the method to return arrays of complex custom classes.
    Please help..
    Abhijeet

    Trying to create a web service that returns a Collection doesn't seem to be possible in Netweaver. The reason for this is that languages other than Java have difficulty in mapping Collections, amongst others, to their own native equivalents.
    There is a discussion on the subject here you may find useful:
    http://forum.capescience.com/showthreaded.php?Cat=&Board=webservices&Number=147&page=0&view=collapsed&sb=5&o=&vc=1
    The short answer is to use object Arrays instead, or a custom class that contains an array of each type of object you would expect to find in your Vector
    Hope this helps
    Steve

  • Error while installing SAP Enterprise 4.70 for Oracle

    Hi all,
    While installing R/3 4.7 on Windows 2000 with oracle database ,while installing database instance i encountered the following error message.
    CJS - 00084 SQL statement or Script failed
    Error Message: Executable D:\oracle\ora92/bin/sqlplus.exe returns 3
    FJS - 00012 Error when executing script
    I am copying the contents of the sapinst.log and sapinst_dev.log for reference.
    sapinst.log:
    TRACE
    receiving on port 21212
    TRACE
    sending on port 21213
    TRACE
    host name is sapsrv
    TRACE
    effective user corresponds to real user
    TRACE
    Administrator has SID S-1-5-21-1085031214-413027322-839522115-500
    TRACE
    account Administrator exists with parameter domain="SAPSRV"
    TRACE
    existence check for user Administrator returned true.
    TRACE
    inserted account (Administrator, S-1-5-21-1085031214-413027322-839522115-500, USER) into the accountcache.
    TRACE
    java has been started with the following command line: "C:\j2sdk1.4.2_15\bin\javaw.exe" -cp jar\instgui.jar;jar\inqmyxml.jar -Dsun.java2d.noddraw=true com.sap.ins.gui.Main -port 21212
    TRACE
    guiengine: waiting for connect on ports 21212 and 21213
    TRACE
    got notification...
    TRACE<i>
    got notification...
    TRACE
    signaling connect answer...
    TRACE
    releasing notifyLock
    TRACE
    trying to aquire notifyLock...
    TRACE
    running...
    TRACE
    showing dlg diInit
    TRACE
    waiting for an answer from gui
    TRACE
    got notification...
    TRACE
    releasing notifyLock
    TRACE
    Opened iaccdlib.dll
    TRACE
    Calling m_pGui->showLicenseAgreement()
    TRACE
    got notification...
    TRACE
    ACTION_OK received
    TRACE
    releasing notifyLock
    TRACE
    Opened iamodwas.dll
    TRACE
    The controller registered the module CIaWapsSystem
    TRACE
    The controller registered the module CIaWapsInstance
    TRACE
    The controller registered the module CIaWapsSystem
    TRACE
    The controller registered the module CIaWapsInstance
    TRACE
    The controller registered the module CIaWapsDBName
    TRACE
    The controller registered the module CIaWapsDBName
    TRACE
    The controller registered the module CIaWapsDBName
    TRACE
    Opened iamodora.dll
    TRACE
    The controller registered the module COraInputChecker
    TRACE
    Opened iamodos.dll
    TRACE
    The controller registered the module CIaOsPorts
    TRACE
    The controller registered the module COraInputChecker
    TRACE
    The controller registered the module COraInputChecker
    TRACE
    The controller registered the module CIaOsCheckJava
    TRACE
    The controller registered the module CIaOsCheckJava
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|dAskWhat
    TRACE
    showing dlg dORA_R3E_What
    TRACE
    waiting for an answer from gui
    TRACE
    got notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    releasing notifyLock
    TRACE
    tInstEnv :
    TRACE
    tInstEnv : tWhat
    TRACE
    value : INST
    TRACE
    The step dAskWhat with key R3E|ind|ind|ora|R3E|47|0|dAskWhat has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|dAskInstanceType
    TRACE
    tInstEnv :
    TRACE
    tInstEnv : tWhat
    TRACE
    value : INST
    TRACE
    tInstEnv :
    TRACE
    tInstEnv : tWhat
    TRACE
    value : INST
    TRACE
    showing dlg d_SAPComponent_InstanceType_ABAP
    TRACE
    waiting for an answer from gui
    TRACE
    got notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    releasing notifyLock
    TRACE
    The step dAskInstanceType with key R3E|ind|ind|ora|R3E|47|0|dAskInstanceType has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|dAskDbType
    TRACE
    tInstEnv :
    TRACE
    tInstEnv : tWhat
    TRACE
    value : INST
    TRACE
    tInstEnv :
    TRACE
    tInstEnv : tWhat
    TRACE
    value : DB
    TRACE
    showing dlg dORA_R3E_dbType
    TRACE
    waiting for an answer from gui
    TRACE
    got notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    releasing notifyLock
    TRACE
    The step dAskDbType with key R3E|ind|ind|ora|R3E|47|0|dAskDbType has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|dFillChildContext
    TRACE
    Opened iamodutl.dll
    TRACE
    t_SAPComponent_CONTEXT.updateRow(, WHERE ROWNUM=0), inserting
    TRACE
    The step dFillChildContext with key R3E|ind|ind|ora|R3E|47|0|dFillChildContext has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dSetDbInfoContextParam
    TRACE
    The step dSetDbInfoContextParam with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dSetDbInfoContextParam has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dGetHostInfo
    TRACE
    Processing row CONDITION=TRUE HOSTADDRESSES=value(NEEDED) HOSTALIASES=value(NEEDED) HOSTCPUCOUNT=value(NEEDED) HOSTCPUFAMILY=value(NEEDED) HOSTNAME=value(NEEDED) HOSTNAMELENGTH=value(NEEDED) HOSTOSFANAME=value(NEEDED) HOSTOSTYPE=value(NEEDED) HOSTPLATFORM=value(NEEDED) HOSTRAM=value(NEEDED) HOSTSWAP=value(NEEDED) OPMODE=GETINFO
    TRACE
    host name is sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    hostname after reverse lookup is: sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    INFO 2007-08-14 18:02:32
    Processing of host operation t_HostInfo_SHARED succeeded.
    TRACE
    The step dGetHostInfo with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dGetHostInfo has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dGetCurrentProcessInfo
    TRACE
    effective user corresponds to real user
    TRACE
    account Administrator exists with parameter domain="SAPSRV"
    TRACE
    effective user corresponds to real user
    TRACE
    account Administrator exists with parameter domain="SAPSRV"
    TRACE
    account Administrator exists with parameter domain="SAPSRV"
    TRACE
    t_HostInfo_SHARED.updateRow(, WHERE HostRole='LOCALHOST'), updating
    TRACE
    The step dGetCurrentProcessInfo with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dGetCurrentProcessInfo has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dCompleteContextWithHostInfo
    TRACE
    The step dCompleteContextWithHostInfo with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dCompleteContextWithHostInfo has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|makeSystemRowDB
    TRACE
    t_SAPComponent_Waps_System_SHARED.completeRow(, WHERE WapsSystemName='V11'), inserting
    TRACE
    t_SAPComponent_Waps_System_SHARED.completeExpression(, WHERE WapsSystemName='V11'), completing
    TRACE
    The step makeSystemRowDB with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|makeSystemRowDB has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|askForKeyParameters
    TRACE
    t_SAPComponent_Private.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    showing dlg d_SAPComponent_DBInstance
    TRACE
    waiting for an answer from gui
    TRACE
    got notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    host name is sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    releasing notifyLock
    TRACE
    host name is sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    hostname after reverse lookup is: sapsrv
    TRACE
    t_HostInfo_SHARED.updateRow(, WHERE HostRole='LOCALHOST'), updating
    TRACE
    The step askForKeyParameters with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|askForKeyParameters has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|cleanTables
    TRACE
    The step cleanTables with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|cleanTables has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|makeInstanceRow
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.updateRow(, WHERE WapsSystemName='V11' AND WapsInstanceType='DB' AND WapsInstanceNumber='' AND WapsInstanceHost='sapsrv'), inserting
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.completeExpression(, WHERE WapsSystemName='V11' AND WapsInstanceType='DB' AND WapsInstanceNumber='' AND WapsInstanceHost='sapsrv'), completing
    TRACE
    The step makeInstanceRow with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|makeInstanceRow has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dFillContextTablesOfOtherChildren
    TRACE
    t_SAPComponent_Waps_System_CONTEXT.updateRow(, WHERE ROWNUM=0), inserting
    TRACE
    t_DatabaseSystem_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    tCheckLibPath_context.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Accounts_CONTEXT.updateRow(, WHERE ROWNUM=0), inserting
    TRACE
    t_SAPComponent_Exports_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    found a match, deleting rows
    TRACE
    disabling branch t_SAPComponent_Stop_Services_CONTEXT
    TRACE
    t_SAPComponent_Filesystem_CONTEXT.updateRow(, WHERE ROWNUM=0), inserting
    TRACE
    t_SAPComponent_Ports_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Profiles_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    found a match, deleting rows
    TRACE
    disabling branch t_SAPComponent_Services_CONTEXT
    TRACE
    found a match, deleting rows
    TRACE
    disabling branch t_SAPComponent_MMC_CONTEXT
    TRACE
    found a match, deleting rows
    TRACE
    disabling branch t_SAPComponent_Program_Items_CONTEXT
    TRACE
    t_SAPComponent_Archives_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Pre_Steps_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Post_Steps_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_General_Environment_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    found a match, deleting rows
    TRACE
    disabling branch t_SAPComponent_Permissions_CONTEXT
    TRACE
    t_DatabaseClient_CONTEXT.updateRow(, WHERE ROWNUM=0), inserting
    TRACE
    found a match, deleting rows
    TRACE
    disabling branch t_DatabaseClientDB2_CONTEXT
    TRACE
    t_DatabaseServer_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_DatabaseLoad_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_DatabasePostLoad_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPInstancePrepare_context.updateRow(, WHERE ROWNUM=0), inserting
    TRACE
    t_SAPInstanceDbActions_context.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    found a match, deleting rows
    TRACE
    disabling branch t_DatabaseExport_context
    TRACE
    t_SAPComponent_Rfc_Jobs_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    found a match, deleting rows
    TRACE
    disabling branch t_SAPComponent_InQMy_CONTEXT
    TRACE
    found a match, deleting rows
    TRACE
    disabling branch t_SAPComponent_Enable_Java_CONTEXT
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Contexttables_HACK.insertRow(), inserting
    TRACE
    t_SAPComponent_Waps_System_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    The step dFillContextTablesOfOtherChildren with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|dFillContextTablesOfOtherChildren has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|AskForAbapOrJava
    TRACE
    The step AskForAbapOrJava with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|AskForAbapOrJava has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|makeCIRow
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.completeExpression(, WHERE WapsSystemName='V11' AND WapsInstanceType = 'CI'), inserting
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.updateRow(, WHERE WapsSystemName='V11' AND WapsInstanceType = 'CI'), updating
    TRACE
    t_SAPComponent_Private.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    showing dlg d_SAPComponent_CentralInstance
    TRACE
    waiting for an answer from gui
    TRACE
    got notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    releasing notifyLock
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.updateRow(, WHERE WapsSystemName='V11' AND WapsInstanceType = 'CI'), updating
    TRACE
    The step makeCIRow with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|makeCIRow has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|convertExpressions
    TRACE
    t_SAPComponent_Waps_System_SHARED.updateRow(, WHERE WapsSystemName='V11'), updating
    TRACE
    The step convertExpressions with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|convertExpressions has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|propagateContext
    TRACE
    t_SAPComponent_Waps_Instance_Dirs_CONTEXT.updateRow(, WHERE ROWNUM=0), inserting
    TRACE
    The step propagateContext with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|propagateContext has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|calculateRamDistribution
    TRACE
    found row
    TRACE
    found row
    TRACE
    myPart: 2, allParts: 5
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.completeRow(, WHERE WapsSystemName='V11' AND WapsInstanceName='' AND WapsInstanceHost='sapsrv'), completing
    TRACE
    The step calculateRamDistribution with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|calculateRamDistribution has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|invokeHostDialog
    TRACE
    showing dlg dNT_SAPComponent_Waps_Instance_Hostinfo
    TRACE
    waiting for an answer from gui
    TRACE
    got notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    releasing notifyLock
    TRACE
    The step invokeHostDialog with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|invokeHostDialog has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|tweakWindowsDomain
    TRACE
    t_SAPComponent_Waps_System_SHARED.updateRow(, WHERE WapsSystemName='V11'), updating
    TRACE
    The step tweakWindowsDomain with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|tweakWindowsDomain has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|completeContexttableHack
    TRACE
    t_SAPComponent_Waps_System_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_DatabaseSystem_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    tCheckLibPath_context.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Accounts_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Exports_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Filesystem_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Ports_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Profiles_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Archives_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Pre_Steps_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Post_Steps_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_General_Environment_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_DatabaseClient_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_DatabaseServer_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_DatabaseLoad_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_DatabasePostLoad_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPInstancePrepare_context.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPInstanceDbActions_context.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    t_SAPComponent_Rfc_Jobs_CONTEXT.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    The step completeContexttableHack with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|completeContexttableHack has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|GetMountInfo
    TRACE
    host name is sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    hostname after reverse lookup is: sapsrv
    TRACE
    host name is sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    hostname after reverse lookup is: sapsrv
    TRACE
    host name is sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    hostname after reverse lookup is: sapsrv
    TRACE
    host name is sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    hostname after reverse lookup is: sapsrv
    TRACE[E]
    Node F:\ does not exist.
    TRACE[E]
    Unable to determine used space on drive F:/: The device is not ready.
    TRACE[E]
    Unable to determine free space on drive F:/: The device is not ready.
    TRACE[E]
    Unable to get user quota on drive F:/: The device is not ready.
    TRACE
    t_DriveMapping_SHARED.completeRow(, WHERE WapsSystemName='V11' AND WapsInstanceName='' AND WapsInstanceHost='sapsrv' AND Key='WAPS_SapDir'), inserting
    TRACE
    t_DriveMapping_SHARED.completeRow(, WHERE WapsSystemName='V11' AND WapsInstanceName='' AND WapsInstanceHost='sapsrv' AND Key='WAPS_SapTransHost'), inserting
    TRACE
    The step GetMountInfo with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|GetMountInfo has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|InvokeDialog
    TRACE
    t_DriveMapping_SHARED.updateRow(, WHERE WapsSystemName='V11' AND WapsInstanceName='' AND WapsInstanceHost='sapsrv' AND Key='WAPS_SapDir'), updating
    TRACE
    Opened iajsmod.dll
    INFO 2007-08-14 18:02:38
    The 'saploc' share exists at directory 'D:\usr\sap'. Choosing drive D: as SAP System drive.
    TRACE
    t_SAPComponent_Private.updateRow(, WHERE ROWNUM=0), updating
    TRACE
    host name is sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    hostname after reverse lookup is: sapsrv
    TRACE
    host name is sapsrv
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    hostname after reverse lookup is: sapsrv
    TRACE
    showing dlg dNT_SAPComponent_Waps_Instance_Dirinfo
    TRACE
    waiting for an answer from gui
    TRACE
    got notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    IP name sapsrv resolves to IP address(es): 192.168.1.22
    TRACE
    hosts entry has IP address(es): 192.168.1.22
    TRACE
    IP address "192.168.1.22" added to hosts entry
    TRACE
    host name "sapsrv" added to host entry
    TRACE
    IP address 192.168.1.22 resolves to IP name(s): sapsrv
    TRACE
    hosts entry has host name(es): sapsrv
    TRACE
    releasing notifyLock
    TRACE
    t_DriveMapping_SHARED.updateRow(, WHERE WapsSystemName='V11' AND WapsInstanceName='' AND WapsInstanceHost='sapsrv' AND Key='WAPS_SapTransHost'), updating
    TRACE
    The step InvokeDialog with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|InvokeDialog has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|writeTable
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.updateExpression(, WHERE WapsSystemName='V11' AND WapsInstanceName='' AND WapsInstanceHost='sapsrv'), updating
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.updateRow(, WHERE WapsSystemName='V11' AND WapsInstanceName='' AND WapsInstanceHost='sapsrv'), updating
    TRACE
    The step writeTable with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|writeTable has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseSystem|ind|ind|ora|ind|ind|0|fillContextOfSubcomponents
    TRACE
    The step fillContextOfSubcomponents with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseSystem|ind|ind|ora|ind|ind|0|fillContextOfSubcomponents has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseSystem|ind|ind|ora|ind|ind|0|DatabaseCommonParameters|ind|ind|ora|ind|ind|0|dialogGetCommonParams
    INFO 2007-08-14 18:02:40
    Copying file D:/KERNEL/NT/COMMON/OraVolatileDatabaseParameters.xml to: OraVolatileDatabaseParameters.xml.
    INFO 2007-08-14 18:02:40
    Creating file C:\SAPinst ORACLE KERNEL\OraVolatileDatabaseParameters.xml.
    TRACE
    Getting OraVolatileDatabaseParameters.xml from CD: D:/KERNEL/NT/COMMON/OraVolatileDatabaseParameters.xml
    TRACE
    Reading volatile database parameters from 'OraVolatileDatabaseParameters.xml'.
    TRACE
    tGlobalDbParameters.completeRow(, WHERE dbSid = getContextParameter('dbSid')), completing
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tGlobalDbParameters WHERE dbSid = 'V11'
    TRACE
    tGlobalDbParameters.updateRow(, WHERE dbSid = getContextParameter('dbSid')), updating
    TRACE
    tGlobalDbParameters.updateRow(, WHERE dbSid = getContextParameter('dbSid')), updating
    TRACE
    tORA_DriveSelect.completeRow(, WHERE key = 'sapdataHome'), inserting
    TRACE
    tORA_DriveSelect.completeRow(, WHERE key = 'oraArch'), inserting
    TRACE
      <table name="tGlobalDbParameters">
    <!--
      points to base table      :tGlobalDbParameters
      belongs to client         :R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseSystem|ind|ind|ora|ind|ind|0|DatabaseCommonParameters|ind|ind|ora|ind|ind|0
      Row count of client table :1
      Row count of base   table :1
    -->
        <columns>
          <column name="dbSid"><!--  points to base table attribute :dbSid-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column>
          <column name="DbHostname"><!--  points to base table attribute :DbHostname-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column>
          <column name="dbServerVersion"><!--  points to base table attribute :dbServerVersion-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column>
          <column name="dbServerBit"><!--  points to base table attribute :dbServerBit-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column>
          <column name="dbClientVersion"><!--  points to base table attribute :dbClientVersion-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column>
          <column name="dbClientBit"><!--  points to base table attribute :dbClientBit-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column>
          <column name="dbHome"><!--  points to base table attribute :dbHome-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column>
          <column name="dbHomeName"><!--  points to base table attribute :dbHomeName-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column>
          <column name="dbSchema"><!--  points to base table attribute :dbSchema-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column>
          <column name="OraStageDir"><!--  points to base table attribute :OraStageDir-->
            <defaultproperties>
              <property name ="CHANGEABLE" value ="YES" />
            </defaultproperties>
          </column&g

    and look for
    sqlplus.exe returns 3
    this should help - issue was posted multiple times

  • Runtime Error while executing SAP Std Pgm as per note no - 64490

    Hi,
    I'm executing SAP Std Pgm RKEAGENV(It reorganizes the TVDIR entries and the maintenance modules) as per OSS Note 64490. This program is giving dump as given below:
    Short text
        Error when importing object "FIELDTAB".
    What happened?
        Error in the ABAP Application Program.
        The current ABAP program "SAPLKEFT" had to be terminated because it has come across a statement that unfortunately cannot be executed.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
         not caught in procedure "READ_INDX" "(FORM)", nor was it propagated by a RAISING clause.
        Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated.
        The reason for the exception is:
        When importing object "FIELDTAB", the structure did not match the structure of the target object. The error occurred in component no. 58.
    Missing RAISING Clause in Interface
        Program                                 SAPLKEFT
        Include                                 LKEFTF02
        Row                                     18
        Module type                             (FORM)
        Module Name                             READ_INDX
    Please help me hoe to come out from this problem..
    Param.

    Hi Param.
    We are facing the same error. Were u able to resolve this?
    Any suggestions would be helpful
    Thanks.

  • Runtime error while using GUI_UPLOAD

    Hi All,
    I have a text file which contains few records delimited by tab.
    I am trying to upload the contents of the file into an internal table using the FM GUI_UPLOAD
    But, I am getting run time error 'Type conflict when calling a function module'.
    The code that I had written is shown below.
    Please let me know where I went wrong.
    REPORT  Z84364BDC                               .
    TYPES : BEGIN OF ITAB_TP,
            MATNR TYPE MARA-MATNR,
            EAN11 TYPE MARA-EAN11,
            END OF ITAB_TP.
    DATA : FILE_ITAB TYPE STANDARD TABLE OF ITAB_TP.
    DATA : ITAB_WA TYPE ITAB_TP.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-T01.
    PARAMETERS : P_FILE TYPE RLGRAP-FILENAME DEFAULT 'D:\Example.txt'.
    SELECTION-SCREEN END OF BLOCK B1.
    ***FILLING THE INTERNAL TABLE****
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = P_FILE
        FILETYPE                      = 'ASC'
        has_field_separator           = ','
        tables
        data_tab                      = FILE_ITAB
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    The file is delimited by Comma field as mentioned above.
    Below is the code that I had written. But, I face the same problem
    REPORT  Z84364BDC                               .
    TYPES : BEGIN OF ITAB_TP,
            MATNR TYPE MARA-MATNR,
            EAN11 TYPE MARA-EAN11,
            END OF ITAB_TP.
    DATA : FILE_ITAB TYPE STANDARD TABLE OF ITAB_TP.
    DATA : ITAB_WA TYPE ITAB_TP.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-T01.
    PARAMETERS : P_PATH TYPE RLGRAP-FILENAME DEFAULT 'D:\Example.txt'.
    SELECTION-SCREEN END OF BLOCK B1.
    DATA : P_FILE TYPE STRING.
    P_FILE = P_PATH.
    ****FILLING THE INTERNAL TABLE*****
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = P_FILE
        FILETYPE                      = 'ASC'
        has_field_separator           = 'X'
        tables
        data_tab                      = FILE_ITAB
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ***Displaying the Material*****
    LOOP AT FILE_ITAB INTO ITAB_WA.
    WRITE:/ ITAB_WA-MATNR.
    ENDLOOP.

  • Getting runtime error while using hash table

    Hi,
    I have defined an internal table as hash with unique key.But while executng the prog. its giving a dump saying "There is already a line with the same key." My code is
      data: begin of wa_rkrp,
             vbeln like vbrk-vbeln,
             fkdat like vbrk-fkdat,
             fkart like vbrk-fkart,
             kunag like vbrk-kunag,
             knumv like vbrk-knumv,
             inco1 like vbrk-inco1,
             spart like vbrk-spart,
             netwr like vbrk-netwr,
             mwsbk like vbrk-mwsbk,
             uepos like vbrp-uepos,
             werks like vbrp-werks,
             lgort like vbrp-lgort,
            end of wa_rkrp.
      data lt_rkrp like hashed table of wa_rkrp
               with unique key vbeln
               with header line.
      select vbrk~vbeln
             vbrk~fkdat
             vbrk~fkart
             vbrk~kunag
             vbrk~knumv
             vbrk~inco1
             vbrk~spart
             vbrk~netwr
             vbrk~mwsbk
             vbrp~uepos
             vbrp~werks
             vbrp~lgort
             into table lt_rkrp
             from vbrk inner join vbrp
              on  vbrpvbeln = vbrkvbeln
             where vbrk~fkdat in s_fkdat
               and vbrk~bukrs eq p_bukrs.
    Any problem in my select query? or with my table deifnition.
    Can anyone pls suggest how to rectify this.

    define a unique key VBELN and POSNR.
    data lt_rkrp like hashed table of wa_rkrp
    with unique key vbeln posnr
    with header line.
    BTW: Stop using the header line!!! Outdated!!
    Edited by: Micky Oestreich on Mar 23, 2009 7:28 AM

  • Error while using SAP Logon PAD

    Hii,
    This is not an ABAP related doubt but a general one.
    I am getting an error 'The Procedure entry point RfcResetTraceDir could not be located in the dynamic link library LIBRFC32.dll. when am clicking on sap logon pad.
    Does anyone knw y this error is coming.I have changed my old sys so may something is missing here.
    Can u please help.
    Many Thanks

    Hi Neeraj,
    You need to consult with the BASIS team . They are resoponsible to handle this problem. You might some patch installed on your system.
    Thanks,
    Chidanand

  • SAP Enterprise Connector

    Hi Experts
    I tried generating Proxy classes for first time for FlightAppList using SAP Enterprise connector by selecting Single Server option, I have installed SAP Management Console on the system having host name 'sap-server', the details i provided was as follows:
    HostName:'sap-server'
    System Number: 00
    SAP Router:
    User Account
    Client : 001
    LogonName: pradeep
    Password: password
    Language:ENG
    but i get the error as
    Connect to SAP failed
    Error: Partner not reached
    Do i need to do any settings on SAP Netweaver console.
    Kindly let me know.

    Configuring webasabap needs SAP security library which can be downloaded at sap market place, but it needs a license username password which i dont have.
    I have only downloaded the trial version "SAPNW2004sJavaSP9_Trial"  is there a way i can connect my java program to SAP database without having any license?

  • 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 while using  soap adapter in webservice to sap system scenario

    Hi everybody,
    i got the error while using saop adapter in scenario(sender webservice----->sap system)
    error is
    HTTP error:couldnot post file
    '/XISOAPAdapter/MessageServlet:Channel=:BS1:SPA.&amp;
    version+3.0&amp;sender.Service=BS1&amp;interface=http%3ASP%5OUTBOUND'on server 'XI03'(500)

    check with ur basis people

Maybe you are looking for

  • Need help with a CUP workflow scenario

    Dear Experts, I'm sure it is not just me encountered this required scenario (or something similar).  I would like some pointers how to transcript it to a CUP workflow: Application admin logs a provisioning request. Security creates a user account and

  • HT1420 Where is the "Store Menu" located in iTunes? I cannot find "Authorize This Computer"...

    Where is the "Store Menu" located in iTunes? I cannot find "Authorize This Computer"...

  • Invoice Coreection request for Debit Process

    hi I wanted to use the Invoice correction Request for the Debit Process I have invoices customer for 10 pieces instead of 12 Pieces , so I need to correct the Invoice and need to get money for the remaining 2 qtys. Customer wants to do the same throu

  • How Can watch full screen movie from my Ipad to my tv ?

    Hi...When I am conecting my ipad to tv for watching movie ,which is downloaded from itunes ,I am not able to have full screen in my tv .Can I watch moviw from my ipad to tv in full screen ?

  • E-recruiting Blueprint

    We are new to E-recruiting.  We would like to see what someone else has done with their E-recruiting project.  Can anyone share their Blueprint for E-recruiting with us?  We are just getting started and are just in the planning stage but are looking