Error in deploying the ETL package

Facing the problem while delopying the ETL package of OWB. Getting the below error. Experts please provide your inputs.
++[exec] Connected to:++
++[exec] Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production++
++[exec] With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,++
++[exec] Data Mining and Real Application Testing options++
++[exec] old 2: srvr varchar2(255) := '&1';++
++[exec] new 2: srvr varchar2(255) := 'enter';++
++[exec] old 3: lport number := '&2';++
++[exec] new 3: lport number := 'your';++
++[exec] old 4: uport number := '&3';++
++[exec] new 4: uport number := 'company';++
++[exec] declare++
++[exec] *++
++[exec] ERROR at line 1:++
++[exec] ORA-06502: PL/SQL: numeric or value error: character to number conversion error++
++[exec] ORA-06512: at line 3++

Hi,
You can undeploy using the IDE itself.
1. Go to Deploy perspective (Window>open perpective>other-->Deploy)
2. There u can select Deploy view or undeploy view.
Regards,
Srinivasan Subbiah

Similar Messages

  • Error while deploying the Bussiness package in CE 7.1 SP5

    Hi All,
    I am facing the problem while deploying the Bussiness package. The same bussiness package has been deployed on EP 7.0 using SDM. In CE 7.1 while deploying the package we are getting error. Please check the log.
    -- Deployment Items -
         1. Client path '
    \sapmnt\trans\EPS\in\BPERP5COM03_0-10004453.SCA\DEPLOYARCHIVES\tc~sl.ut.content.erp.bp_erp.sda'
         Sdu info :name 'tc~sl.ut.content.erp.bp_erp', vendor 'sap.com', location 'MAIN_ERP52VAL_C', version '1592825', software type ('J2EE', sub type ''), dependencies :[none]
              Deploy status is 'Aborted'
              Time statistics( ms ):
                   1.validate : -1
                        1.1.deployment : 218
                             1.1.1.Notify:Event triggered : 15
                             1.1.2.Disable LCM deployment : 203
                                  1.1.2.1.Perform delivery : 203
                                       1.1.2.1.1.Application Deployer : 203
              Description:'1. [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5082] Exception while validating application sap.com/tc~sl.ut.content.erp.bp_erp.
    No one of the [developmentserver, com.sap.security.login-modules] containers, which processed it, returned deployed component names.
    The registered containers in this moment were [CTCContainer, com.sap.security.ume, developmentserver, com.sap.security.login-modules, app_libraries_container, Cache Configuration Upload, servlet_jsp, dbcontentcontainer, connector, Cluster File System, JMSConnector, MigrationContainer, Monitoring Configurator, dbschemacontainer, appclient, orpersistence, PortalRuntimeContainer, SAP-EU-GP, JDBCConnector, EJBContainer, metamodelrepository, webservices_container, scheduler~container, ConfigurationsContainer, Content Container].
    Possible reasons :
         1.An AS Java service, which is providing a container, is stopped or not deployed.
         2.The containers, which processed it, are not implemented correct. They deployed or started initially the application, but didn't return deployed components in the application deployment info.'.
    I have checked all the services in NWA, they are all running fine but one of the service is not available com.sap.security.login-modules and also in the log file it is saying that nested exeception.
    I am Basis consultant i couldnt able to get what is nested exception.
    How to undeploy the packages?
    In CE there is no SDM is there any alternative tool to undeploy and deploy the Packages like SDM other JSPM.
    Please guide on this.
    Thanks in Advance.
    Mahesh C

    Hi,
    You can undeploy using the IDE itself.
    1. Go to Deploy perspective (Window>open perpective>other-->Deploy)
    2. There u can select Deploy view or undeploy view.
    Regards,
    Srinivasan Subbiah

  • Error While Deploying the BPEL Process using obant script

    Hi All,
    I am getting the following error while deploying the BPEL Process using obant script. we are using the BPEL Version 10.1.2.0.2.Any information in this regard will be really helpful.
    Buildfile: build.xml
    main:
    [bpelc] file:/home5102/dibyap/saravana/Test/CreditRatingService.wsdl
    [bpelc] validating "/home5102/dibyap/saravana/Test/CreditRatingService.bpel" ...
    BUILD FAILED
    /home5102/dibyap/saravana/Test/build.xml:15: ORABPEL-01002
    Domain directory not found.
    The process cannot be deployed to domain "default" because the domain directory "/opt02/app/ESIT/oracle/esit10gR2iAS/BPEL10gR2/iAS/integration/orabpel/domains/default/deploy" cannot be found or cannot b
    e written to.
    Please check your -deploy option value; "default" must refer to a domain that has been installed locally on your machine.
    Total time: 23 seconds
    dibyap@ios5102_ESIBT:/home5102/dibyap/saravana/Test>
    Thanks,
    Saravana

    In 10.1.2.0.2 you need to create your own build.xml
    I have found an example, it may be of some help. This does call a property file
    cheers
    James
    <?xml version="1.0" ?>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Run cxant on this file to build, package and deploy the
    ASB_EFT BPEL process
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <project name="ASB_EFT" default="main" basedir=".">
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Name of the domain the generated BPEL suitcase will be deployed to
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <property name="deploy" value="default" />
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    What version number should be used to tag the generated BPEL archive?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <property name="rev" value="1.0" />
    <!-- BPEL Best Practices Properties -->
    <!-- Defaults Properties for TARGET environments
    # CHANGE THIS FILE TO REFLECT THE TARGET ENVIRONEMNT
    # either dev, test, or prod.properties
    -->
    <property file="ebusd.properties"/>
    <property name="env" value="${env.name}"/>
    <property name="current.project.name" value="${project.name}"/>
    <property name="target.project.name" value="${project.name}_${env}"/>
    <property name="deployment.profile" value ="${env}.properties"/>
    <property name="source.development.directory" location="${basedir}"/>
    <property name="target.env.directory" location="${basedir}/deploy/${project.name}_${env}"/>
    <property file="${deployment.profile}"/>
    <property name="build.fileencoding" value="UTF-8"/>
    <!-- Prints Environment
    -->
    <target name="print.env" description="Display environment settings">
    <echo message="Base Directory: ${basedir}"/>
    <echo message="Deployment Profile: ${deployment.profile}"/>
    <echo message="target.env.directory: ${target.env.directory}"/>
    <echo message="Deploy to Domain: ${deployToDomain}"/>
    <echo/>
    <echo message="os.name: ${os.name}"/>
    <echo message="os.version: ${os.version}"/>
    <echo message="os.arch: ${os.arch}"/>
    <echo/>
    <echo message="java.home: ${java.home}"/>
    <echo message="java.vm.name: ${java.vm.name}"/>
    <echo message="java.vm.vendor: ${java.vm.vendor}"/>
    <echo message="java.vm.version: ${java.vm.version}"/>
    <echo message="java.class.path: ${java.class.path}"/>
    <echo/>
    <echo message="env: ${env}"/>
    <echo message="current.project.name: ${current.project.name}"/>
    <echo message="target.project.name: ${target.project.name}"/>
    <echo message="server.name: ${server.name}"/>
    </target>
    <!--
    Copies the current directory structure along with
    all the file into the target.env.directory and
    change the name of the project
    -->
    <target name="create.environment">
    <copy todir="${target.env.directory}">
    <fileset dir="${basedir}"/>
    <filterset begintoken="@" endtoken="@">
    <filtersfile file="${deployment.profile}"/>
    </filterset>
    </copy>
    <move file="${target.env.directory}/${current.project.name}.jpr" tofile="${target.env.directory}/${target.project.name}.jpr"/>
    </target>
    <target name="main">
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    the bpelc task compiles and package BPEL processes into versioned BPEL
    archives (bpel_...jar). See the "Programming BPEL" guide for more
    information on the options of this task.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <bpelc input="${basedir}/bpel.xml" rev="${rev}" deploy="${deploy}" />
    </target>
    </project>
    here is a property file
    project.name=ASB_EFT
    env.name=ebusd
    deployToDomain=default
    server.name=[server]
    server.port=7788
    ebusd\:7788=http://[server]:7788/
    IntegrationMailAccount=OracleBPELTest
    IntegrationMailAddress=[email]
    IntegrationMailPassword=[password]
    archivedir=[directory]
    inbounddir=/[directory]
    errordir=[directory]
    outbounddir=[directory]
    bpelpw=bpel
    dbhost1=[dbserver]
    dbhost2=[dbserver]
    dbport=1523
    dbservice=bpel
    dbconnstr=jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=[server])(PORT=1523))(ADDRESS=(PROTOCOL=tcp)(HOST=[server])(PORT=1523)))(CONNECT_DATA=(SERVICE_NAME=ebusd)))

  • Error while deploying the BPEL process

    Hi All,
    I’m getting the following error while deploying the BPEL process.
    “Error:
    [Error ORABPEL-10903]: failed to read wsdl
    [Description]: in "bpel.xml", Error loading schemas from wsdl.
    Error while loading schemas from wsdl file at location "http://ios0501e.idc.ikon.org:7720/vertex-ws/calculate-tax-wsdl.jsp?WSDL". The reason is .
    Please verify the schemas defined in wsdl.
    [Potential fix]: If your site has a proxy server, then you may need to configure your BPEL Server, designer and browser with your proxy server configuration settings (see tech note on http://otn.oracle.com/bpel for instructions).
    Kindly let me know if you have any pointers on the above.
    Thanks in Advance.
    Regards
    Sravana

    Check you proxy settings. Disable them in your deployment tool / JDeveloper

  • Error while deploying the project to ESB and deleting the services in ESB

    Hi,
    I am tiring to deploy a project to ESB, but I am getting this exception.
    error code: 0 : 10
    summary: An unhandled exception has been thrown in the ESB system. The exception reported is: "javax.transaction.RollbackException: Timed out
    at com.evermind.server.ApplicationServerTransaction.checkForRollbackOnlyWhileInCommit(ApplicationServerTransaction.java:582)
    at com.evermind.server.ApplicationServerTransaction.doCommit(ApplicationServerTransaction.java:244)
    at com.evermind.server.ApplicationServerTransaction.commit(ApplicationServerTransaction.java:130)
    at com.evermind.server.ApplicationServerTransactionManager.commit(ApplicationServerTransactionManager.java:433)
    at oracle.tip.esb.console.XMLConsoleManagerImpl.commit(Unknown Source)
    at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.deploy(Unknown Source)
    at oracle.tip.esb.configuration.deployment.DeploymentServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Fix: -
    In the earlier thread
    Error while deploying the project to ESB
    I was told to do some corrections. I did that and also I have bounced the OPMN. It worked for me.
    But again I am getting the same error, and I did this for the second time. But it didn’t work now.
    And I also have one more problem. I am not able to delete the existing services in the ESB console. When I try to delete the services I am getting the same error.
    I even checked the LOGS. The last three error payloads I see are
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2007-04-03T13:15:30.846-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="WARNING"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>usmlrh37.arrow.com</HOST_ID>
    <HOST_NWADDR>192.168.226.25</HOST_NWADDR>
    <MODULE_ID>esb.server.service.impl.inadapter</MODULE_ID>
    <THREAD_ID>26</THREAD_ID>
    <USER_ID>soauser</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.226.25:62472:1175620406177:7</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>JCA: ORABPEL-11207
    IO Failure in translator.
    IO failure because the Inbound XSD translator failed to DOM Parse InputStream .
    Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
    </MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[ORABPEL-11207
    IO Failure in translator.
    IO failure because the Inbound XSD translator failed to DOM Parse InputStream .
    Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
         at oracle.tip.pc.services.translation.xlators.xsd.XSDTranslator.translateFromNative(XSDTranslator.java:136)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.translateMessage(MessageProcessor.java:377)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.processMessage(MessageProcessor.java:217)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.run(MessageProcessor.java:165)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.io.UTFDataFormatException: Invalid UTF8 encoding.
         at oracle.xml.parser.v2.XMLUTF8Reader.checkUTF8Byte(XMLUTF8Reader.java:160)
         at oracle.xml.parser.v2.XMLUTF8Reader.readUTF8Char(XMLUTF8Reader.java:187)
         at oracle.xml.parser.v2.XMLUTF8Reader.fillBuffer(XMLUTF8Reader.java:120)
         at oracle.xml.parser.v2.XMLByteReader.saveBuffer(XMLByteReader.java:450)
         at oracle.xml.parser.v2.XMLReader.fillBuffer(XMLReader.java:2488)
         at oracle.xml.parser.v2.XMLReader.tryRead(XMLReader.java:1089)
         at oracle.xml.parser.v2.XMLReader.scanXMLDecl(XMLReader.java:3047)
         at oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:521)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:287)
         at oracle.tip.pc.services.translation.xlators.xsd.XSDTranslator.translateFromNative(XSDTranslator.java:134)
         ... 8 more
    ]]></SUPPL_DETAIL>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2007-04-03T13:15:30.850-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="ERROR"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>usmlrh37.arrow.com</HOST_ID>
    <HOST_NWADDR>192.168.226.25</HOST_NWADDR>
    <MODULE_ID>esb.monitor.manager</MODULE_ID>
    <THREAD_ID>29</THREAD_ID>
    <USER_ID>soauser</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.226.25:62472:1175620406325:10</UNIQUE_ID><SEQ>87</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>Activity monitor manager received an unexpected exception while processing the activity messages. Due to the error "ORA-01653: unable to extend table ORAESB.ESB_FAULTED_INSTANCE by 8 in tablespace USERS
    ", the activity message could not be stored.
    </MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[oracle.tip.esb.monitor.MonitorException: Due to the error "ORA-01653: unable to extend table ORAESB.ESB_FAULTED_INSTANCE by 8 in tablespace USERS
    ", the activity message could not be stored.
         at oracle.tip.esb.monitor.manager.database.AbstractFaultPersister.persist(Unknown Source)
         at oracle.tip.esb.monitor.manager.database.DBActivityMessageStore.persistMessage(Unknown Source)
         at oracle.tip.esb.monitor.manager.database.DBActivityMessageStore.store(Unknown Source)
         at oracle.tip.esb.monitor.manager.ActivityMessageManager.handleMessage(Unknown Source)
         at oracle.tip.esb.server.dispatch.agent.ESBWork.process(Unknown Source)
         at oracle.tip.esb.server.dispatch.agent.ESBWork.run(Unknown Source)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.sql.SQLException: ORA-01653: unable to extend table ORAESB.ESB_FAULTED_INSTANCE by 8 in tablespace USERS
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:633)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1161)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3001)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3074)
         at oracle.oc4j.sql.proxy.PreparedStatementBCELProxy.executeUpdate(PreparedStatementBCELProxy.java:37)
         at oracle.tip.esb.monitor.manager.database.oracle.OracleFaultPersister.persist(Unknown Source)
         ... 11 more
    ]]></SUPPL_DETAIL>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2007-04-03T13:15:30.853-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="ERROR"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>usmlrh37.arrow.com</HOST_ID>
    <HOST_NWADDR>192.168.226.25</HOST_NWADDR>
    <MODULE_ID>esb.server.dispatch.agent</MODULE_ID>
    <THREAD_ID>29</THREAD_ID>
    <USER_ID>soauser</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.226.25:62472:1175620406325:10</UNIQUE_ID><SEQ>87</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>Failed to process deferred message</MSG_TEXT>
    <SUPPL_DETAIL>oracle.tip.esb.server.common.exceptions.BusinessEventRejectionException: Error occured while handling monitor message dequeued from monitor topic. Message text is "<activityMessages><activityMessage order='0' type='2'><flowId>ECA97010E20611DBBFEBA191573C68FA</flowId><subFlowId>1175620530577</subFlowId><source>379D02F0DD5F11DBBF92D52E11DE817E</source><sourceQName>Demo_Inbound_Queue_to_DB.Demo_Inbound_Queue_to_DB_From_Queue</sourceQName><timestamp>1175620530577</timestamp><operationGUID>379E8990DD5F11DBBF92D52E11DE817E</operationGUID><operationQName>Demo_Inbound_Queue_to_DB.Demo_Inbound_Queue_to_DB_From_Queue_RS.Dequeue</operationQName><errorMessage><![CDATA[java.util.MissingResourceException
    java.util.MissingResourceException
    java.util.MissingResourceException
    ]]></errorMessage><exception><![CDATA[ORABPEL-13004
    java.util.MissingResourceException
    java.util.MissingResourceException
    java.util.MissingResourceException
         at oracle.tip.adapter.mq.inbound.MessageProcessor.translateMessage(MessageProcessor.java:388)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.processMessage(MessageProcessor.java:217)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.run(MessageProcessor.java:165)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:595)
    ]]></exception><inPayload><![CDATA[ediExtract850Header           4085537732     8670SSD23962-29     008675989102007032220070322
    [b]Can any one please help me.
    Thanks
    Rao.

    Hi Bastiaan,
    Thanks for the reply. I have asked my DBA analyst to work on this. He has increased the table space. Now if I try to deploy the projects to ESB the following error is show.
    Error 1:
    error code: 1000 : 5
    summary: /rh37/u01/app/soa/10.1.3.1/SOA/integration/esb/oraesb/deploy/OAGISApp_OAGIS.zip (Read-only file system)
    Fix: Contact Oracle Support
    Error 2:
    Entity Deployment Failed
    error code: 0 : 10
    summary: An unhandled exception has been thrown in the ESB system. The exception reported is:
    "oracle.tip.esb.infra.exception.ESBRuntimeException: An unhandled exception has been thrown in the ESB system. The exception
    reported is: "java.lang.NullPointerException
         at oracle.tip.esb.console.CacheManager.updateService(Unknown Source)
         at oracle.tip.esb.console.CacheManager.replaceEntity(Unknown Source)
         at oracle.tip.esb.console.XMLConsoleManagerImpl.updateServiceInRepository(Unknown Source)
         at oracle.tip.esb.console.XMLConsoleManagerImpl.updateServiceFromElement(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.createEntity(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.createServices(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.deploy(Unknown Source)
         at oracle.tip.esb.configuration.deployment.DeploymentServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         at oracle.tip.esb.console.XMLConsoleManagerImpl.updateServiceInRepository(Unknown Source)
         at oracle.tip.esb.console.XMLConsoleManagerImpl.updateServiceFromElement(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.createEntity(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.createServices(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.deploy(Unknown Source)
         at oracle.tip.esb.configuration.deployment.DeploymentServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.NullPointerException
         at oracle.tip.esb.console.CacheManager.updateService(Unknown Source)
         at oracle.tip.esb.console.CacheManager.replaceEntity(Unknown Source)
         ... 26 more
    Fix: -
    I tried to stop and start the OPMN. It didn't work. Can you please help me.
    Thanks
    Rao.
    Message was edited by:
    user552961

  • Getting Error While deploying the BPEL process

    Hi All,
    I am getting the following error while deploying the BPELProcess. The BPEL process is simple one which is having a Recieve from client and another Recieve from FTPAdapterfor Recieve Operation.
    Help me in resolving this. Thankyou.
    Process "BPELProcess3" (revision "v2009_02_02__34994") successfully compiled.
    <2009-02-02 09:51:06,356> <INFO> <default.collaxa.cube.engine.deployment> Process "BPELProcess3" (revision "v2009_02_02__34994") successfully loaded.
    <2009-02-02 09:51:18,088> <ERROR> <default.collaxa.cube> <BaseCubeSessionBean::logError> Error while invoking bean "cube delivery": Correlation definition not registered.
    The correlation set definition for operation "Get", process "BPELProcess3", has not been registered with the process domain.
    Please try to redeploy your process to the process domain.
    ORABPEL-03802
    Correlation definition not registered.
    The correlation set definition for operation "Get", process "BPELProcess3", has not been registered with the process domain.
    Please try to redeploy your process to the process domain.
    at com.collaxa.cube.engine.delivery.CorrelationRegistry.resolve(CorrelationRegistry.java:91)
    at com.collaxa.cube.engine.delivery.DeliveryHelper.createCorrelationSet(DeliveryHelper.java:94)
    at com.collaxa.cube.engine.delivery.SOAPProtocolHandler.calculateCorrelations(SOAPProtocolHandler.java:751)
    at com.collaxa.cube.engine.delivery.SOAPProtocolHandler.receiveCallback(SOAPProtocolHandler.java:167)
    at com.collaxa.cube.engine.delivery.DeliveryService.receiveCallback(DeliveryService.java:446)
    at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.receiveCallback(CubeDeliveryBean.java:99)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at CubeDeliveryBean_LocalProxy_4bin6i8.receiveCallback(Unknown Source)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.continuePostAnyType(DeliveryHandler.java:416)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.continuePost(DeliveryHandler.java:370)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.post(DeliveryHandler.java:88)
    at com.collaxa.cube.ejb.impl.DeliveryBean.post(DeliveryBean.java:201)
    at com.collaxa.cube.ejb.impl.DeliveryBean.post(DeliveryBean.java:156)
    at sun.reflect.GeneratedMethodAccessor214.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at DeliveryBean_RemoteProxy_4bin6i8.post(Unknown Source)
    at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:195)
    at oracle.tip.adapter.fw.AdapterFrameworkListenerBase$DeliveryServiceMonitor.send(AdapterFrameworkListenerBase.java:2543)
    at oracle.tip.adapter.fw.AdapterFrameworkListenerBase.executeDeliveryServiceSend(AdapterFrameworkListenerBase.java:569)
    at oracle.tip.adapter.fw.AdapterFrameworkListenerBase.deliveryServiceSend(AdapterFrameworkListenerBase.java:625)
    at oracle.tip.adapter.fw.jca.AdapterFrameworkListenerImpl.performSingleActivation(AdapterFrameworkListenerImpl.java:952)
    at oracle.tip.adapter.fw.jca.AdapterFrameworkListenerImpl.onMessage(AdapterFrameworkListenerImpl.java:799)
    at oracle.tip.adapter.fw.jca.messageinflow.MessageEndpointImpl.onMessage(MessageEndpointImpl.java:281)
    at oracle.tip.adapter.file.inbound.ProcessWork.publishMessage(ProcessWork.java:826)
    at oracle.tip.adapter.file.inbound.ProcessWork.processMessages(ProcessWork.java:228)
    at oracle.tip.adapter.file.inbound.ProcessWork.run(ProcessWork.java:179)
    at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
    at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:272)
    at java.lang.Thread.run(Thread.java:595)

    Yes you are right. I do have two recieves and I think I need to set the Correlation set is it so ?
    here is the code from my bpel file
    <!-- Receive input from requestor. (Note: This maps to operation defined in BPELProcess3.wsdl) -->
    <receive name="receiveInput" partnerLink="client"
    portType="client:BPELProcess3" operation="initiate"
    variable="inputVariable" createInstance="yes">
    </receive>
    <!--
    Asynchronous callback to the requester. (Note: the callback location and correlation id is transparently handled using WS-addressing.)
    -->
    <receive name="Poll_For_Zip_File" partnerLink="FileBinaryRead"
    portType="ns1:Get_ptt" operation="Get"
    variable="Poll_For_Zip_File_Get_InputVariable"
    createInstance="no" bpelx:headerVariable="MyInBoundHeader">
    </receive>
    Please let me know how can I add the correlation If I had to add in my bepl process.

  • Getting an error while deploying the Quiz application in NWDEV

    Hi,
    I am getting an error while deploying the Quiz application in NWDEV.
    Please check this error log.
    It looks that it is not getting the Question.properties file but the file is already specified
    in the desired location.
    Error log:
    Detailed Error Information
    Detailed Exception Chain
    java.util.MissingResourceException: Can't find bundle for base name com.sap.tc.webdynpro.tutorials.quiz.resources.Questions, locale en_US
         at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:839)
         at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:808)
         at java.util.ResourceBundle.getBundle(ResourceBundle.java:702)
         at com.sap.tc.webdynpro.serverimpl.core.localization.AbstractResourceHandler.initResourceBundle(AbstractResourceHandler.java:485)
         at com.sap.tc.webdynpro.serverimpl.core.localization.AbstractResourceHandler.loadResourceBundle(AbstractResourceHandler.java:162)
         at com.sap.tc.webdynpro.tutorials.quiz.QuizComp.wdDoInit(QuizComp.java:108)
         at com.sap.tc.webdynpro.tutorials.quiz.wdp.InternalQuizComp.wdDoInit(InternalQuizComp.java:122)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:429)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:700)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:269)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:711)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:665)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:232)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         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:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         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:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Regards
    Kaushik Banerjee

    Hi,
    I think it is talking the default browser language as US and seraching for the properties file of that language.
    I think the sol for this prob is change the
    Question.properties -
    >Question_en.properties
    Thanks & Regards,
    Lokesh

  • 'Install App for SharePoint' There were errors when validating the App Package

    Hello,
    When testing with an app, I tried to add an
    app event receiver before learning that remote event receiver are not allowed with
    Sharepoint-hosted app. So I reseted the Handle app installed and
    Web Project properties of my project and tried to redeploy and this error occurred :
    'Install App for SharePoint' There were errors when validating the App Package
    Something other than the project's properties have been modified but I don't know what.

    I think the best way to figure real reason out is to look at ULS logs.
    This is example, what I had:
    Unexpected        App Packaging: CreatePackage: Unexpected exception: There were errors when validating the App package: There were errors when validating the App Package. Other warnings / errors associated with this
    exception:  The current version of SharePoint is less than the SharePointMinVersion specified in the app manifest. CurrentVersion='15.0.4693.1000', SharePointMinVersion='16.0.0.0'.

  • Getting Error when deploying the WD application

    hi all,
    Anybody have idea about , what is the reason for the following error. Till now it is working properly. suddenly it is giving the following error when deploying the application.
    2.4.2007 13:17:36 /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [004]Deployment aborted
    Settings
    SDM host : eimkopdvs4
    SDM port : 50118
    URL to deploy : file:/C:/WINDOWS/TEMP/temp2898TestWebDynproProj.ear
    Result
    => deployment aborted : file:/C:/WINDOWS/TEMP/temp2898TestWebDynproProj.ear
    Aborted: development component 'TestWebDynproProj'/'local'/'LOKAL'/'0.2007.04.02.13.17.28'/'0':
    Caught exception while checking the login credentials for SAP J2EE Engine. Check whether the SAP J2EE Engine is up and running.
    com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot connect to Host: [EIMKOPDVS4] with user name: [Administrator]                     Check your login information.                     Exception is: com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception during getInitialContext operation. No server is running. [Root exception is com.sap.engine.services.security.exceptions.BaseLoginException: Exception in creating new RemoteLoginContext instance.]
         at com.sap.engine.services.jndi.InitialContextFactoryImpl.handleConnectionPropblem(InitialContextFactoryImpl.java:494)
         at com.sap.engine.services.jndi.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:363)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
         at javax.naming.InitialContext.init(InitialContext.java:219)
         at javax.naming.InitialContext.<init>(InitialContext.java:195)
         at com.sap.engine.deploy.manager.DeployManagerImpl.checkCredentials(DeployManagerImpl.java:2983)
         at com.sap.sdm.serverext.servertype.inqmy.extern.DeployManagerAuthMethodInvoker.invokeCheckCredentialsInternal(DeployManagerAuthMethodInvoker.java:51)
         at com.sap.sdm.serverext.servertype.inqmy.extern.ExternalMethodInvoker.invokeCheckCredentials(ExternalMethodInvoker.java:45)
         at com.sap.sdm.serverext.servertype.inqmy.extern.ExternalMethodInvoker.invokeCheckCredentials(ExternalMethodInvoker.java:32)
         at com.sap.sdm.serverext.servertype.inqmy.extern.EngineOnlineDeployerImpl.checkLoginCredentials(EngineOnlineDeployerImpl.java:173)
         at com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performDeployment(EngineApplOnlineDeployerImpl.java:167)
         at com.sap.sdm.serverext.servertype.inqmy.extern.EngineDeployerImpl.deploy(EngineDeployerImpl.java:96)
         at com.sap.sdm.serverext.servertype.inqmy.EngineProcessor.executeAction(EngineProcessor.java:224)
         at com.sap.sdm.app.proc.deployment.impl.PhysicalDeploymentActionExecutor.execute(PhysicalDeploymentActionExecutor.java:60)
         at com.sap.sdm.app.proc.deployment.impl.DeploymentActionImpl.execute(DeploymentActionImpl.java:186)
         at com.sap.sdm.app.proc.deployment.controllers.internal.impl.DeploymentExecutorImpl.execute(DeploymentExecutorImpl.java:48)
         at com.sap.sdm.app.proc.deployment.states.eventhandler.ExecuteDeploymentHandler.executeAction(ExecuteDeploymentHandler.java:83)
         at com.sap.sdm.app.proc.deployment.states.eventhandler.ExecuteDeploymentHandler.handleEvent(ExecuteDeploymentHandler.java:60)
         at com.sap.sdm.app.proc.deployment.states.StateBeforeNextDeployment.processEvent(StateBeforeNextDeployment.java:127)
         at com.sap.sdm.app.proc.deployment.states.InstContext.processEventServerSide(InstContext.java:73)
         at com.sap.sdm.app.proc.deployment.states.InstContext.processEvent(InstContext.java:59)
         at com.sap.sdm.app.sequential.deployment.impl.DeployerImpl.doPhysicalDeployment(DeployerImpl.java:120)
         at com.sap.sdm.app.sequential.deployment.impl.DeployerImpl.deploy(DeployerImpl.java:89)
         at com.sap.sdm.apiimpl.local.DeployProcessorImpl.deploy(DeployProcessorImpl.java:74)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.sdm.is.cs.remoteproxy.server.impl.RemoteProxyServerImpl.requestRemoteCall(RemoteProxyServerImpl.java:127)
         at com.sap.sdm.is.cs.remoteproxy.server.impl.RemoteProxyServerImpl.process(RemoteProxyServerImpl.java:38)
         at com.sap.sdm.apiimpl.remote.server.ApiClientRoleCmdProcessor.process(ApiClientRoleCmdProcessor.java:84)
         at com.sap.sdm.is.cs.session.server.SessionCmdProcessor.process(SessionCmdProcessor.java:67)
         at com.sap.sdm.is.cs.cmd.server.CmdServer.execCommand(CmdServer.java:76)
         at com.sap.sdm.client_server.launch.ServerLauncher$ConnectionHandlerImpl.handle(ServerLauncher.java:286)
         at com.sap.sdm.is.cs.ncserver.NetCommServer.serve(NetCommServer.java:43)
         at com.sap.sdm.is.cs.ncwrapper.impl.ServiceWrapper.serve(ServiceWrapper.java:39)
         at com.sap.bc.cts.tp.net.Worker.run(Worker.java:50)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sap.engine.services.security.exceptions.BaseLoginException: Exception in creating new RemoteLoginContext instance.
         at com.sap.engine.services.security.remote.login.RemoteLoginContextExt.<init>(RemoteLoginContextExt.java:34)
         at com.sap.engine.services.jndi.implclient.LoginHelper.clientSideLogin(LoginHelper.java:81)
         at com.sap.engine.services.jndi.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:355)
         ... 37 more
    Caused by: java.io.EOFException: End of stream is reached unexpectedly during input from Socket[addr=/10.4.71.36,port=50104,localport=3057]
         at com.sap.engine.services.rmi_p4.Connection.run(Connection.java:420)
         ... 1 more
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.checkLoginCredentials.DMEXC)
    Deployment exception : The deployment of at least one item aborted

    Hi,
    Check if the server is running. If so, try restarting it and then retry.

  • OWB Error while deploying the mapping  Io exception: The Network Adapter co

    Hi,
    We are using OWB 10.2 in our production environment.Actually we are using OWB only for development.
    After deploying each mapping we will create scheduler job for execution of these mappings.
    Recently our staging DBs port has been changed to 1522 from 1521 and i have gone throgh the below steps.
    1) Changed the port in tnsnames.ora file.
    2) In Start Control Centre Servioce ,i have changed the port to 1522 for owbownr user and started the service successfully.
    3) i have run the script UpdateLocation.sql from the OWBOWNR schema and updated the port number.
    4) I tried to run the UpdateControlCenter.sql in owbownr schema and staging schema also,but i am getting an error like below.
    SQL> @UpdateControlCenter.sql
    This sql script sets the host:port:service parameters for a control center
    in the OWB Client Repository.
    The connection type must be host:port:service and cannot be changed
    using this script.
    Enter Control Center Name: DEFAULT_CONTROL_CENTER
    Host: 10.109.65.62
    Port: 1522
    Service Name: DWHOWNR
    Update location properties for DEFAULT_CONTROL_CENTER
    Location Type =
    Control Center DEFAULT_CONTROL_CENTER Found
    Connection Type SQL*NET Connection cannot be updated
    PL/SQL procedure successfully completed.
    5) When i am running the service_doctor.sql on owbownr schema i am getting incorrect port number like below
    SQL> @service_doctor.sql
    There are errors in one or more PL/SQL packages and functions
    Platform properties have been loaded correctly
    Platform location has been seeded correctly
    NLS messages have been loaded correctly
    The platform service is available
    There is a problem accessing the service startup script from the database
    server
    Here is the detailed error message which contains the name of the start
    script file:-
    Service startup file 'null/owb/bin/unix/run_service.sh' is not
    accessible from the database server on instance number 1
    Please verify that the disk containing the file is visible to the
    database server
    Please verify that the database server account has access rights on the
    file
    There is a problem with the repository connection information used to
    start the service
    Here is the detailed error message which contains the connection
    information passed to the service:-
    Cannot connect: user=DWHOWNR host=10.109.65.62 port=1521
    service-name=DWHSTG
    Please verify that this information is accurate
    If this information is correct, then please use the
    'set_repository_password.sql' script to reset the stored password
    PL/SQL procedure successfully completed.
    6) After login to OWB ,i have checked the Location,OWB Repository Location And Control center In OWB connection Explorer,
    and all the connections are successful.
    After this i took Control Centre from Tools and i tried to deploy one mapping.
    And i got some error like below.
    Name
    Type
    Status
    Log
    COPY_OF_ICDMAPFCTAWB
    Description : Runtime User : ICGSTG Started : 2011-10-24 19:32:19.0
    Name
    Action
    Status
    Log
    None
    Error
    Io exception: The Network Adapter could not establish the connection
    None
    Error
    Io exception: The Network Adapter could not establish the connection
    None
    RECOVERY
    RPE-01008: Recovery of this request is in progress.
    Job Summary
    Updated : 2011-10-24 19:32:19.0 Job Final Status : Completed with errors Job Processed Count : 0 Job Error Count : 0 Job Warning Count : 0
    I think the issue is due to the wrong port number .
    Can any one help me to solve this issue??
    Edited by: 892899 on Oct 24, 2011 6:01 AM

    Hi Allan,
    Thanks for your quick reply.
    I have checked in OWB\Locations\Database\Oracle\Location\DB Connectors and also in Control Center\Location\Connectors,seems like there is no connectors created.
    Do you have any other suggestions?
    Also i analyzed the UpdateControlCenter.sql in that
    select value into v_connectiontype from cmpstringpropertyvalue_v where logicalname = 'CMPLocation_ConnectionType' and propertyowner = v_elementid;
    the qry returns 'SQL*NET'.
    Any workaround for these???
    Please reply.

  • Error while deploying the SC on server.....

    Hi,
    We are trying to deploy a Software Component that we created and when we try to deploy it on our server, it gives us the following the error :
    Application error occurred during request processing.
      Details:   Error [com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingException: Error while executing the compilation process: [E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:26: package jcifs.smb does not exist
    import jcifs.smb.*;
    ^
    E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:54: cannot resolve symbol
    symbol  : class NtlmPasswordAuthentication
    location: class jsp_index1158170412610
              NtlmPasswordAuthentication pa = (NtlmPasswordAuthentication)session.getAttribute("NtlmHttpAuth");
                    ^
    E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:54: cannot resolve symbol
    symbol  : class NtlmPasswordAuthentication
    location: class jsp_index1158170412610
              NtlmPasswordAuthentication pa = (NtlmPasswordAuthentication)session.getAttribute("NtlmHttpAuth");
                                                     ^
    3 errors
    Exception id: [000D60D52B8E006000000139000009BC00041D59901F101D]
      Exception:   com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingException: Error while executing the compilation process: [E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:26: package jcifs.smb does not exist
    import jcifs.smb.*;
    ^
    E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:54: cannot resolve symbol
    symbol  : class NtlmPasswordAuthentication
    location: class jsp_index1158170412610
              NtlmPasswordAuthentication pa = (NtlmPasswordAuthentication)session.getAttribute("NtlmHttpAuth");
                    ^
    E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:54: cannot resolve symbol
    symbol  : class NtlmPasswordAuthentication
    location: class jsp_index1158170412610
              NtlmPasswordAuthentication pa = (NtlmPasswordAuthentication)session.getAttribute("NtlmHttpAuth");
                                                     ^
    3 errors
         at com.sap.engine.services.servlets_jsp.server.jsp.JavaCompiler.compileExternal(JavaCompiler.java:142)
         at com.sap.engine.services.servlets_jsp.server.jsp.JavaCompiler.compile(JavaCompiler.java:238)
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPParser.generateJavaFile(JSPParser.java:367)
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:106)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.getClassName(JSPServlet.java:238)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.compileAndGetClassName(JSPServlet.java:429)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:169)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:373)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         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:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Can anybody suggest any solution please ??

    Hi,
    We are trying to deploy a Software Component that we created and when we try to deploy it on our server, it gives us the following the error :
    Application error occurred during request processing.
      Details:   Error [com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingException: Error while executing the compilation process: [E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:26: package jcifs.smb does not exist
    import jcifs.smb.*;
    ^
    E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:54: cannot resolve symbol
    symbol  : class NtlmPasswordAuthentication
    location: class jsp_index1158170412610
              NtlmPasswordAuthentication pa = (NtlmPasswordAuthentication)session.getAttribute("NtlmHttpAuth");
                    ^
    E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:54: cannot resolve symbol
    symbol  : class NtlmPasswordAuthentication
    location: class jsp_index1158170412610
              NtlmPasswordAuthentication pa = (NtlmPasswordAuthentication)session.getAttribute("NtlmHttpAuth");
                                                     ^
    3 errors
    Exception id: [000D60D52B8E006000000139000009BC00041D59901F101D]
      Exception:   com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingException: Error while executing the compilation process: [E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:26: package jcifs.smb does not exist
    import jcifs.smb.*;
    ^
    E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:54: cannot resolve symbol
    symbol  : class NtlmPasswordAuthentication
    location: class jsp_index1158170412610
              NtlmPasswordAuthentication pa = (NtlmPasswordAuthentication)session.getAttribute("NtlmHttpAuth");
                    ^
    E:/usr/sap/NWX/DVEBMGS00/j2ee/cluster/server0/apps/pcbp.com/mainapp01/servlet_jsp/newpcbp/work/jsp_index1158170412610.java:54: cannot resolve symbol
    symbol  : class NtlmPasswordAuthentication
    location: class jsp_index1158170412610
              NtlmPasswordAuthentication pa = (NtlmPasswordAuthentication)session.getAttribute("NtlmHttpAuth");
                                                     ^
    3 errors
         at com.sap.engine.services.servlets_jsp.server.jsp.JavaCompiler.compileExternal(JavaCompiler.java:142)
         at com.sap.engine.services.servlets_jsp.server.jsp.JavaCompiler.compile(JavaCompiler.java:238)
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPParser.generateJavaFile(JSPParser.java:367)
         at com.sap.engine.services.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:106)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.getClassName(JSPServlet.java:238)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.compileAndGetClassName(JSPServlet.java:429)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:169)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:373)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         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:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Can anybody suggest any solution please ??

  • Getting error while deploying the ejb in jboss3.2.3

    i m getting following error msg while deploying my ejb in jboss-3.2.3. i m deploying the same code available at
    http://www.ftponline.com/javapro/2003_01/online/j2ee_bkurniawan_01_09_03/
    04:30:48,955 INFO [MainDeployer] Starting deployment of package: file:/home/ami
    tt/jboss-3.2.3/server/default/deploy/StringProcessor.jar
    04:30:48,972 ERROR [MainDeployer] could not create deployment: file:/home/amitt/
    jboss-3.2.3/server/default/deploy/StringProcessor.jar
    org.jboss.deployment.DeploymentException: ejb-jar.xml must define a valid DOCTYP
    E!
    at org.jboss.metadata.ApplicationMetaData.importEjbJarXml(ApplicationMet
    aData.java:206)
    at org.jboss.metadata.XmlFileLoader.load(XmlFileLoader.java:141)
    at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:436)
    at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
    at sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBea nDispatcher.java:284)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
    at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
    at $Proxy6.deploy(Unknown Source)
    at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymen tScanner.java:302)
    at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentS canner.java:476)
    at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread. doScan(AbstractDeploymentScanner.java:201)
    at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread. loop(AbstractDeploymentScanner.java:212)
    at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread. run(AbstractDeploymentScanner.java:191)
    Please reply me bak the required solution.......

    looks like your xml files are not done.

  • Error in deployment of ESS package

    Hi,
    We are importing the business package for ESS.
    During the import of PCUI_GP16.sca; ESS16.sca components(version
    selected based on the SAP note 761266) through SDM we are getting the
    error,due to which deployment fails. Error log file is pasted below.
    Infrasture details are as below:
    Backend: SAP E.C.C. 5.0 SP16 640 kernel based
    Portal : EP7.0 700 kernel based
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[/usr/sap/BMD/DVEBMGS01/SDM/program/log/sdmlog20071017.log]/>
    <!PATTERN[sdmlog20071017.log]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%24d %s: %m)]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    Oct 17, 2007 3:35:10 PM  Info:
    Oct 17, 2007 3:35:10 PM  Info: ===============================================
    Oct 17, 2007 3:35:10 PM  Info: =   Starting to execute command 'remotegui'   =
    Oct 17, 2007 3:35:10 PM  Info: ===============================================
    Oct 17, 2007 3:35:18 PM  Info: SDM started successfully.
    Oct 17, 2007 3:38:46 PM  Info:
    Oct 17, 2007 3:38:46 PM  Info: ============================================
    Oct 17, 2007 3:38:46 PM  Info: =   Starting to execute command 'server'   =
    Oct 17, 2007 3:38:46 PM  Info: ============================================
    Oct 17, 2007 3:38:46 PM  Info: Starting SDM - Software Deployment Manager...
    Oct 17, 2007 3:38:47 PM  Info: tc/SL/SDM/SDM/sap.com/SAP AG/7.0012.20070328121310.0000
    Oct 17, 2007 3:38:52 PM  Info: SDM operation mode successfully set to: Integrated
    Oct 17, 2007 3:38:53 PM  Info: JStartupFramework is active
    Oct 17, 2007 3:38:53 PM  Info: Operation mode of SDM in JStartupFramework is "Integrated".
    Oct 17, 2007 3:38:53 PM  Info: Check if Server is running already.
    Oct 17, 2007 3:38:53 PM  Info: OK server is not running. Enable SDM Process in JStartupFramework.
    Oct 17, 2007 3:38:53 PM  Info: enabling SDM Process with JStartupFramework
    Oct 17, 2007 3:38:53 PM  Info: enabled SDM Process with JStartupFramework
    Oct 17, 2007 3:38:53 PM  Info: Successfully enabled SDM Process in JStartupFramework.
    Oct 17, 2007 3:38:57 PM  Info:
    Oct 17, 2007 3:38:57 PM  Info: ============================================
    Oct 17, 2007 3:38:57 PM  Info: =   Starting to execute command 'server'   =
    Oct 17, 2007 3:38:57 PM  Info: ============================================
    Oct 17, 2007 3:38:57 PM  Info: Starting SDM - Software Deployment Manager...
    Oct 17, 2007 3:38:57 PM  Info: tc/SL/SDM/SDM/sap.com/SAP AG/7.0012.20070328121310.0000
    Oct 17, 2007 3:39:01 PM  Info: SDM operation mode successfully set to: Integrated
    Oct 17, 2007 3:39:02 PM  Info: JStartupFramework is requesting to start the SDM Server.
    Oct 17, 2007 3:39:02 PM  Info: Start the SDM Server integrated in the JStartupFramework.
    Oct 17, 2007 3:39:02 PM  Info: Initializing Network Manager (50117)
    Oct 17, 2007 3:39:02 PM  Info: Starting SDM Server listening on port 50118
    Oct 17, 2007 3:39:02 PM  Info: SDM started successfully.
    Oct 17, 2007 3:39:03 PM  Info: Opened client connection to loopback (IP address loopback/127.0.0.1, remote port 50633)
    Oct 17, 2007 3:39:03 PM  Info: SDM started successfully.
    Oct 17, 2007 3:39:03 PM  Info: Close client connection to loopback/127.0.0.1, remote port 50633
    Oct 17, 2007 3:43:00 PM  Info:
    Oct 17, 2007 3:43:00 PM  Info: ===============================================
    Oct 17, 2007 3:43:00 PM  Info: =   Starting to execute command 'remotegui'   =
    Oct 17, 2007 3:43:00 PM  Info: ===============================================
    Oct 17, 2007 3:43:03 PM  Info: SDM started successfully.
    Oct 17, 2007 3:43:29 PM  Info: Opened client connection to az18u188 (IP address az18u188/10.196.160.28, remote port 50805)
    Oct 17, 2007 3:43:30 PM  Info: Request for Logon as admin accepted
    Oct 17, 2007 3:44:56 PM  Info: Loading archive '/usr/sap/trans/EPS/in/ESS16_0-10002965.SCA'
    Oct 17, 2007 3:45:25 PM  Info: Loading archive '/usr/sap/trans/EPS/in/ESS16P_1-10002965.SCA'
    Oct 17, 2007 3:46:05 PM  Info: Actions per selected component:
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/de/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212790'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/no/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212889'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/cn/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212751'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/es/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212845'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tra/tre'/'sap.com'/'MAIN_xss04VAL_C'/'1212869'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/wtcor'/'sap.com'/'MAIN_xss04VAL_C'/'1212723'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/no/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212788'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/jp/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212760'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/rem'/'sap.com'/'MAIN_xss04VAL_C'/'1212734'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ph/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212849'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tw/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212878'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/th/pid'/'sap.com'/'MAIN_xss04VAL_C'/'1212837'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/fi/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212851'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ch/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212830'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/kr/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212873'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/org'/'sap.com'/'MAIN_xss04VAL_C'/'1212719'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/jp/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212757'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ph/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212907'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/fi/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212854'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ph/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212850'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ph/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212906'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tw/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212748'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/au'/'sap.com'/'MAIN_xss04VAL_C'/'1212807'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/au/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212809'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/nz/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212823'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/de/dcomp'/'sap.com'/'MAIN_xss04VAL_C'/'1212791'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/es/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212843'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/se/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212772'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/jp/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212759'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/th/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212902'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/za/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212893'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/se/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212773'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/no/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212789'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/be/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212839'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/za/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212800'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/br/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212766'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/dk/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212826'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/au/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212895'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/kr/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212786'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/no/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212890'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/fr/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212754'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/cn/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212753'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ve/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212816'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ar/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212740'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/pt/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212745'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ar/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212742'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/es/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212844'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/id/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212819'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ie/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212875'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/id/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212821'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/se/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212886'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/us'/'sap.com'/'MAIN_xss04VAL_C'/'1212767'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/za/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212801'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/sg'/'sap.com'/'MAIN_xss04VAL_C'/'1212802'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ch/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212829'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/skl'/'sap.com'/'MAIN_xss04VAL_C'/'1212720'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/cat'/'sap.com'/'MAIN_xss04VAL_C'/'1212718'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/mx/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212896'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/pt/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212747'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/br/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212765'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/fr/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212755'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tra'/'sap.com'/'MAIN_xss04VAL_C'/'1212716'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/mx/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212813'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/pt/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212746'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ar/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212874'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/nl/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212882'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/at/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212887'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/us/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212768'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.16.0.20070410060436''/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/au/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212808'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ca/empeq'/'sap.com'/'MAIN_xss04VAL_C'/'1212778'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/th/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212903'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/sg/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212803'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/hk/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212796'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/dk/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212828'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/th/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212838'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ca/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212779'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/au/tax'/'sap.com'/'MAIN_xss04VAL_C'/'1212811'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/nz/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212898'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/nz/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212825'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/cn/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212752'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/it/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212846'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/dk/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212899'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/hk/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212891'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/sg/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212894'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ve/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212817'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/dk/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212827'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/my/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212835'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ar/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212741'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/gb/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212783'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/fi/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212853'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/it/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212905'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/my/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212901'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/rep'/'sap.com'/'MAIN_xss04VAL_C'/'1212714'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/gb/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212782'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/th/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212836'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/gb/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212784'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/be/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212842'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tra/trp'/'sap.com'/'MAIN_xss04VAL_C'/'1212871'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/wiw'/'sap.com'/'MAIN_xss04VAL_C'/'1212722'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/fr/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212756'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/nz/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212824'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/br/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212764'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ca/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212888'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/in/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212857'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/za/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212892'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/id/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212897'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/sg/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212804'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/nl/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212762'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/xx'/'sap.com'/'MAIN_xss04VAL_C'/'1212795'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/id/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212820'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/nl/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212761'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/fr/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212881'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/at/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212776'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/kr/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212787'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tim'/'sap.com'/'MAIN_xss04VAL_C'/'1212735'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/jp/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212758'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tw/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212879'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ca/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212777'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/de/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212793'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/sg/perid'/'sap.com'/'MAIN_xss04VAL_C'/'1212806'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ve/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212818'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/au/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212810'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/at/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212774'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/br/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212883'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/com'/'sap.com'/'MAIN_xss04VAL_C'/'1212736'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/per'/'sap.com'/'MAIN_xss04VAL_C'/'1212721'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/de'/'sap.com'/'MAIN_xss04VAL_C'/'1212737'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/us/w4'/'sap.com'/'MAIN_xss04VAL_C'/'1212771'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/in/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212858'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/cn/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212880'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/my/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212834'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/grt/srv'/'sap.com'/'MAIN_xss04VAL_C'/'1212738'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/sg/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212805'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tra/trr'/'sap.com'/'MAIN_xss04VAL_C'/'1212715'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ca/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212780'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/us/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212769'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/hk/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212799'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/id/pid'/'sap.com'/'MAIN_xss04VAL_C'/'1212822'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/it/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212848'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/in/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212855'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ie/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212876'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/at/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212775'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/cod'/'sap.com'/'MAIN_xss04VAL_C'/'1212717'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/de/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212792'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tra/trp/trt'/'sap.com'/'MAIN_xss04VAL_C'/'1212872'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/pt/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212877'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/lea'/'sap.com'/'MAIN_xss04VAL_C'/'1212727'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/gb/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212781'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/my/pid'/'sap.com'/'MAIN_xss04VAL_C'/'1212833'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/se/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212885'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ch/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212900'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/us/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212770'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/de/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212794'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/it/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212847'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ie/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212744'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tw/pid'/'sap.com'/'MAIN_xss04VAL_C'/'1212750'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/hk/perid'/'sap.com'/'MAIN_xss04VAL_C'/'1212798'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/in/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212856'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/be/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212841'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/mx/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212812'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/fi/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212852'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/nl/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212763'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ve/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212815'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/kr/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212785'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/be/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212840'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/mx/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212814'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tra/tre/trs'/'sap.com'/'MAIN_xss04VAL_C'/'1212908'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tw/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212749'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/hk/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212797'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/au/rep'/'sap.com'/'MAIN_xss04VAL_C'/'1212739'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ch/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212831'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/tra/tri'/'sap.com'/'MAIN_xss04VAL_C'/'1212870'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/my/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212832'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ie/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212743'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/ben'/'sap.com'/'MAIN_xss04VAL_C'/'1212713'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/us/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212884'/'0' will be deployed.
    Oct 17, 2007 3:46:05 PM  Info: Initial deployment: Selected development component 'ess/es/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212904'/'0' will be deployed.
    Oct 17, 2007 3:46:26 PM  Info: Saved current Engine state.
    Oct 17, 2007 3:46:29 PM  Info: Starting: Initial deployment: Selected development component 'ess/ben'/'sap.com'/'MAIN_xss04VAL_C'/'1212713'/'0' will be deployed.
    Oct 17, 2007 3:46:29 PM  Info: SDA to be deployed: /usr/sap/BMD/DVEBMGS01/SDM/root/origin/sap.com/ess/ben/MAIN_xss04VAL_C/0/1212713/ess~ben.sda
    Oct 17, 2007 3:46:29 PM  Info: Software type of SDA: J2EE
    Oct 17, 2007 3:46:30 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:48:00 PM  Info: Begin of log messages of the target system:
    07/10/17 15:46:31 -  ***********************************************************
    07/10/17 15:46:45 -  Start updating EAR file...
    07/10/17 15:46:45 -  start-up mode is lazy
    07/10/17 15:46:45 -  EAR file updated successfully for 483ms.
    07/10/17 15:46:45 -  Start deploying ...
    07/10/17 15:47:23 -  EAR file uploaded to server for 34995ms.
    07/10/17 15:47:55 -  Successfully deployed. Deployment took 31943ms.
    07/10/17 15:47:55 -    Application : sap.com/ess~ben
    07/10/17 15:47:55 -   
    07/10/17 15:47:55 -    sap.com/ess~ben  - WEBDYNPRO
    07/10/17 15:47:55 -  ***********************************************************
    Oct 17, 2007 3:48:00 PM  Info: End of log messages of the target system.
    Oct 17, 2007 3:48:00 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:48:00 PM  Info: Finished successfully: development component 'ess/ben'/'sap.com'/'MAIN_xss04VAL_C'/'1212713'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.16.0.20070410060436''/'0'
    Oct 17, 2007 3:48:00 PM  Info: Starting to save the repository
    Oct 17, 2007 3:48:02 PM  Info: Finished saving the repository
    Oct 17, 2007 3:48:09 PM  Info: Starting: Initial deployment: Selected development component 'ess/cat'/'sap.com'/'MAIN_xss04VAL_C'/'1212718'/'0' will be deployed.
    Oct 17, 2007 3:48:09 PM  Info: SDA to be deployed: /usr/sap/BMD/DVEBMGS01/SDM/root/origin/sap.com/ess/cat/MAIN_xss04VAL_C/0/1212718/ess~cat.sda
    Oct 17, 2007 3:48:09 PM  Info: Software type of SDA: J2EE
    Oct 17, 2007 3:48:09 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:48:38 PM  Info: Begin of log messages of the target system:
    07/10/17 15:48:09 -  ***********************************************************
    07/10/17 15:48:11 -  Start updating EAR file...
    07/10/17 15:48:11 -  start-up mode is lazy
    07/10/17 15:48:11 -  EAR file updated successfully for 287ms.
    07/10/17 15:48:11 -  Start deploying ...
    07/10/17 15:48:26 -  EAR file uploaded to server for 11797ms.
    07/10/17 15:48:33 -  Successfully deployed. Deployment took 6856ms.
    07/10/17 15:48:33 -    Application : sap.com/ess~cat
    07/10/17 15:48:33 -   
    07/10/17 15:48:33 -    sap.com/ess~cat  - WEBDYNPRO
    07/10/17 15:48:33 -  ***********************************************************
    Oct 17, 2007 3:48:38 PM  Info: End of log messages of the target system.
    Oct 17, 2007 3:48:38 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:48:38 PM  Info: Finished successfully: development component 'ess/cat'/'sap.com'/'MAIN_xss04VAL_C'/'1212718'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.16.0.20070410060436''/'0'
    Oct 17, 2007 3:48:38 PM  Info: Starting to save the repository
    Oct 17, 2007 3:48:39 PM  Info: Finished saving the repository
    Oct 17, 2007 3:48:47 PM  Info: Starting: Initial deployment: Selected development component 'ess/cod'/'sap.com'/'MAIN_xss04VAL_C'/'1212717'/'0' will be deployed.
    Oct 17, 2007 3:48:47 PM  Info: SDA to be deployed: /usr/sap/BMD/DVEBMGS01/SDM/root/origin/sap.com/ess/cod/MAIN_xss04VAL_C/0/1212717/ess~cod.sda
    Oct 17, 2007 3:48:47 PM  Info: Software type of SDA: J2EE
    Oct 17, 2007 3:48:47 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:49:02 PM  Info: Begin of log messages of the target system:
    07/10/17 15:48:47 -  ***********************************************************
    07/10/17 15:48:49 -  Start updating EAR file...
    07/10/17 15:48:49 -  start-up mode is lazy
    07/10/17 15:48:49 -  EAR file updated successfully for 159ms.
    07/10/17 15:48:49 -  Start deploying ...
    07/10/17 15:48:56 -  EAR file uploaded to server for 5159ms.
    07/10/17 15:49:00 -  Successfully deployed. Deployment took 3408ms.
    07/10/17 15:49:00 -    Application : sap.com/ess~cod
    07/10/17 15:49:00 -   
    07/10/17 15:49:00 -    sap.com/ess~cod  - WEBDYNPRO
    07/10/17 15:49:00 -  ***********************************************************
    Oct 17, 2007 3:49:02 PM  Info: End of log messages of the target system.
    Oct 17, 2007 3:49:02 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:49:02 PM  Info: Finished successfully: development component 'ess/cod'/'sap.com'/'MAIN_xss04VAL_C'/'1212717'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.16.0.20070410060436''/'0'
    Oct 17, 2007 3:49:02 PM  Info: Starting to save the repository
    Oct 17, 2007 3:49:03 PM  Info: Finished saving the repository
    Oct 17, 2007 3:49:10 PM  Info: Starting: Initial deployment: Selected development component 'ess/fi/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212852'/'0' will be deployed.
    Oct 17, 2007 3:49:10 PM  Info: SDA to be deployed: /usr/sap/BMD/DVEBMGS01/SDM/root/origin/sap.com/ess/fi/addr/MAIN_xss04VAL_C/0/1212852/essfiaddr.sda
    Oct 17, 2007 3:49:10 PM  Info: Software type of SDA: J2EE
    Oct 17, 2007 3:49:10 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:49:32 PM  Info: Begin of log messages of the target system:
    07/10/17 15:49:10 -  ***********************************************************
    07/10/17 15:49:12 -  Start updating EAR file...
    07/10/17 15:49:12 -  start-up mode is lazy
    07/10/17 15:49:13 -  EAR file updated successfully for 101ms.
    07/10/17 15:49:13 -  Start deploying ...
    07/10/17 15:49:19 -  EAR file uploaded to server for 3943ms.
    07/10/17 15:49:23 -  Successfully deployed. Deployment took 4561ms.
    07/10/17 15:49:23 -    Application : sap.com/essfiaddr
    07/10/17 15:49:23 -   
    07/10/17 15:49:23 -    sap.com/essfiaddr  - WEBDYNPRO
    07/10/17 15:49:23 -  ***********************************************************
    Oct 17, 2007 3:49:32 PM  Info: End of log messages of the target system.
    Oct 17, 2007 3:49:32 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:49:32 PM  Warning: Finished with warnings: development component 'ess/fi/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212852'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.16.0.20070410060436''/'0':
    Caught exception during application startup from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Error occurred while starting application sap.com/ess/fi/addr and wait.
    Reason: Clusterwide exception: server ID 19733050:com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to prepare application ''sap.com/essfiaddr'' for startup. Reason=
    Clusterwide exception: Failed to start application ''sap.com/essfiaddr'': The referenced application ''sap.com/ess~per'' can''t be started. Check the causing exception for details. Hint: Is the referenced application deployed correctly on the server?
         at com.sap.engine.services.webdynpro.WebDynproContainer.prepareStart(WebDynproContainer.java:1519)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:171)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:301)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:342)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:126)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:245)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4707)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4612)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4585)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1163)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:312)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         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(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Oct 17, 2007 3:49:33 PM  Info: Starting to save the repository
    Oct 17, 2007 3:49:34 PM  Info: Finished saving the repository
    Oct 17, 2007 3:49:41 PM  Info: Starting: Initial deployment: Selected development component 'ess/fi/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212853'/'0' will be deployed.
    Oct 17, 2007 3:49:41 PM  Info: SDA to be deployed: /usr/sap/BMD/DVEBMGS01/SDM/root/origin/sap.com/ess/fi/bank/MAIN_xss04VAL_C/0/1212853/essfibank.sda
    Oct 17, 2007 3:49:41 PM  Info: Software type of SDA: J2EE
    Oct 17, 2007 3:49:41 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:50:00 PM  Info: Begin of log messages of the target system:
    07/10/17 15:49:41 -  ***********************************************************
    07/10/17 15:49:44 -  Start updating EAR file...
    07/10/17 15:49:44 -  start-up mode is lazy
    07/10/17 15:49:44 -  EAR file updated successfully for 92ms.
    07/10/17 15:49:44 -  Start deploying ...
    07/10/17 15:49:51 -  EAR file uploaded to server for 4462ms.
    07/10/17 15:49:55 -  Successfully deployed. Deployment took 4569ms.
    07/10/17 15:49:55 -    Application : sap.com/essfibank
    07/10/17 15:49:55 -   
    07/10/17 15:49:55 -    sap.com/essfibank  - WEBDYNPRO
    07/10/17 15:49:55 -  ***********************************************************
    Oct 17, 2007 3:50:00 PM  Info: End of log messages of the target system.
    Oct 17, 2007 3:50:00 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:50:00 PM  Warning: Finished with warnings: development component 'ess/fi/bank'/'sap.com'/'MAIN_xss04VAL_C'/'1212853'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.16.0.20070410060436''/'0':
    Caught exception during application startup from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Error occurred while starting application sap.com/ess/fi/bank and wait.
    Reason: Clusterwide exception: server ID 19733050:com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to prepare application ''sap.com/essfibank'' for startup. Reason=
    Clusterwide exception: Failed to start application ''sap.com/essfibank'': The referenced application ''sap.com/ess~per'' can''t be started. Check the causing exception for details. Hint: Is the referenced application deployed correctly on the server?
         at com.sap.engine.services.webdynpro.WebDynproContainer.prepareStart(WebDynproContainer.java:1519)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:171)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:301)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:342)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:126)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:245)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4707)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4612)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4585)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1163)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:312)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         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(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Oct 17, 2007 3:50:00 PM  Info: Starting to save the repository
    Oct 17, 2007 3:50:02 PM  Info: Finished saving the repository
    Oct 17, 2007 3:50:10 PM  Info: Starting: Initial deployment: Selected development component 'ess/fi/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212851'/'0' will be deployed.
    Oct 17, 2007 3:50:10 PM  Info: SDA to be deployed: /usr/sap/BMD/DVEBMGS01/SDM/root/origin/sap.com/ess/fi/fam/MAIN_xss04VAL_C/0/1212851/essfifam.sda
    Oct 17, 2007 3:50:10 PM  Info: Software type of SDA: J2EE
    Oct 17, 2007 3:50:10 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:50:29 PM  Info: Begin of log messages of the target system:
    07/10/17 15:50:10 -  ***********************************************************
    07/10/17 15:50:12 -  Start updating EAR file...
    07/10/17 15:50:12 -  start-up mode is lazy
    07/10/17 15:50:12 -  EAR file updated successfully for 103ms.
    07/10/17 15:50:12 -  Start deploying ...
    07/10/17 15:50:19 -  EAR file uploaded to server for 4423ms.
    07/10/17 15:50:24 -  Successfully deployed. Deployment took 4678ms.
    07/10/17 15:50:24 -    Application : sap.com/essfifam
    07/10/17 15:50:24 -   
    07/10/17 15:50:24 -    sap.com/essfifam  - WEBDYNPRO
    07/10/17 15:50:24 -  ***********************************************************
    Oct 17, 2007 3:50:29 PM  Info: End of log messages of the target system.
    Oct 17, 2007 3:50:29 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:50:29 PM  Warning: Finished with warnings: development component 'ess/fi/fam'/'sap.com'/'MAIN_xss04VAL_C'/'1212851'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.16.0.20070410060436''/'0':
    Caught exception during application startup from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Error occurred while starting application sap.com/ess/fi/fam and wait.
    Reason: Clusterwide exception: server ID 19733050:com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to prepare application ''sap.com/essfifam'' for startup. Reason=
    Clusterwide exception: Failed to start application ''sap.com/essfifam'': The referenced application ''sap.com/ess~per'' can''t be started. Check the causing exception for details. Hint: Is the referenced application deployed correctly on the server?
         at com.sap.engine.services.webdynpro.WebDynproContainer.prepareStart(WebDynproContainer.java:1519)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:171)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:301)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:342)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:126)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:245)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4707)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4612)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4585)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1163)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:312)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         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(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Oct 17, 2007 3:50:29 PM  Info: Starting to save the repository
    Oct 17, 2007 3:50:30 PM  Info: Finished saving the repository
    Oct 17, 2007 3:50:39 PM  Info: Starting: Initial deployment: Selected development component 'ess/fi/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212854'/'0' will be deployed.
    Oct 17, 2007 3:50:39 PM  Info: SDA to be deployed: /usr/sap/BMD/DVEBMGS01/SDM/root/origin/sap.com/ess/fi/pdata/MAIN_xss04VAL_C/0/1212854/essfipdata.sda
    Oct 17, 2007 3:50:39 PM  Info: Software type of SDA: J2EE
    Oct 17, 2007 3:50:39 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:50:56 PM  Info: Begin of log messages of the target system:
    07/10/17 15:50:39 -  ***********************************************************
    07/10/17 15:50:41 -  Start updating EAR file...
    07/10/17 15:50:41 -  start-up mode is lazy
    07/10/17 15:50:41 -  EAR file updated successfully for 118ms.
    07/10/17 15:50:41 -  Start deploying ...
    07/10/17 15:50:47 -  EAR file uploaded to server for 3980ms.
    07/10/17 15:50:52 -  Successfully deployed. Deployment took 4287ms.
    07/10/17 15:50:52 -    Application : sap.com/essfipdata
    07/10/17 15:50:52 -   
    07/10/17 15:50:52 -    sap.com/essfipdata  - WEBDYNPRO
    07/10/17 15:50:52 -  ***********************************************************
    Oct 17, 2007 3:50:56 PM  Info: End of log messages of the target system.
    Oct 17, 2007 3:50:56 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:50:56 PM  Warning: Finished with warnings: development component 'ess/fi/pdata'/'sap.com'/'MAIN_xss04VAL_C'/'1212854'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.16.0.20070410060436''/'0':
    Caught exception during application startup from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Error occurred while starting application sap.com/ess/fi/pdata and wait.
    Reason: Clusterwide exception: server ID 19733050:com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to prepare application ''sap.com/essfipdata'' for startup. Reason=
    Clusterwide exception: Failed to start application ''sap.com/essfipdata'': The referenced application ''sap.com/ess~per'' can''t be started. Check the causing exception for details. Hint: Is the referenced application deployed correctly on the server?
         at com.sap.engine.services.webdynpro.WebDynproContainer.prepareStart(WebDynproContainer.java:1519)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:171)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:301)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:342)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:126)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:245)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4707)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4612)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4585)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1163)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:312)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         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(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Oct 17, 2007 3:50:56 PM  Info: Starting to save the repository
    Oct 17, 2007 3:50:57 PM  Info: Finished saving the repository
    Oct 17, 2007 3:51:05 PM  Info: Starting: Initial deployment: Selected development component 'ess/in/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212857'/'0' will be deployed.
    Oct 17, 2007 3:51:05 PM  Info: SDA to be deployed: /usr/sap/BMD/DVEBMGS01/SDM/root/origin/sap.com/ess/in/addr/MAIN_xss04VAL_C/0/1212857/essinaddr.sda
    Oct 17, 2007 3:51:05 PM  Info: Software type of SDA: J2EE
    Oct 17, 2007 3:51:05 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:51:29 PM  Info: Begin of log messages of the target system:
    07/10/17 15:51:05 -  ***********************************************************
    07/10/17 15:51:07 -  Start updating EAR file...
    07/10/17 15:51:07 -  start-up mode is lazy
    07/10/17 15:51:07 -  EAR file updated successfully for 92ms.
    07/10/17 15:51:07 -  Start deploying ...
    07/10/17 15:51:18 -  EAR file uploaded to server for 9799ms.
    07/10/17 15:51:23 -  Successfully deployed. Deployment took 4606ms.
    07/10/17 15:51:23 -    Application : sap.com/essinaddr
    07/10/17 15:51:23 -   
    07/10/17 15:51:23 -    sap.com/essinaddr  - WEBDYNPRO
    07/10/17 15:51:23 -  ***********************************************************
    Oct 17, 2007 3:51:29 PM  Info: End of log messages of the target system.
    Oct 17, 2007 3:51:29 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 17, 2007 3:51:29 PM  Warning: Finished with warnings: development component 'ess/in/addr'/'sap.com'/'MAIN_xss04VAL_C'/'1212857'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04VAL_C'/'1000.100.0.16.0.20070410060436''/'0':
    Caught exception during application startup from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Error occurred while starting application sap.com/ess/in/addr and wait.
    Reason: Clusterwide exception: server ID 19733050:com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to prepare application ''sap.com/essinaddr'' for startup. Reason=
    Clusterwide exception: Failed to start application ''sap.com/essinaddr'': The referenced application ''sap.com/ess~per'' can''t be started. Check the causing exception for details. Hint: Is the referenced application deployed correctly on the server?
         at com.sap.engine.services.webdynpro.WebDynproContainer.prepareStart(WebDynproContainer.java:1519)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:171)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:301)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:342)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:126)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:245)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4707)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4612)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4585)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1163)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:312)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:199)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         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(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:1

    I thinkw aht is happening some of the components which are in error, are referencing some components which are not yet deployed.
    Please try and deploy the components which are in error again.
    Regards
    Jayesh

  • Error while deploying the Web Dynpro application

    HI All,
    I have developed a Web dynpro application. Now when I am deploying the application I am getting an error.
    Description
    Jan 8, 2008 2:14:12 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [002]Deployment aborted
    Deployment exception : Cannot determine sdm host (is empty). Please configure your engine/sdm correctly !
    Can any one please help me regarding this.
    Regards
    Neha

    Hi Neha,
    It seems that there is problem with your SDM server. It seems that during J2EE engine configuration SDM server is not configured. Actually this configuration is done by Basis Team.
    By the way try out your Server setting:
    Go To:: Windows -> Preferences -> SAP J2EE Engine
    [Mention the required details over there]
    And Check whether you are getting Active SDM Server under J2EE Engine.
    Regards,
    Nittin Garg

  • Error in deploying the par from NWDS

    Hello,
    I am not able to deploy a par file from my NWDS, whereas I am able to deploy the same par from another machine which is in the same network. The error thrown in my machine in the file sap-plugin.log is given below. Kindly help to solve this issue
    [17.01.06 / 14:04] #ERROR LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.wizards.sapmakepar.SAPMPWizard$1 > No Information
    java.io.IOException: Server returned HTTP response code: 407 for URL: http://212.140.143.165:57100/irj/servlet/prt/portal/prteventname/upload/prtroot/com.sap.portal.runtime.system.console.archiveuploader?login_submit=on&j_user=administrator&j_password=admin123&j_authscheme=default&uidpasswordlogon=log on
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:800)
         at com.sap.portal.developmentTools.general.wizards.upload.DeployEngine.readResponse(DeployEngine.java:361)
         at com.sap.portal.developmentTools.general.wizards.upload.DeployEngine.uploadPar(DeployEngine.java:433)
         at com.sap.portal.developmentTools.general.wizards.upload.DeployEngine.deploy(DeployEngine.java:220)
    Regards,
    Rukmani

    Hi Rukmani,
    407 is "Proxy Authentication Required", which sounds like you are using a proxy and on the other machine, the network access to the portal works in fact different or the authentication mechanism is different.
    This is hard to elaborate remotely...
    Hope it helps
    Detlev

Maybe you are looking for

  • Is it the hard drive? and battery?   What's up with my specs? 3 threads?

    My battery had not been fully recharging for a while. For weeks, it would "max out" at a lower percentage, lowering incrementally pretty much weekly. No, I am not eligible for the recall. One fitful night, I came home to a shut down computer. When it

  • Bank Routing Numbers updates into SAP R/3

    Hi, We have been downloadin FedACH directory from the web site https://www.fededirectory.frb.org/download.cfm and uploading every month into SAP using Batch Job (T-code BAUP). However, now for two- three vendors we also need to update Bank Master (Ke

  • Numbering photos. Can it be done automatically?

    I'm working on a book with roughly a billion photos that all need to be numbered (some will have additional caption appearing over the photo) The above image shows what I want it to look like, but the task of placing text boxes over all of the images

  • Folio builder login issues

    I am having trouble logging in to Folio Builder, as are three of my colleagues. We get the following error: Sign In has failed. Network failure. Anyone else experiencing this problem? Is the network down?

  • Problems applying patch 6168363 to 11.1.0.6.0

    I'm going to be installing Oracle Beehive and one of the pre req's is the patch 6168363. I installed a vanilla Oracle 11g DB, have already successfully applied patches 6708565 and 6750049 but 6168363 fails with the following. Anyone else been able to